Skip to content

Commit

Permalink
Merge tag 'v2.25.1' into release/opensource
Browse files Browse the repository at this point in the history
  • Loading branch information
Dottenpixel committed Nov 12, 2024
2 parents aca7c15 + 69eec14 commit 28e4265
Show file tree
Hide file tree
Showing 105 changed files with 783 additions and 206 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/a11y.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- uses: actions/setup-node@v3
# I wanted to use an action, but the action recommends not using itself because
Expand All @@ -29,7 +29,7 @@ jobs:
run: npm run storybook:build

- name: Cache establish
uses: actions/cache@v2
uses: actions/cache@v3
id: cache
with:
path: ./.www
Expand All @@ -52,15 +52,15 @@ jobs:
A11Y_SERVER: http://localhost:9002

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- uses: actions/setup-node@v3

- name: Install deps
run: npm ci

- name: Restore cache
uses: actions/cache@v2
uses: actions/cache@v3
id: cache
with:
path: ./.www
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/remove-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
VRT:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions-ecosystem/action-remove-labels@v1
with:
labels: |
Expand Down
34 changes: 17 additions & 17 deletions .github/workflows/storybook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
app_id: 244972
private_key: ${{ secrets.DSE_CI_APP_KEY }}

- uses: actions/checkout@v2
- uses: actions/checkout@v3

- run: printenv | sort

Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
gh api ${STATUS_URL} -f state=in_progress -H "Accept: application/vnd.github.flash-preview+json"
done
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
path: |-
workspace/gh-deployments.json
Expand All @@ -73,13 +73,13 @@ jobs:
- init

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- uses: actions/setup-node@v3
with:
cache: 'npm'

- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v3
with:
path: workspace

Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
run: tar -cvf workspace/styles.tar assets/styles/
- name: Compress generated metadata
run: tar -cvf workspace/metadata.tar .generated/metadata/
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
path: |-
workspace/design-tokens.tar
Expand All @@ -125,13 +125,13 @@ jobs:
- prepare

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- uses: actions/setup-node@v3
with:
cache: 'npm'

- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v3
with:
path: workspace

Expand All @@ -154,7 +154,7 @@ jobs:
- name: Archive static Storybook
run: tar -czvf workspace/storybook.tar.gz .www/ Procfile config/nginx.conf.erb heroku-start.sh app.json

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
path: workspace/storybook.tar.gz

Expand All @@ -167,7 +167,7 @@ jobs:
- build-storybook

steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v3
with:
path: workspace

Expand Down Expand Up @@ -230,14 +230,14 @@ jobs:
- prepare

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- uses: actions/setup-node@v3
with:
cache: 'npm'
node-version: '<=18.17.1'

- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v3
with:
path: workspace

Expand All @@ -259,7 +259,7 @@ jobs:
run: |-
tar -cvf workspace/design-system-dist.tar .dist/
cd .dist && zip -r dist . && mv dist.zip ../workspace/ && cd ..
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
path: |-
workspace/design-system-dist.tar
Expand All @@ -278,7 +278,7 @@ jobs:
private_key: ${{ secrets.DSE_CI_APP_KEY }}

- name: Checkout design-system-site
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: salesforce-ux/design-system-site
ref: main
Expand All @@ -287,7 +287,7 @@ jobs:
- name: Display structure of downloaded files
run: ls -la

- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v3
with:
path: workspace

Expand Down Expand Up @@ -352,9 +352,9 @@ jobs:
with:
app_id: 244972
private_key: ${{ secrets.DSE_CI_APP_KEY }}
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v3
with:
path: workspace

Expand Down Expand Up @@ -382,7 +382,7 @@ jobs:
needs:
- attach-artifact
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Trigger database update via API
env:
DSE_API_RELEASE_TOKEN: ${{ secrets.DSE_API_RELEASE_TOKEN }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/vrt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
echo "$GITHUB_CONTEXT"
- run: printenv | sort

- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: 'npm'
Expand All @@ -42,7 +42,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: 'npm'
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: 'npm'
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: 'npm'
Expand Down Expand Up @@ -167,7 +167,7 @@ jobs:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"

- uses: actions/checkout@v2
- uses: actions/checkout@v3

- uses: actions/setup-node@v3
with:
Expand All @@ -186,4 +186,4 @@ jobs:
GH_APP_CLIENT_ID: ${{ secrets.DSE_CI_APP_ID }}
GH_APP_CLIENT_SECRET: ${{ secrets.DSE_CI_CLIENT_SECRET }}
# single quotes are needed around the JSON string here so that is can be parsed by the node script
run: batchesData='${{ steps.applitools_batch.outputs.batches }}' node scripts/ci/pr-checks
run: batchesData='${{ steps.applitools_batch.outputs.batches }}' node scripts/ci/pr-checks.mjs
49 changes: 48 additions & 1 deletion RELEASENOTES.general.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,51 @@
<!-- Release notes authoring guidelines: http://keepachangelog.com/ -->
<!-- On release, add general notes here. In time the legacy release notes will be add to this -->

## 2.25.1 - September 19, 2024

## 2.25.0 - August 15, 2024

- Updated icons to `v10.10.0`
- Standard Set:
- Added data_governance
- Added data_lake_objects
- Added inbox
- Added metric
- Added metric_definition
- Added omni_channel
- Added operation_plan
- Added operation_plan_execution
- Added operation_plan_request
- Added operation_plan_step
- Added operation_plan_step_execution
- Added policy
- Added prep_flow
- Added query_editor
- Added robot
- Added taxonomy
- Added visualization
- Added workspace

- Utility Set:
- Added angle
- Added card_details
- Added circle
- Added cms
- Added contactless_pay
- Added format
- Added height
- Added highlight
- Added line_chart
- Added output
- Added replay
- Added robot
- Added sort_ascending
- Added width
- Added work_queue

- Doctype Set
- Added shared_folder

## 2.24.6 - August 28, 2024

## Updated
Expand All @@ -9,13 +54,15 @@

## 2.24.5 - June 27, 2024

## Added
- Added shadow for today's date to maintain accessibility

## 2.24.4 - June 13, 2024

## Updated

- Updated focus ring color for links to blue-40.


## 2.24.3 - Jun 6, 2024

## Updated
Expand Down
Loading

0 comments on commit 28e4265

Please sign in to comment.