From a0fe7a90f0811bc65770e00c1f3d73aa8f75afec Mon Sep 17 00:00:00 2001
From: Garrett Dawson <37080130+ggdawson@users.noreply.github.com>
Date: Thu, 15 Feb 2024 09:57:42 -0700
Subject: [PATCH 01/45] docs: add tsconfig note to @carbon/react README.md
(#15679)
---
.all-contributorsrc | 3 ++-
README.md | 2 +-
packages/react/README.md | 19 +++++++++++++++++++
3 files changed, 22 insertions(+), 2 deletions(-)
diff --git a/.all-contributorsrc b/.all-contributorsrc
index 58d8d3326b1e..f4a82e66915b 100644
--- a/.all-contributorsrc
+++ b/.all-contributorsrc
@@ -1422,7 +1422,8 @@
"avatar_url": "https://avatars.githubusercontent.com/u/37080130?v=4",
"profile": "https://github.com/ggdawson",
"contributions": [
- "code"
+ "code",
+ "doc"
]
}
],
diff --git a/README.md b/README.md
index 9d35c271ad8a..a2adeec35a52 100644
--- a/README.md
+++ b/README.md
@@ -276,7 +276,7 @@ check out our [Contributing Guide](/.github/CONTRIBUTING.md) and our
J Thomas 💻 |
- Garrett Dawson 💻 |
+ Garrett Dawson 💻 📖 |
diff --git a/packages/react/README.md b/packages/react/README.md
index 09bb47c58110..231335eee797 100644
--- a/packages/react/README.md
+++ b/packages/react/README.md
@@ -51,6 +51,25 @@ to include `node_modules` in its `includePaths` option. For more information,
checkout the [configuration](../styles/docs/sass.md#configuration) section in
our Sass docs.
+### TypeScript
+
+There is an ongoing project to add `*.d.ts` files to `@carbon/react`. Though not
+all components have yet been typed, you can still use the project successfully
+in a TypeScript setting, provided you amend to your `tsconfig.json` or
+equivalent configuration file. Include the `skipLibCheck: true` compiler option:
+
+```json
+{
+ "compilerOptions": {
+ "skipLibCheck": true
+ }
+}
+```
+
+To track the progress of TypeScript adoption, check out:
+
+- [TypeScript Adoption](https://github.com/orgs/carbon-design-system/projects/53)
+
## Usage
The `@carbon/react` package provides components and icons for the Carbon Design
From 957667fa7f197b544f6cb336814daa7074daaaee Mon Sep 17 00:00:00 2001
From: "carbon-automation[bot]"
<103539138+carbon-automation[bot]@users.noreply.github.com>
Date: Thu, 15 Feb 2024 11:32:29 -0600
Subject: [PATCH 02/45] chore(release): v11.51.0 (#15765)
Co-authored-by: tay1orjones
---
examples/class-prefix/package.json | 4 +-
examples/codesandbox-styles/package.json | 4 +-
examples/custom-theme/package.json | 4 +-
examples/id-prefix/package.json | 4 +-
.../incremental-migration-vite/package.json | 4 +-
examples/light-dark-mode/package.json | 4 +-
examples/nextjs/package.json | 4 +-
examples/v10-token-compat-in-v11/package.json | 4 +-
examples/vite/package.json | 4 +-
packages/carbon-components-react/package.json | 6 +--
packages/carbon-components/package.json | 4 +-
packages/elements/package.json | 4 +-
packages/react/package.json | 6 +--
packages/styles/package.json | 4 +-
packages/themes/package.json | 2 +-
www/package.json | 4 +-
yarn.lock | 40 +++++++++----------
17 files changed, 53 insertions(+), 53 deletions(-)
diff --git a/examples/class-prefix/package.json b/examples/class-prefix/package.json
index 8b562478aab5..b20c78da3879 100644
--- a/examples/class-prefix/package.json
+++ b/examples/class-prefix/package.json
@@ -1,7 +1,7 @@
{
"name": "class-prefix",
"private": true,
- "version": "0.48.0-rc.0",
+ "version": "0.48.0",
"type": "module",
"scripts": {
"dev": "vite",
@@ -9,7 +9,7 @@
"preview": "vite preview"
},
"dependencies": {
- "@carbon/react": "^1.51.0-rc.0",
+ "@carbon/react": "^1.51.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
diff --git a/examples/codesandbox-styles/package.json b/examples/codesandbox-styles/package.json
index bb835e65d00e..a9b111e1432a 100644
--- a/examples/codesandbox-styles/package.json
+++ b/examples/codesandbox-styles/package.json
@@ -1,7 +1,7 @@
{
"name": "codesandbox-styles",
"private": true,
- "version": "0.54.0-rc.0",
+ "version": "0.54.0",
"type": "module",
"scripts": {
"dev": "vite"
@@ -11,6 +11,6 @@
"vite": "^4.3.8"
},
"dependencies": {
- "@carbon/styles": "^1.51.0-rc.0"
+ "@carbon/styles": "^1.51.0"
}
}
diff --git a/examples/custom-theme/package.json b/examples/custom-theme/package.json
index 93ed6edbf5ec..525dbbbaaf94 100644
--- a/examples/custom-theme/package.json
+++ b/examples/custom-theme/package.json
@@ -1,7 +1,7 @@
{
"name": "custom-theme",
"private": true,
- "version": "0.49.0-rc.0",
+ "version": "0.49.0",
"type": "module",
"scripts": {
"dev": "vite",
@@ -9,7 +9,7 @@
"preview": "vite preview"
},
"dependencies": {
- "@carbon/react": "^1.51.0-rc.0",
+ "@carbon/react": "^1.51.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
diff --git a/examples/id-prefix/package.json b/examples/id-prefix/package.json
index e62d2809dd94..aac4311dab03 100644
--- a/examples/id-prefix/package.json
+++ b/examples/id-prefix/package.json
@@ -1,7 +1,7 @@
{
"name": "id-prefix",
"private": true,
- "version": "0.48.0-rc.0",
+ "version": "0.48.0",
"type": "module",
"scripts": {
"dev": "vite",
@@ -9,7 +9,7 @@
"preview": "vite preview"
},
"dependencies": {
- "@carbon/react": "^1.51.0-rc.0",
+ "@carbon/react": "^1.51.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
diff --git a/examples/incremental-migration-vite/package.json b/examples/incremental-migration-vite/package.json
index 0ef06beb5324..c91cdb391c48 100644
--- a/examples/incremental-migration-vite/package.json
+++ b/examples/incremental-migration-vite/package.json
@@ -1,7 +1,7 @@
{
"name": "incremental-migration-vite",
"private": true,
- "version": "0.16.0-rc.0",
+ "version": "0.16.0",
"scripts": {
"dev": "vite",
"build": "vite build",
@@ -12,7 +12,7 @@
},
"dependencies": {
"@carbon/icons-react": "^10.49.0",
- "@carbon/react": "^1.51.0-rc.0",
+ "@carbon/react": "^1.51.0",
"carbon-components": "^10.57.0",
"carbon-components-react": "^7.57.0",
"carbon-icons": "^7.0.7",
diff --git a/examples/light-dark-mode/package.json b/examples/light-dark-mode/package.json
index 4866510f5c41..a606b4f30d5f 100644
--- a/examples/light-dark-mode/package.json
+++ b/examples/light-dark-mode/package.json
@@ -1,7 +1,7 @@
{
"name": "examples-light-dark",
"private": true,
- "version": "0.49.0-rc.0",
+ "version": "0.49.0",
"scripts": {
"build": "next build",
"dev": "next dev",
@@ -9,7 +9,7 @@
"start": "next start"
},
"dependencies": {
- "@carbon/react": "^1.51.0-rc.0",
+ "@carbon/react": "^1.51.0",
"next": "13.5.1",
"react": "18.2.0",
"react-dom": "18.2.0"
diff --git a/examples/nextjs/package.json b/examples/nextjs/package.json
index 053bf92af004..b27d7a22f4c9 100644
--- a/examples/nextjs/package.json
+++ b/examples/nextjs/package.json
@@ -1,7 +1,7 @@
{
"name": "examples-nextjs",
"private": true,
- "version": "0.51.0-rc.0",
+ "version": "0.51.0",
"scripts": {
"build": "next build",
"dev": "next dev",
@@ -9,7 +9,7 @@
"start": "next start"
},
"dependencies": {
- "@carbon/react": "^1.51.0-rc.0",
+ "@carbon/react": "^1.51.0",
"next": "13.5.6",
"react": "18.2.0",
"react-dom": "18.2.0"
diff --git a/examples/v10-token-compat-in-v11/package.json b/examples/v10-token-compat-in-v11/package.json
index 5a8583dc2df4..ea26cfdbfa88 100644
--- a/examples/v10-token-compat-in-v11/package.json
+++ b/examples/v10-token-compat-in-v11/package.json
@@ -1,7 +1,7 @@
{
"name": "v10-token-compat-in-v11",
"private": true,
- "version": "0.49.0-rc.0",
+ "version": "0.49.0",
"type": "module",
"scripts": {
"dev": "vite",
@@ -9,7 +9,7 @@
"preview": "vite preview"
},
"dependencies": {
- "@carbon/react": "^1.51.0-rc.0",
+ "@carbon/react": "^1.51.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
diff --git a/examples/vite/package.json b/examples/vite/package.json
index ca1d670ecf72..a5acd6af4978 100644
--- a/examples/vite/package.json
+++ b/examples/vite/package.json
@@ -1,7 +1,7 @@
{
"name": "vite",
"private": true,
- "version": "0.49.0-rc.0",
+ "version": "0.49.0",
"type": "module",
"scripts": {
"dev": "vite",
@@ -9,7 +9,7 @@
"preview": "vite preview"
},
"dependencies": {
- "@carbon/react": "^1.51.0-rc.0",
+ "@carbon/react": "^1.51.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
diff --git a/packages/carbon-components-react/package.json b/packages/carbon-components-react/package.json
index 642e4c9fb5ad..72e0f3e80267 100644
--- a/packages/carbon-components-react/package.json
+++ b/packages/carbon-components-react/package.json
@@ -1,7 +1,7 @@
{
"name": "carbon-components-react",
"description": "The Carbon Design System is IBM’s open-source design system for products and experiences.",
- "version": "8.51.0-rc.0",
+ "version": "8.51.0",
"license": "Apache-2.0",
"main": "lib/index.js",
"module": "es/index.js",
@@ -41,8 +41,8 @@
"sass": "^1.33.0"
},
"dependencies": {
- "@carbon/react": "^1.51.0-rc.0",
- "@carbon/styles": "^1.51.0-rc.0",
+ "@carbon/react": "^1.51.0",
+ "@carbon/styles": "^1.51.0",
"@carbon/telemetry": "0.1.0",
"chalk": "1.1.3"
},
diff --git a/packages/carbon-components/package.json b/packages/carbon-components/package.json
index c25934a07e79..9a494a7f1d6f 100644
--- a/packages/carbon-components/package.json
+++ b/packages/carbon-components/package.json
@@ -1,7 +1,7 @@
{
"name": "carbon-components",
"description": "The Carbon Design System is IBM’s open-source design system for products and experiences.",
- "version": "11.51.0-rc.0",
+ "version": "11.51.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
@@ -42,7 +42,7 @@
"sass": "^1.33.0"
},
"dependencies": {
- "@carbon/styles": "^1.51.0-rc.0",
+ "@carbon/styles": "^1.51.0",
"@carbon/telemetry": "0.1.0",
"chalk": "1.1.3"
},
diff --git a/packages/elements/package.json b/packages/elements/package.json
index ad2768073230..a7abf940c70f 100644
--- a/packages/elements/package.json
+++ b/packages/elements/package.json
@@ -1,7 +1,7 @@
{
"name": "@carbon/elements",
"description": "A collection of design elements in code for the IBM Design Language",
- "version": "11.40.0-rc.0",
+ "version": "11.40.0",
"license": "Apache-2.0",
"main": "lib/index.js",
"module": "es/index.js",
@@ -41,7 +41,7 @@
"@carbon/icons": "^11.36.0",
"@carbon/layout": "^11.20.0",
"@carbon/motion": "^11.16.0",
- "@carbon/themes": "^11.32.0-rc.0",
+ "@carbon/themes": "^11.32.0",
"@carbon/type": "^11.25.0"
},
"devDependencies": {
diff --git a/packages/react/package.json b/packages/react/package.json
index 8a68098a0672..4c2b11bcd3e6 100644
--- a/packages/react/package.json
+++ b/packages/react/package.json
@@ -1,7 +1,7 @@
{
"name": "@carbon/react",
"description": "React components for the Carbon Design System",
- "version": "1.51.0-rc.0",
+ "version": "1.51.0",
"license": "Apache-2.0",
"main": "lib/index.js",
"module": "es/index.js",
@@ -51,7 +51,7 @@
"@carbon/feature-flags": "^0.16.0",
"@carbon/icons-react": "^11.36.0",
"@carbon/layout": "^11.20.0",
- "@carbon/styles": "^1.51.0-rc.0",
+ "@carbon/styles": "^1.51.0",
"@ibm/telemetry-js": "^1.2.0",
"classnames": "2.5.1",
"copy-to-clipboard": "^3.3.1",
@@ -79,7 +79,7 @@
"@babel/preset-react": "^7.22.3",
"@babel/preset-typescript": "^7.21.5",
"@carbon/test-utils": "^10.30.0",
- "@carbon/themes": "^11.32.0-rc.0",
+ "@carbon/themes": "^11.32.0",
"@rollup/plugin-babel": "^6.0.0",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
diff --git a/packages/styles/package.json b/packages/styles/package.json
index 368613930fb5..363271de2b45 100644
--- a/packages/styles/package.json
+++ b/packages/styles/package.json
@@ -1,7 +1,7 @@
{
"name": "@carbon/styles",
"description": "Styles for the Carbon Design System",
- "version": "1.51.0-rc.0",
+ "version": "1.51.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
@@ -43,7 +43,7 @@
"@carbon/grid": "^11.21.0",
"@carbon/layout": "^11.20.0",
"@carbon/motion": "^11.16.0",
- "@carbon/themes": "^11.32.0-rc.0",
+ "@carbon/themes": "^11.32.0",
"@carbon/type": "^11.25.0",
"@ibm/plex": "6.0.0-next.6"
},
diff --git a/packages/themes/package.json b/packages/themes/package.json
index 070222b1198f..a0e84b7e45a1 100644
--- a/packages/themes/package.json
+++ b/packages/themes/package.json
@@ -1,7 +1,7 @@
{
"name": "@carbon/themes",
"description": "Themes for applying color in the Carbon Design System",
- "version": "11.32.0-rc.0",
+ "version": "11.32.0",
"license": "Apache-2.0",
"main": "lib/index.js",
"module": "es/index.js",
diff --git a/www/package.json b/www/package.json
index 6b2b0f68a7eb..58efed77986d 100644
--- a/www/package.json
+++ b/www/package.json
@@ -1,7 +1,7 @@
{
"name": "www",
"private": true,
- "version": "0.60.0-rc.0",
+ "version": "0.60.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
@@ -22,7 +22,7 @@
"start": "next start"
},
"dependencies": {
- "@carbon/react": "^1.51.0-rc.0",
+ "@carbon/react": "^1.51.0",
"@octokit/core": "^4.0.0",
"@octokit/plugin-retry": "^3.0.9",
"@octokit/plugin-throttling": "^4.0.0",
diff --git a/yarn.lock b/yarn.lock
index ede95479427a..e9caeee80196 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -1831,7 +1831,7 @@ __metadata:
"@carbon/icons": "npm:^11.36.0"
"@carbon/layout": "npm:^11.20.0"
"@carbon/motion": "npm:^11.16.0"
- "@carbon/themes": "npm:^11.32.0-rc.0"
+ "@carbon/themes": "npm:^11.32.0"
"@carbon/type": "npm:^11.25.0"
fs-extra: "npm:^11.0.0"
klaw-sync: "npm:^6.0.0"
@@ -2030,7 +2030,7 @@ __metadata:
languageName: unknown
linkType: soft
-"@carbon/react@npm:^1.51.0-rc.0, @carbon/react@workspace:packages/react":
+"@carbon/react@npm:^1.51.0, @carbon/react@workspace:packages/react":
version: 0.0.0-use.local
resolution: "@carbon/react@workspace:packages/react"
dependencies:
@@ -2046,9 +2046,9 @@ __metadata:
"@carbon/feature-flags": "npm:^0.16.0"
"@carbon/icons-react": "npm:^11.36.0"
"@carbon/layout": "npm:^11.20.0"
- "@carbon/styles": "npm:^1.51.0-rc.0"
+ "@carbon/styles": "npm:^1.51.0"
"@carbon/test-utils": "npm:^10.30.0"
- "@carbon/themes": "npm:^11.32.0-rc.0"
+ "@carbon/themes": "npm:^11.32.0"
"@ibm/telemetry-js": "npm:^1.2.0"
"@rollup/plugin-babel": "npm:^6.0.0"
"@rollup/plugin-commonjs": "npm:^25.0.0"
@@ -2126,7 +2126,7 @@ __metadata:
languageName: unknown
linkType: soft
-"@carbon/styles@npm:^1.51.0-rc.0, @carbon/styles@workspace:packages/styles":
+"@carbon/styles@npm:^1.51.0, @carbon/styles@workspace:packages/styles":
version: 0.0.0-use.local
resolution: "@carbon/styles@workspace:packages/styles"
dependencies:
@@ -2136,7 +2136,7 @@ __metadata:
"@carbon/layout": "npm:^11.20.0"
"@carbon/motion": "npm:^11.16.0"
"@carbon/test-utils": "npm:^10.30.0"
- "@carbon/themes": "npm:^11.32.0-rc.0"
+ "@carbon/themes": "npm:^11.32.0"
"@carbon/type": "npm:^11.25.0"
"@ibm/plex": "npm:6.0.0-next.6"
autoprefixer: "npm:^10.4.7"
@@ -2179,7 +2179,7 @@ __metadata:
languageName: unknown
linkType: soft
-"@carbon/themes@npm:^11.32.0-rc.0, @carbon/themes@workspace:packages/themes":
+"@carbon/themes@npm:^11.32.0, @carbon/themes@workspace:packages/themes":
version: 0.0.0-use.local
resolution: "@carbon/themes@workspace:packages/themes"
dependencies:
@@ -9850,8 +9850,8 @@ __metadata:
"@babel/plugin-transform-react-constant-elements": "npm:^7.17.12"
"@babel/preset-env": "npm:^7.18.2"
"@babel/preset-react": "npm:^7.17.12"
- "@carbon/react": "npm:^1.51.0-rc.0"
- "@carbon/styles": "npm:^1.51.0-rc.0"
+ "@carbon/react": "npm:^1.51.0"
+ "@carbon/styles": "npm:^1.51.0"
"@carbon/telemetry": "npm:0.1.0"
"@carbon/test-utils": "npm:^10.30.0"
"@rollup/plugin-babel": "npm:^6.0.0"
@@ -9890,7 +9890,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "carbon-components@workspace:packages/carbon-components"
dependencies:
- "@carbon/styles": "npm:^1.51.0-rc.0"
+ "@carbon/styles": "npm:^1.51.0"
"@carbon/telemetry": "npm:0.1.0"
"@carbon/test-utils": "npm:^10.30.0"
chalk: "npm:1.1.3"
@@ -10240,7 +10240,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "class-prefix@workspace:examples/class-prefix"
dependencies:
- "@carbon/react": "npm:^1.51.0-rc.0"
+ "@carbon/react": "npm:^1.51.0"
"@vitejs/plugin-react": "npm:4.0.0"
react: "npm:^18.2.0"
react-dom: "npm:^18.2.0"
@@ -10551,7 +10551,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "codesandbox-styles@workspace:examples/codesandbox-styles"
dependencies:
- "@carbon/styles": "npm:^1.51.0-rc.0"
+ "@carbon/styles": "npm:^1.51.0"
sass: "npm:^1.51.0"
vite: "npm:^4.3.8"
languageName: unknown
@@ -11578,7 +11578,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "custom-theme@workspace:examples/custom-theme"
dependencies:
- "@carbon/react": "npm:^1.51.0-rc.0"
+ "@carbon/react": "npm:^1.51.0"
"@vitejs/plugin-react": "npm:4.0.0"
react: "npm:^18.2.0"
react-dom: "npm:^18.2.0"
@@ -13663,7 +13663,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "examples-light-dark@workspace:examples/light-dark-mode"
dependencies:
- "@carbon/react": "npm:^1.51.0-rc.0"
+ "@carbon/react": "npm:^1.51.0"
eslint: "npm:8.40.0"
next: "npm:13.5.1"
react: "npm:18.2.0"
@@ -13676,7 +13676,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "examples-nextjs@workspace:examples/nextjs"
dependencies:
- "@carbon/react": "npm:^1.51.0-rc.0"
+ "@carbon/react": "npm:^1.51.0"
eslint: "npm:8.40.0"
eslint-config-next: "npm:13.4.7"
next: "npm:13.5.6"
@@ -15825,7 +15825,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "id-prefix@workspace:examples/id-prefix"
dependencies:
- "@carbon/react": "npm:^1.51.0-rc.0"
+ "@carbon/react": "npm:^1.51.0"
"@vitejs/plugin-react": "npm:4.0.0"
react: "npm:^18.2.0"
react-dom: "npm:^18.2.0"
@@ -15939,7 +15939,7 @@ __metadata:
resolution: "incremental-migration-vite@workspace:examples/incremental-migration-vite"
dependencies:
"@carbon/icons-react": "npm:^10.49.0"
- "@carbon/react": "npm:^1.51.0-rc.0"
+ "@carbon/react": "npm:^1.51.0"
"@vitejs/plugin-react": "npm:4.0.0"
carbon-components: "npm:^10.57.0"
carbon-components-react: "npm:^7.57.0"
@@ -27659,7 +27659,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "v10-token-compat-in-v11@workspace:examples/v10-token-compat-in-v11"
dependencies:
- "@carbon/react": "npm:^1.51.0-rc.0"
+ "@carbon/react": "npm:^1.51.0"
"@vitejs/plugin-react": "npm:4.0.0"
react: "npm:^18.2.0"
react-dom: "npm:^18.2.0"
@@ -27945,7 +27945,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "vite@workspace:examples/vite"
dependencies:
- "@carbon/react": "npm:^1.51.0-rc.0"
+ "@carbon/react": "npm:^1.51.0"
"@vitejs/plugin-react": "npm:4.0.0"
react: "npm:^18.2.0"
react-dom: "npm:^18.2.0"
@@ -28515,7 +28515,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "www@workspace:www"
dependencies:
- "@carbon/react": "npm:^1.51.0-rc.0"
+ "@carbon/react": "npm:^1.51.0"
"@octokit/core": "npm:^4.0.0"
"@octokit/plugin-retry": "npm:^3.0.9"
"@octokit/plugin-throttling": "npm:^4.0.0"
From db8fcf184e658728e0d188aa65c8dea9a5f4f94d Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Thu, 15 Feb 2024 18:13:13 +0000
Subject: [PATCH 03/45] chore(deps): bump github/codeql-action from 3.24.0 to
3.24.3 (#15764)
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.24.0 to 3.24.3.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/github/codeql-action/compare/e8893c57a1f3a2b659b6b55564fdfdbbd2982911...379614612a29c9e28f31f39a59013eb8012a51f0)
---
updated-dependencies:
- dependency-name: github/codeql-action
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Taylor Jones
---
.github/workflows/codeql-analysis.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml
index de2e3b85b0b2..f75d96a1918e 100644
--- a/.github/workflows/codeql-analysis.yml
+++ b/.github/workflows/codeql-analysis.yml
@@ -24,9 +24,9 @@ jobs:
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
- uses: github/codeql-action/init@e8893c57a1f3a2b659b6b55564fdfdbbd2982911 #v3.24.0
+ uses: github/codeql-action/init@379614612a29c9e28f31f39a59013eb8012a51f0 #v3.24.3
with:
languages: javascript
- name: Perform CodeQL Analysis
- uses: github/codeql-action/analyze@e8893c57a1f3a2b659b6b55564fdfdbbd2982911 #v3.24.0
+ uses: github/codeql-action/analyze@379614612a29c9e28f31f39a59013eb8012a51f0 #v3.24.3
From ed05d4a953bcd66765fff9a79fa0363905df4c30 Mon Sep 17 00:00:00 2001
From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com>
Date: Thu, 15 Feb 2024 18:16:50 +0000
Subject: [PATCH 04/45] chore(deps): update dependency postcss-loader to v8
(#15581)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Taylor Jones
---
...config-npm-9.0.0-47d78cf275-8bdf1dfbb6.zip | Bin 0 -> 49087 bytes
...-paths-npm-2.2.0-ac4ed99068-ba2aea3830.zip | Bin 3960 -> 0 bytes
...-paths-npm-2.2.1-7c7577428c-65b5df55a8.zip | Bin 0 -> 4944 bytes
...rects-npm-1.15.2-1ec1dd82be-8be0d39919.zip | Bin 0 -> 10821 bytes
...rects-npm-1.15.4-3384d6a415-2e8f5f259a.zip | Bin 11151 -> 0 bytes
.../klona-npm-2.0.5-5d403f2d77-27cc78ea2d.zip | Bin 12857 -> 0 bytes
...loader-npm-7.0.0-e0a0c61fcd-a1d3de713e.zip | Bin 14654 -> 0 bytes
...loader-npm-8.0.0-195ad96888-efbb59d2b7.zip | Bin 0 -> 15018 bytes
packages/react/package.json | 2 +-
yarn.lock | 60 ++++++++++--------
10 files changed, 36 insertions(+), 26 deletions(-)
create mode 100644 .yarn/cache/cosmiconfig-npm-9.0.0-47d78cf275-8bdf1dfbb6.zip
delete mode 100644 .yarn/cache/env-paths-npm-2.2.0-ac4ed99068-ba2aea3830.zip
create mode 100644 .yarn/cache/env-paths-npm-2.2.1-7c7577428c-65b5df55a8.zip
create mode 100644 .yarn/cache/follow-redirects-npm-1.15.2-1ec1dd82be-8be0d39919.zip
delete mode 100644 .yarn/cache/follow-redirects-npm-1.15.4-3384d6a415-2e8f5f259a.zip
delete mode 100644 .yarn/cache/klona-npm-2.0.5-5d403f2d77-27cc78ea2d.zip
delete mode 100644 .yarn/cache/postcss-loader-npm-7.0.0-e0a0c61fcd-a1d3de713e.zip
create mode 100644 .yarn/cache/postcss-loader-npm-8.0.0-195ad96888-efbb59d2b7.zip
diff --git a/.yarn/cache/cosmiconfig-npm-9.0.0-47d78cf275-8bdf1dfbb6.zip b/.yarn/cache/cosmiconfig-npm-9.0.0-47d78cf275-8bdf1dfbb6.zip
new file mode 100644
index 0000000000000000000000000000000000000000..42026d71dac1d80927e48adcd2f02930b31d5d3f
GIT binary patch
literal 49087
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