Skip to content

Commit f46f566

Browse files
author
Luca Forstner
authored
meta: Update changelog for 7.40.0 (#7315)
1 parent 670b8f2 commit f46f566

File tree

108 files changed

+2783
-11076
lines changed

Some content is hidden

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

108 files changed

+2783
-11076
lines changed

.craft.yml

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -25,28 +25,30 @@ targets:
2525
- name: registry
2626
sdks:
2727
'npm:@sentry/browser':
28-
onlyIfPresent: /^sentry-browser-.*\.tgz$/
28+
onlyIfPresent: /^sentry-browser-\d.*\.tgz$/
2929
includeNames: /\.js$/
3030
checksums:
3131
- algorithm: sha384
3232
format: base64
3333
'npm:@sentry/node':
34-
onlyIfPresent: /^sentry-node-.*\.tgz$/
34+
onlyIfPresent: /^sentry-node-\d.*\.tgz$/
3535
'npm:@sentry/react':
36-
onlyIfPresent: /^sentry-react-.*\.tgz$/
36+
onlyIfPresent: /^sentry-react-\d.*\.tgz$/
3737
'npm:@sentry/vue':
38-
onlyIfPresent: /^sentry-vue-.*\.tgz$/
38+
onlyIfPresent: /^sentry-vue-\d.*\.tgz$/
3939
'npm:@sentry/gatsby':
40-
onlyIfPresent: /^sentry-gatsby-.*\.tgz$/
40+
onlyIfPresent: /^sentry-gatsby-\d.*\.tgz$/
41+
'npm:@sentry/angular-ivy':
42+
onlyIfPresent: /^sentry-angular-ivy-\d.*\.tgz$/
4143
'npm:@sentry/angular':
42-
onlyIfPresent: /^sentry-angular-.*\.tgz$/
44+
onlyIfPresent: /^sentry-angular-\d.*\.tgz$/
4345
'npm:@sentry/wasm':
44-
onlyIfPresent: /^sentry-wasm-.*\.tgz$/
46+
onlyIfPresent: /^sentry-wasm-\d.*\.tgz$/
4547
'npm:@sentry/nextjs':
46-
onlyIfPresent: /^sentry-nextjs-.*\.tgz$/
48+
onlyIfPresent: /^sentry-nextjs-\d.*\.tgz$/
4749
'npm:@sentry/remix':
48-
onlyIfPresent: /^sentry-remix-.*\.tgz$/
50+
onlyIfPresent: /^sentry-remix-\d.*\.tgz$/
4951
'npm:@sentry/svelte':
50-
onlyIfPresent: /^sentry-svelte-.*\.tgz$/
52+
onlyIfPresent: /^sentry-svelte-\d.*\.tgz$/
5153
'npm:@sentry/opentelemetry-node':
52-
onlyIfPresent: /^sentry-opentelemetry-node-.*\.tgz$/
54+
onlyIfPresent: /^sentry-opentelemetry-node-\d.*\.tgz$/
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: "Restore dependency & build cache"
2+
description: "Restore the dependency & build cache."
3+
4+
runs:
5+
using: "composite"
6+
steps:
7+
- name: Check dependency cache
8+
id: dep-cache
9+
uses: actions/cache/restore@v3
10+
with:
11+
path: ${{ env.CACHED_DEPENDENCY_PATHS }}
12+
key: ${{ env.DEPENDENCY_CACHE_KEY }}
13+
14+
- name: Check build cache
15+
uses: actions/cache/restore@v3
16+
id: build-cache
17+
with:
18+
path: ${{ env.CACHED_BUILD_PATHS }}
19+
key: ${{ env.BUILD_CACHE_KEY }}
20+
21+
- name: Check if caches are restored
22+
uses: actions/github-script@v6
23+
if: steps.dep-cache.outputs.cache-hit != 'true' || steps.build-cache.outputs.cache-hit != 'true'
24+
with:
25+
script: core.setFailed('Dependency or build cache could not be restored - please re-run ALL jobs.')

0 commit comments

Comments
 (0)