Skip to content

Commit 6c8100c

Browse files
committed
Merge remote-tracking branch 'upstream/develop' into develop
2 parents 72d351f + 18dd96d commit 6c8100c

File tree

351 files changed

+4333
-4509
lines changed

Some content is hidden

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

351 files changed

+4333
-4509
lines changed

.config/cypress-devcontainer.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,11 @@ id: 'aidx'
165165
# dsn: 'https://examplePublicKey@o0.ingest.sentry.io/0'
166166

167167
#sentryForFrontend:
168+
# vueIntegration:
169+
# tracingOptions:
170+
# trackComponents: true
171+
# browserTracingIntegration:
172+
# replayIntegration:
168173
# options:
169174
# dsn: 'https://examplePublicKey@o0.ingest.sentry.io/0'
170175

.config/docker_example.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,11 @@ id: 'aidx'
177177
# dsn: 'https://examplePublicKey@o0.ingest.sentry.io/0'
178178

179179
#sentryForFrontend:
180+
# vueIntegration:
181+
# tracingOptions:
182+
# trackComponents: true
183+
# browserTracingIntegration:
184+
# replayIntegration:
180185
# options:
181186
# dsn: 'https://examplePublicKey@o0.ingest.sentry.io/0'
182187

.config/example.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -275,6 +275,11 @@ id: 'aidx'
275275
# dsn: 'https://examplePublicKey@o0.ingest.sentry.io/0'
276276

277277
#sentryForFrontend:
278+
# vueIntegration:
279+
# tracingOptions:
280+
# trackComponents: true
281+
# browserTracingIntegration:
282+
# replayIntegration:
278283
# options:
279284
# dsn: 'https://examplePublicKey@o0.ingest.sentry.io/0'
280285

.devcontainer/devcontainer.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,11 @@ id: 'aidx'
167167
# dsn: 'https://examplePublicKey@o0.ingest.sentry.io/0'
168168

169169
#sentryForFrontend:
170+
# vueIntegration:
171+
# tracingOptions:
172+
# trackComponents: true
173+
# browserTracingIntegration:
174+
# replayIntegration:
170175
# options:
171176
# dsn: 'https://examplePublicKey@o0.ingest.sentry.io/0'
172177

.github/workflows/api-cherrypick-js.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
uses: pnpm/action-setup@v4.1.0
2323

2424
- name: Setup Node.js
25-
uses: actions/setup-node@v4.2.0
25+
uses: actions/setup-node@v4.3.0
2626
with:
2727
node-version-file: '.node-version'
2828
cache: 'pnpm'

.github/workflows/changelog-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Checkout head
1515
uses: actions/checkout@v4.2.2
1616
- name: Setup Node.js
17-
uses: actions/setup-node@v4.2.0
17+
uses: actions/setup-node@v4.3.0
1818
with:
1919
node-version-file: '.node-version'
2020

.github/workflows/check-cherrypick-js-autogen.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
- name: setup node
3131
id: setup-node
32-
uses: actions/setup-node@v4.2.0
32+
uses: actions/setup-node@v4.3.0
3333
with:
3434
node-version-file: '.node-version'
3535
cache: pnpm

.github/workflows/get-api-diff.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Setup pnpm
3434
uses: pnpm/action-setup@v4.1.0
3535
- name: Use Node.js ${{ matrix.node-version }}
36-
uses: actions/setup-node@v4.2.0
36+
uses: actions/setup-node@v4.3.0
3737
with:
3838
node-version: ${{ matrix.node-version }}
3939
cache: 'pnpm'

.github/workflows/lint.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
submodules: true
3737
- name: Setup pnpm
3838
uses: pnpm/action-setup@v4.1.0
39-
- uses: actions/setup-node@v4.2.0
39+
- uses: actions/setup-node@v4.3.0
4040
with:
4141
node-version-file: '.node-version'
4242
cache: 'pnpm'
@@ -66,13 +66,13 @@ jobs:
6666
submodules: true
6767
- name: Setup pnpm
6868
uses: pnpm/action-setup@v4.1.0
69-
- uses: actions/setup-node@v4.2.0
69+
- uses: actions/setup-node@v4.3.0
7070
with:
7171
node-version-file: '.node-version'
7272
cache: 'pnpm'
7373
- run: pnpm i --frozen-lockfile
7474
- name: Restore eslint cache
75-
uses: actions/cache@v4.2.2
75+
uses: actions/cache@v4.2.3
7676
with:
7777
path: ${{ env.eslint-cache-path }}
7878
key: eslint-${{ env.eslint-cache-version }}-${{ matrix.workspace }}-${{ hashFiles('**/pnpm-lock.yaml') }}-${{ github.ref_name }}-${{ github.sha }}
@@ -96,7 +96,7 @@ jobs:
9696
submodules: true
9797
- name: Setup pnpm
9898
uses: pnpm/action-setup@v4.1.0
99-
- uses: actions/setup-node@v4.2.0
99+
- uses: actions/setup-node@v4.3.0
100100
with:
101101
node-version-file: '.node-version'
102102
cache: 'pnpm'

.github/workflows/locale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
submodules: true
2121
- name: Setup pnpm
2222
uses: pnpm/action-setup@v4.1.0
23-
- uses: actions/setup-node@v4.2.0
23+
- uses: actions/setup-node@v4.3.0
2424
with:
2525
node-version-file: '.node-version'
2626
cache: 'pnpm'

0 commit comments

Comments
 (0)