Skip to content

Commit b3cefb9

Browse files
authored
Merge branch 'main' into codemod-6306
2 parents 695daaf + 879f619 commit b3cefb9

File tree

35 files changed

+1278
-253
lines changed

35 files changed

+1278
-253
lines changed

.all-contributorsrc

Lines changed: 637 additions & 181 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -319,6 +319,7 @@ check out our [Contributing Guide](/.github/CONTRIBUTING.md) and our
319319
<td align="center"><a href="https://github.com/mariat189"><img src="https://avatars.githubusercontent.com/u/74430463?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Mariat</b></sub></a><br /><a href="https://github.com/carbon-design-system/carbon/commits?author=mariat189" title="Code">💻</a></td>
320320
<td align="center"><a href="https://github.com/Thamjith"><img src="https://avatars.githubusercontent.com/u/24909620?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Thamjith Thaha</b></sub></a><br /><a href="https://github.com/carbon-design-system/carbon/commits?author=Thamjith" title="Code">💻</a></td>
321321
<td align="center"><a href="https://github.com/Zoe-Gathercole"><img src="https://avatars.githubusercontent.com/u/56911544?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Zoë Gathercole</b></sub></a><br /><a href="https://github.com/carbon-design-system/carbon/commits?author=Zoe-Gathercole" title="Code">💻</a></td>
322+
<td align="center"><a href="https://github.com/a88zach"><img src="https://avatars.githubusercontent.com/u/1724822?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Zach Tindall</b></sub></a><br /><a href="https://github.com/carbon-design-system/carbon/commits?author=a88zach" title="Code">💻</a></td>
322323
</tr>
323324
</table>
324325

docs/release.md

Lines changed: 56 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,9 @@ release team will need to do the following:
8989

9090
```bash
9191
git checkout main
92+
```
93+
94+
```bash
9295
git pull upstream main
9396
```
9497

@@ -105,6 +108,9 @@ chore(release): v11.2.0-rc.0
105108

106109
```bash
107110
git tag -a v11.2.0-rc.0 -m 'v11.2.0-rc.0'
111+
```
112+
113+
```bash
108114
git push upstream v11.2.0-rc.0
109115
```
110116

@@ -139,6 +145,9 @@ this stage, the release team will do the following:
139145

140146
```bash
141147
git checkout main
148+
```
149+
150+
```bash
142151
git pull upstream main
143152
```
144153

@@ -155,6 +164,9 @@ chore(release): v11.10.0
155164

156165
```bash
157166
git tag -a v11.2.0 -m 'v11.2.0'
167+
```
168+
169+
```bash
158170
git push upstream v11.2.0
159171
```
160172

@@ -264,7 +276,7 @@ cases, follow these steps below to ensure a proper patch release:
264276
- [ ] Checkout to the tag of the release you want to publish a patch for (most
265277
likely the latest release tag, to find the previous release, view the
266278
[tag list](https://github.com/carbon-design-system/carbon/tags)).
267-
`git checkout release/vX.Y.Z`
279+
`git checkout vX.Y.Z`
268280
- [ ] Create a new release branch with the intended version to be released.
269281
Should be the same release that we previously checked out to incremented
270282
by +0.0.1 to account for a new patch version.
@@ -292,7 +304,13 @@ cases, follow these steps below to ensure a proper patch release:
292304

293305
```bash
294306
git add -A
307+
```
308+
309+
```bash
295310
git commit -m 'chore(release): vX.Y.Z'
311+
```
312+
313+
```bash
296314
git push --set-upstream origin release/vX.Y.Z
297315
```
298316

@@ -310,7 +328,10 @@ cases, follow these steps below to ensure a proper patch release:
310328

311329
```bash
312330
git tag -a vX.Y.Z -m 'vX.Y.Z'
313-
git push upstream vX.Y.Z
331+
```
332+
333+
```bash
334+
git push upstream refs/tags/vX.Y.Z
314335
```
315336

316337
- [ ] Verify that your push triggered a release action
@@ -326,6 +347,7 @@ cases, follow these steps below to ensure a proper patch release:
326347
- Do NOT do this for the <kbd>carbon-components</kbd> package.
327348
- You need to use the individual generatied version number for the package
328349
here, not the released github tag version.
350+
- Ensure you log into the npm cli as `carbon-bot` to avoid auth issues
329351
330352
- [ ] for each package (replace <kbd>carbon-components-react</kbd> with the
331353
package name):
@@ -404,7 +426,13 @@ yarn lerna version patch \
404426

405427
```bash
406428
git add -A
429+
```
430+
431+
```bash
407432
git commit -m 'chore(release): vX.Y.Z'
433+
```
434+
435+
```bash
408436
git push --set-upstream origin release/vX.Y.Z
409437
```
410438

@@ -417,6 +445,9 @@ git push --set-upstream origin release/vX.Y.Z
417445

418446
```bash
419447
git checkout v10
448+
```
449+
450+
```bash
420451
git pull upstream v10
421452
```
422453

@@ -436,6 +467,9 @@ chore(release): v10.59.1
436467
437468
```bash
438469
git tag -a vX.Y.Z -m 'vX.Y.Z'
470+
```
471+
472+
```bash
439473
git push upstream vX.Y.Z
440474
```
441475

@@ -500,9 +534,21 @@ environment as long as you have push access to the repo.
500534

501535
```bash
502536
git checkout main
537+
```
538+
539+
```bash
503540
git pull upstream main
541+
```
542+
543+
```bash
504544
git checkout -b `release/vX.Y.Z`
545+
```
546+
547+
```bash
505548
yarn install
549+
```
550+
551+
```bash
506552
yarn build
507553
```
508554

@@ -514,7 +560,13 @@ yarn build
514560

515561
```bash
516562
git add .
563+
```
564+
565+
```bash
517566
git commit -m "chore(release): vX.Y.Z"
567+
```
568+
569+
```bash
518570
git push
519571
```
520572

@@ -551,6 +603,8 @@ package which does not contain a compiled stylesheet.
551603
To fix, re-apply the `latest` tag to `v10.x` instead of `v11.x`. Any
552604
non-versioned unpkg links should now resolve to `[email protected]` again.
553605

606+
- Ensure you log into the npm cli as `carbon-bot` to avoid auth issues.
607+
554608
```bash
555609
npm dist-tag add [email protected] latest
556610
```

e2e/components/Pagination/Pagination-test.avt.e2e.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ test.describe('@avt Pagination', () => {
5050
name: 'Items per page:',
5151
});
5252
const pageSelector = page.getByRole('combobox', {
53-
name: 'Page number, of 11 pages',
53+
name: 'Page of 11 pages',
5454
});
5555
const updatedPageSelector = page.getByRole('combobox', {
56-
name: 'Page number, of 3 pages',
56+
name: 'Page of 3 pages',
5757
});
5858
const nextPageButton = page.getByRole('button', { name: 'Next page' });
5959
const prevPageButton = page.getByRole('button').first();

examples/class-prefix/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"name": "class-prefix",
33
"private": true,
4-
"version": "0.68.0",
4+
"version": "0.69.0-rc.0",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
88
"build": "vite build",
99
"preview": "vite preview"
1010
},
1111
"dependencies": {
12-
"@carbon/react": "^1.71.0",
12+
"@carbon/react": "^1.72.0-rc.0",
1313
"react": "^18.2.0",
1414
"react-dom": "^18.2.0"
1515
},
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "codesandbox-styles",
33
"private": true,
4-
"version": "0.73.0",
4+
"version": "0.74.0-rc.0",
55
"type": "module",
66
"scripts": {
77
"dev": "vite"
@@ -11,6 +11,6 @@
1111
"vite": "^4.3.8"
1212
},
1313
"dependencies": {
14-
"@carbon/styles": "^1.70.0"
14+
"@carbon/styles": "^1.71.0-rc.0"
1515
}
1616
}

examples/custom-theme/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"name": "custom-theme",
33
"private": true,
4-
"version": "0.69.0",
4+
"version": "0.70.0-rc.0",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
88
"build": "vite build",
99
"preview": "vite preview"
1010
},
1111
"dependencies": {
12-
"@carbon/react": "^1.71.0",
12+
"@carbon/react": "^1.72.0-rc.0",
1313
"react": "^18.2.0",
1414
"react-dom": "^18.2.0"
1515
},

examples/id-prefix/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"name": "id-prefix",
33
"private": true,
4-
"version": "0.68.0",
4+
"version": "0.69.0-rc.0",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
88
"build": "vite build",
99
"preview": "vite preview"
1010
},
1111
"dependencies": {
12-
"@carbon/react": "^1.71.0",
12+
"@carbon/react": "^1.72.0-rc.0",
1313
"react": "^18.2.0",
1414
"react-dom": "^18.2.0"
1515
},

examples/light-dark-mode/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"name": "examples-light-dark",
33
"private": true,
4-
"version": "0.69.0",
4+
"version": "0.70.0-rc.0",
55
"scripts": {
66
"build": "next build",
77
"dev": "next dev",
88
"lint": "next lint",
99
"start": "next start"
1010
},
1111
"dependencies": {
12-
"@carbon/react": "^1.71.0",
12+
"@carbon/react": "^1.72.0-rc.0",
1313
"next": "14.1.1",
1414
"react": "18.2.0",
1515
"react-dom": "18.2.0"

examples/nextjs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"name": "examples-nextjs",
33
"private": true,
4-
"version": "0.71.0",
4+
"version": "0.72.0-rc.0",
55
"scripts": {
66
"build": "next build",
77
"dev": "next dev",
88
"lint": "next lint",
99
"start": "next start"
1010
},
1111
"dependencies": {
12-
"@carbon/react": "^1.71.0",
12+
"@carbon/react": "^1.72.0-rc.0",
1313
"next": "14.1.1",
1414
"react": "18.2.0",
1515
"react-dom": "18.2.0"

examples/v10-token-compat-in-v11/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"name": "v10-token-compat-in-v11",
33
"private": true,
4-
"version": "0.69.0",
4+
"version": "0.70.0-rc.0",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
88
"build": "vite build",
99
"preview": "vite preview"
1010
},
1111
"dependencies": {
12-
"@carbon/react": "^1.71.0",
12+
"@carbon/react": "^1.72.0-rc.0",
1313
"react": "^18.2.0",
1414
"react-dom": "^18.2.0"
1515
},

examples/vite/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"name": "vite",
33
"private": true,
4-
"version": "0.69.0",
4+
"version": "0.70.0-rc.0",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
88
"build": "vite build",
99
"preview": "vite preview"
1010
},
1111
"dependencies": {
12-
"@carbon/react": "^1.71.0",
12+
"@carbon/react": "^1.72.0-rc.0",
1313
"react": "^18.2.0",
1414
"react-dom": "^18.2.0"
1515
},

packages/carbon-components-react/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "carbon-components-react",
33
"private": true,
44
"description": "The Carbon Design System is IBM’s open-source design system for products and experiences. This package reached end of support on September 30, 2024 and will not receive any more updates.",
5-
"version": "8.71.0",
5+
"version": "8.72.0-rc.0",
66
"license": "Apache-2.0",
77
"main": "lib/index.js",
88
"module": "es/index.js",
@@ -43,8 +43,8 @@
4343
"sass": "^1.33.0"
4444
},
4545
"dependencies": {
46-
"@carbon/react": "^1.71.0",
47-
"@carbon/styles": "^1.70.0",
46+
"@carbon/react": "^1.72.0-rc.0",
47+
"@carbon/styles": "^1.71.0-rc.0",
4848
"@ibm/telemetry-js": "^1.5.0",
4949
"chalk": "1.1.3"
5050
},

packages/carbon-components/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "carbon-components",
33
"private": true,
44
"description": "The Carbon Design System is IBM’s open-source design system for products and experiences. This package reached end of support on September 30, 2024 and will not receive any more updates.",
5-
"version": "11.70.0",
5+
"version": "11.71.0-rc.0",
66
"license": "Apache-2.0",
77
"repository": {
88
"type": "git",
@@ -44,7 +44,7 @@
4444
"sass": "^1.33.0"
4545
},
4646
"dependencies": {
47-
"@carbon/styles": "^1.70.0",
47+
"@carbon/styles": "^1.71.0-rc.0",
4848
"@ibm/telemetry-js": "^1.5.0",
4949
"chalk": "1.1.3"
5050
},

packages/icons-vue/examples/vue-cli/yarn.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2924,9 +2924,9 @@ electron-to-chromium@^1.3.47, electron-to-chromium@^1.3.82:
29242924
integrity sha512-kWSDVVF9t3mft2OHVZy4K85X2beP6c6mFm3teFS/mLSDJpQwuFIWHrULCX+w6H1E55ZYmFRlT+ATAFRwhrYzsw==
29252925

29262926
elliptic@^6.0.0, elliptic@^6.5.4:
2927-
version "6.5.7"
2928-
resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.7.tgz#8ec4da2cb2939926a1b9a73619d768207e647c8b"
2929-
integrity sha512-ESVCtTwiA+XhY3wyh24QqRGBoP3rEdDUl3EDUUo9tft074fi19IrdpH7hLCMMP3CIj7jb3W96rn8lt/BqIlt5Q==
2927+
version "6.6.0"
2928+
resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.6.0.tgz#5919ec723286c1edf28685aa89261d4761afa210"
2929+
integrity sha512-dpwoQcLc/2WLQvJvLRHKZ+f9FgOdjnq11rurqwekGQygGPsYSK29OMMD2WalatiqQ+XGFDglTNixpPfI+lpaAA==
29302930
dependencies:
29312931
bn.js "^4.11.9"
29322932
brorand "^1.1.0"

0 commit comments

Comments
 (0)