Skip to content

Commit 28e4265

Browse files
committed
Merge tag 'v2.25.1' into release/opensource
2 parents aca7c15 + 69eec14 commit 28e4265

File tree

105 files changed

+783
-206
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

105 files changed

+783
-206
lines changed

.github/workflows/a11y.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88

99
steps:
10-
- uses: actions/checkout@v2
10+
- uses: actions/checkout@v3
1111

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

3131
- name: Cache establish
32-
uses: actions/cache@v2
32+
uses: actions/cache@v3
3333
id: cache
3434
with:
3535
path: ./.www
@@ -52,15 +52,15 @@ jobs:
5252
A11Y_SERVER: http://localhost:9002
5353

5454
steps:
55-
- uses: actions/checkout@v2
55+
- uses: actions/checkout@v3
5656

5757
- uses: actions/setup-node@v3
5858

5959
- name: Install deps
6060
run: npm ci
6161

6262
- name: Restore cache
63-
uses: actions/cache@v2
63+
uses: actions/cache@v3
6464
id: cache
6565
with:
6666
path: ./.www

.github/workflows/remove-labels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
VRT:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2
9+
- uses: actions/checkout@v3
1010
- uses: actions-ecosystem/action-remove-labels@v1
1111
with:
1212
labels: |

.github/workflows/storybook.yml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
app_id: 244972
3030
private_key: ${{ secrets.DSE_CI_APP_KEY }}
3131

32-
- uses: actions/checkout@v2
32+
- uses: actions/checkout@v3
3333

3434
- run: printenv | sort
3535

@@ -58,7 +58,7 @@ jobs:
5858
gh api ${STATUS_URL} -f state=in_progress -H "Accept: application/vnd.github.flash-preview+json"
5959
done
6060
61-
- uses: actions/upload-artifact@v2
61+
- uses: actions/upload-artifact@v3
6262
with:
6363
path: |-
6464
workspace/gh-deployments.json
@@ -73,13 +73,13 @@ jobs:
7373
- init
7474

7575
steps:
76-
- uses: actions/checkout@v2
76+
- uses: actions/checkout@v3
7777

7878
- uses: actions/setup-node@v3
7979
with:
8080
cache: 'npm'
8181

82-
- uses: actions/download-artifact@v2
82+
- uses: actions/download-artifact@v3
8383
with:
8484
path: workspace
8585

@@ -109,7 +109,7 @@ jobs:
109109
run: tar -cvf workspace/styles.tar assets/styles/
110110
- name: Compress generated metadata
111111
run: tar -cvf workspace/metadata.tar .generated/metadata/
112-
- uses: actions/upload-artifact@v2
112+
- uses: actions/upload-artifact@v3
113113
with:
114114
path: |-
115115
workspace/design-tokens.tar
@@ -125,13 +125,13 @@ jobs:
125125
- prepare
126126

127127
steps:
128-
- uses: actions/checkout@v2
128+
- uses: actions/checkout@v3
129129

130130
- uses: actions/setup-node@v3
131131
with:
132132
cache: 'npm'
133133

134-
- uses: actions/download-artifact@v2
134+
- uses: actions/download-artifact@v3
135135
with:
136136
path: workspace
137137

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

157-
- uses: actions/upload-artifact@v2
157+
- uses: actions/upload-artifact@v3
158158
with:
159159
path: workspace/storybook.tar.gz
160160

@@ -167,7 +167,7 @@ jobs:
167167
- build-storybook
168168

169169
steps:
170-
- uses: actions/download-artifact@v2
170+
- uses: actions/download-artifact@v3
171171
with:
172172
path: workspace
173173

@@ -230,14 +230,14 @@ jobs:
230230
- prepare
231231

232232
steps:
233-
- uses: actions/checkout@v2
233+
- uses: actions/checkout@v3
234234

235235
- uses: actions/setup-node@v3
236236
with:
237237
cache: 'npm'
238238
node-version: '<=18.17.1'
239239

240-
- uses: actions/download-artifact@v2
240+
- uses: actions/download-artifact@v3
241241
with:
242242
path: workspace
243243

@@ -259,7 +259,7 @@ jobs:
259259
run: |-
260260
tar -cvf workspace/design-system-dist.tar .dist/
261261
cd .dist && zip -r dist . && mv dist.zip ../workspace/ && cd ..
262-
- uses: actions/upload-artifact@v2
262+
- uses: actions/upload-artifact@v3
263263
with:
264264
path: |-
265265
workspace/design-system-dist.tar
@@ -278,7 +278,7 @@ jobs:
278278
private_key: ${{ secrets.DSE_CI_APP_KEY }}
279279

280280
- name: Checkout design-system-site
281-
uses: actions/checkout@v2
281+
uses: actions/checkout@v3
282282
with:
283283
repository: salesforce-ux/design-system-site
284284
ref: main
@@ -287,7 +287,7 @@ jobs:
287287
- name: Display structure of downloaded files
288288
run: ls -la
289289

290-
- uses: actions/download-artifact@v2
290+
- uses: actions/download-artifact@v3
291291
with:
292292
path: workspace
293293

@@ -352,9 +352,9 @@ jobs:
352352
with:
353353
app_id: 244972
354354
private_key: ${{ secrets.DSE_CI_APP_KEY }}
355-
- uses: actions/checkout@v2
355+
- uses: actions/checkout@v3
356356

357-
- uses: actions/download-artifact@v2
357+
- uses: actions/download-artifact@v3
358358
with:
359359
path: workspace
360360

@@ -382,7 +382,7 @@ jobs:
382382
needs:
383383
- attach-artifact
384384
steps:
385-
- uses: actions/checkout@v2
385+
- uses: actions/checkout@v3
386386
- name: Trigger database update via API
387387
env:
388388
DSE_API_RELEASE_TOKEN: ${{ secrets.DSE_API_RELEASE_TOKEN }}

.github/workflows/vrt.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
echo "$GITHUB_CONTEXT"
3232
- run: printenv | sort
3333

34-
- uses: actions/checkout@v2
34+
- uses: actions/checkout@v3
3535
- uses: actions/setup-node@v3
3636
with:
3737
cache: 'npm'
@@ -42,7 +42,7 @@ jobs:
4242
runs-on: ubuntu-latest
4343

4444
steps:
45-
- uses: actions/checkout@v2
45+
- uses: actions/checkout@v3
4646
- uses: actions/setup-node@v3
4747
with:
4848
cache: 'npm'
@@ -74,7 +74,7 @@ jobs:
7474
runs-on: ubuntu-latest
7575

7676
steps:
77-
- uses: actions/checkout@v2
77+
- uses: actions/checkout@v3
7878
- uses: actions/setup-node@v3
7979
with:
8080
cache: 'npm'
@@ -107,7 +107,7 @@ jobs:
107107
runs-on: ubuntu-latest
108108

109109
steps:
110-
- uses: actions/checkout@v2
110+
- uses: actions/checkout@v3
111111
- uses: actions/setup-node@v3
112112
with:
113113
cache: 'npm'
@@ -167,7 +167,7 @@ jobs:
167167
GITHUB_CONTEXT: ${{ toJson(github) }}
168168
run: echo "$GITHUB_CONTEXT"
169169

170-
- uses: actions/checkout@v2
170+
- uses: actions/checkout@v3
171171

172172
- uses: actions/setup-node@v3
173173
with:
@@ -186,4 +186,4 @@ jobs:
186186
GH_APP_CLIENT_ID: ${{ secrets.DSE_CI_APP_ID }}
187187
GH_APP_CLIENT_SECRET: ${{ secrets.DSE_CI_CLIENT_SECRET }}
188188
# single quotes are needed around the JSON string here so that is can be parsed by the node script
189-
run: batchesData='${{ steps.applitools_batch.outputs.batches }}' node scripts/ci/pr-checks
189+
run: batchesData='${{ steps.applitools_batch.outputs.batches }}' node scripts/ci/pr-checks.mjs

RELEASENOTES.general.md

Lines changed: 48 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,51 @@
11
<!-- Release notes authoring guidelines: http://keepachangelog.com/ -->
22
<!-- On release, add general notes here. In time the legacy release notes will be add to this -->
33

4+
## 2.25.1 - September 19, 2024
5+
6+
## 2.25.0 - August 15, 2024
7+
8+
- Updated icons to `v10.10.0`
9+
- Standard Set:
10+
- Added data_governance
11+
- Added data_lake_objects
12+
- Added inbox
13+
- Added metric
14+
- Added metric_definition
15+
- Added omni_channel
16+
- Added operation_plan
17+
- Added operation_plan_execution
18+
- Added operation_plan_request
19+
- Added operation_plan_step
20+
- Added operation_plan_step_execution
21+
- Added policy
22+
- Added prep_flow
23+
- Added query_editor
24+
- Added robot
25+
- Added taxonomy
26+
- Added visualization
27+
- Added workspace
28+
29+
- Utility Set:
30+
- Added angle
31+
- Added card_details
32+
- Added circle
33+
- Added cms
34+
- Added contactless_pay
35+
- Added format
36+
- Added height
37+
- Added highlight
38+
- Added line_chart
39+
- Added output
40+
- Added replay
41+
- Added robot
42+
- Added sort_ascending
43+
- Added width
44+
- Added work_queue
45+
46+
- Doctype Set
47+
- Added shared_folder
48+
449
## 2.24.6 - August 28, 2024
550

651
## Updated
@@ -9,13 +54,15 @@
954

1055
## 2.24.5 - June 27, 2024
1156

57+
## Added
58+
- Added shadow for today's date to maintain accessibility
59+
1260
## 2.24.4 - June 13, 2024
1361

1462
## Updated
1563

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

18-
1966
## 2.24.3 - Jun 6, 2024
2067

2168
## Updated

0 commit comments

Comments
 (0)