Skip to content

Commit

Permalink
meta: Update changelog for 7.40.0 (#7315)
Browse files Browse the repository at this point in the history
  • Loading branch information
lforst authored Mar 1, 2023
1 parent 670b8f2 commit f46f566
Show file tree
Hide file tree
Showing 108 changed files with 2,783 additions and 11,076 deletions.
24 changes: 13 additions & 11 deletions .craft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,28 +25,30 @@ targets:
- name: registry
sdks:
'npm:@sentry/browser':
onlyIfPresent: /^sentry-browser-.*\.tgz$/
onlyIfPresent: /^sentry-browser-\d.*\.tgz$/
includeNames: /\.js$/
checksums:
- algorithm: sha384
format: base64
'npm:@sentry/node':
onlyIfPresent: /^sentry-node-.*\.tgz$/
onlyIfPresent: /^sentry-node-\d.*\.tgz$/
'npm:@sentry/react':
onlyIfPresent: /^sentry-react-.*\.tgz$/
onlyIfPresent: /^sentry-react-\d.*\.tgz$/
'npm:@sentry/vue':
onlyIfPresent: /^sentry-vue-.*\.tgz$/
onlyIfPresent: /^sentry-vue-\d.*\.tgz$/
'npm:@sentry/gatsby':
onlyIfPresent: /^sentry-gatsby-.*\.tgz$/
onlyIfPresent: /^sentry-gatsby-\d.*\.tgz$/
'npm:@sentry/angular-ivy':
onlyIfPresent: /^sentry-angular-ivy-\d.*\.tgz$/
'npm:@sentry/angular':
onlyIfPresent: /^sentry-angular-.*\.tgz$/
onlyIfPresent: /^sentry-angular-\d.*\.tgz$/
'npm:@sentry/wasm':
onlyIfPresent: /^sentry-wasm-.*\.tgz$/
onlyIfPresent: /^sentry-wasm-\d.*\.tgz$/
'npm:@sentry/nextjs':
onlyIfPresent: /^sentry-nextjs-.*\.tgz$/
onlyIfPresent: /^sentry-nextjs-\d.*\.tgz$/
'npm:@sentry/remix':
onlyIfPresent: /^sentry-remix-.*\.tgz$/
onlyIfPresent: /^sentry-remix-\d.*\.tgz$/
'npm:@sentry/svelte':
onlyIfPresent: /^sentry-svelte-.*\.tgz$/
onlyIfPresent: /^sentry-svelte-\d.*\.tgz$/
'npm:@sentry/opentelemetry-node':
onlyIfPresent: /^sentry-opentelemetry-node-.*\.tgz$/
onlyIfPresent: /^sentry-opentelemetry-node-\d.*\.tgz$/
25 changes: 25 additions & 0 deletions .github/actions/restore-cache/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: "Restore dependency & build cache"
description: "Restore the dependency & build cache."

runs:
using: "composite"
steps:
- name: Check dependency cache
id: dep-cache
uses: actions/cache/restore@v3
with:
path: ${{ env.CACHED_DEPENDENCY_PATHS }}
key: ${{ env.DEPENDENCY_CACHE_KEY }}

- name: Check build cache
uses: actions/cache/restore@v3
id: build-cache
with:
path: ${{ env.CACHED_BUILD_PATHS }}
key: ${{ env.BUILD_CACHE_KEY }}

- name: Check if caches are restored
uses: actions/github-script@v6
if: steps.dep-cache.outputs.cache-hit != 'true' || steps.build-cache.outputs.cache-hit != 'true'
with:
script: core.setFailed('Dependency or build cache could not be restored - please re-run ALL jobs.')
Loading

0 comments on commit f46f566

Please sign in to comment.