Skip to content

Commit

Permalink
Merge branch 'main' into 18176-datapower
Browse files Browse the repository at this point in the history
  • Loading branch information
adamalston committed Dec 4, 2024
2 parents 07f1bf2 + 4e89908 commit 311ed89
Show file tree
Hide file tree
Showing 138 changed files with 1,774 additions and 1,077 deletions.
818 changes: 637 additions & 181 deletions .all-contributorsrc

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ jobs:

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@ea9e4e37992a54ee68a9622e985e60c8e8f12d9f # v3.27.4
uses: github/codeql-action/init@f09c1c0a94de965c15400f5634aa42fac8fb8f88 # v3.27.5
with:
languages: javascript

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@ea9e4e37992a54ee68a9622e985e60c8e8f12d9f # v3.27.4
uses: github/codeql-action/analyze@f09c1c0a94de965c15400f5634aa42fac8fb8f88 # v3.27.5
12 changes: 6 additions & 6 deletions .github/workflows/issue-triage-strategic-adopter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,18 @@ jobs:
id: regex-match
with:
text: ${{ github.event.issue.body }}
regex:
'\b(API Connect|Turbonomic|Instana|NS1|watsonx Orchestrate|watsonx
regex: |
\b(API Connect|Turbonomic|Instana|NS1|watsonx Orchestrate|watsonx
Code Assistant|Planning Analytics|SPSS
Statistics|watsonx.data|watsonx.ai|watsonx.governance|Maximo
Statistics|watsonx\.data|watsonx\.ai|watsonx\.governance|Maximo
Application Suite|Environmental Intelligence Suite|Envizi ESG
Suite|QRadar Log Insights|QRadar XDR/EDR (ReaQta)|Randori ASM|QRadar
Suite|QRadar Log Insights|QRadar XDR/EDR \(ReaQta\)|Randori ASM|QRadar
SIEM|MaaS360|Flash|Defender|Fusion|APP Connect|Apptio
Cloudability|Apptio Targetprocess|AIOps Insights|Hybrid Cloud
Mesh|Aspera|Blueworks Live|OpenPages|Databand.ai|Cognos
Mesh|Aspera|Blueworks Live|OpenPages|Databand\.ai|Cognos
Analytics|Sterling B2B Integration SaaS|Sterling Order & Inventory
Management|Supply Chain Intelligence Suite|TRIRIGA Application
Suite|QRadar SOAR|Guardium Insights|Verify on Cloud|DataPower\b'
Suite|QRadar SOAR|Guardium Insights|Verify on Cloud|DataPower)\b
flags: g
- uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea #v7.0.1
if: ${{ steps.regex-match.outputs.match != '' }}
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed .yarn/cache/defu-npm-6.1.2-65c0503295-5704aa6ea0.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed .yarn/cache/mri-npm-1.2.0-8ecee0357d-6775a1d222.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed .yarn/cache/temp-npm-0.8.4-d7c7d71d12-0a7f76b496.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
30 changes: 30 additions & 0 deletions NotificationCallout.figma.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import React from 'react';
import { NotificationCallout } from './NotificationCallout';
import figma from '@figma/code-connect';

/**
* -- This file was auto-generated by Code Connect --
* `props` includes a mapping from Figma properties and variants to
* suggested values. You should update this to match the props of your
* code component, and update the `example` function to return the
* code example you'd like to see in Figma
*/

figma.connect(
NotificationCallout,
'https://www.figma.com/design/YAnB1jKx0yCUL29j6uSLpg/(v11)-Carbon-Design-System?node-id=84336-36580&t=nJ89fkK549fgCUuf-4',
{
props: {
title: figma.boolean('Title'),
messageText: figma.string('Message text'),
titleText: figma.string('Title text'),
status: figma.enum('Status', {
Info: 'info',
Warning: 'warning',
}),
highContrast: figma.boolean('High contrast'),
longMessage: figma.boolean('Long message'),
},
example: (props) => <NotificationCallout />,
}
);
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,7 @@ check out our [Contributing Guide](/.github/CONTRIBUTING.md) and our
<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>
<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>
<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>
<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>
</tr>
</table>

Expand Down
58 changes: 56 additions & 2 deletions docs/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,9 @@ release team will need to do the following:

```bash
git checkout main
```

```bash
git pull upstream main
```

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

```bash
git tag -a v11.2.0-rc.0 -m 'v11.2.0-rc.0'
```

```bash
git push upstream v11.2.0-rc.0
```

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

```bash
git checkout main
```

```bash
git pull upstream main
```

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

```bash
git tag -a v11.2.0 -m 'v11.2.0'
```

```bash
git push upstream v11.2.0
```

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

```bash
git add -A
```

```bash
git commit -m 'chore(release): vX.Y.Z'
```

```bash
git push --set-upstream origin release/vX.Y.Z
```

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

```bash
git tag -a vX.Y.Z -m 'vX.Y.Z'
git push upstream vX.Y.Z
```

```bash
git push upstream refs/tags/vX.Y.Z
```

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

```bash
git add -A
```

```bash
git commit -m 'chore(release): vX.Y.Z'
```

```bash
git push --set-upstream origin release/vX.Y.Z
```

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

```bash
git checkout v10
```

```bash
git pull upstream v10
```

Expand All @@ -436,6 +467,9 @@ chore(release): v10.59.1
```bash
git tag -a vX.Y.Z -m 'vX.Y.Z'
```

```bash
git push upstream vX.Y.Z
```

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

```bash
git checkout main
```

```bash
git pull upstream main
```

```bash
git checkout -b `release/vX.Y.Z`
```

```bash
yarn install
```

```bash
yarn build
```

Expand All @@ -514,7 +560,13 @@ yarn build

```bash
git add .
```

```bash
git commit -m "chore(release): vX.Y.Z"
```

```bash
git push
```

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

- Ensure you log into the npm cli as `carbon-bot` to avoid auth issues.

```bash
npm dist-tag add [email protected] latest
```
Expand Down
4 changes: 2 additions & 2 deletions e2e/components/Pagination/Pagination-test.avt.e2e.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ test.describe('@avt Pagination', () => {
name: 'Items per page:',
});
const pageSelector = page.getByRole('combobox', {
name: 'Page number, of 11 pages',
name: 'Page of 11 pages',
});
const updatedPageSelector = page.getByRole('combobox', {
name: 'Page number, of 3 pages',
name: 'Page of 3 pages',
});
const nextPageButton = page.getByRole('button', { name: 'Next page' });
const prevPageButton = page.getByRole('button').first();
Expand Down
4 changes: 2 additions & 2 deletions examples/class-prefix/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "class-prefix",
"private": true,
"version": "0.68.0",
"version": "0.69.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"@carbon/react": "^1.71.0",
"@carbon/react": "^1.72.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
Expand Down
4 changes: 2 additions & 2 deletions examples/codesandbox-styles/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "codesandbox-styles",
"private": true,
"version": "0.73.0",
"version": "0.74.0",
"type": "module",
"scripts": {
"dev": "vite"
Expand All @@ -11,6 +11,6 @@
"vite": "^4.3.8"
},
"dependencies": {
"@carbon/styles": "^1.70.0"
"@carbon/styles": "^1.71.0"
}
}
4 changes: 2 additions & 2 deletions examples/custom-theme/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "custom-theme",
"private": true,
"version": "0.69.0",
"version": "0.70.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"@carbon/react": "^1.71.0",
"@carbon/react": "^1.72.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
Expand Down
4 changes: 2 additions & 2 deletions examples/id-prefix/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "id-prefix",
"private": true,
"version": "0.68.0",
"version": "0.69.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"@carbon/react": "^1.71.0",
"@carbon/react": "^1.72.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
Expand Down
4 changes: 2 additions & 2 deletions examples/light-dark-mode/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "examples-light-dark",
"private": true,
"version": "0.69.0",
"version": "0.70.0",
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "next lint",
"start": "next start"
},
"dependencies": {
"@carbon/react": "^1.71.0",
"@carbon/react": "^1.72.0",
"next": "14.1.1",
"react": "18.2.0",
"react-dom": "18.2.0"
Expand Down
4 changes: 2 additions & 2 deletions examples/nextjs/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "examples-nextjs",
"private": true,
"version": "0.71.0",
"version": "0.72.0",
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "next lint",
"start": "next start"
},
"dependencies": {
"@carbon/react": "^1.71.0",
"@carbon/react": "^1.72.0",
"next": "14.1.1",
"react": "18.2.0",
"react-dom": "18.2.0"
Expand Down
4 changes: 2 additions & 2 deletions examples/v10-token-compat-in-v11/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "v10-token-compat-in-v11",
"private": true,
"version": "0.69.0",
"version": "0.70.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"@carbon/react": "^1.71.0",
"@carbon/react": "^1.72.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
Expand Down
4 changes: 2 additions & 2 deletions examples/vite/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "vite",
"private": true,
"version": "0.69.0",
"version": "0.70.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"@carbon/react": "^1.71.0",
"@carbon/react": "^1.72.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
Expand Down
Loading

0 comments on commit 311ed89

Please sign in to comment.