Skip to content

meta: Update changelog for 7.40.0 #7315

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 19 commits into from
Mar 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
e4941fc
Merge pull request #7285 from getsentry/master
github-actions[bot] Feb 27, 2023
3324324
fix(ember): Disable performance in FastBoot (#7282)
mydea Feb 27, 2023
e471837
ci: Move replay metrics into dedicated package (#7115)
mydea Feb 28, 2023
67b0684
test(replay): Fix flaky xhr/fetch request tests (#7270)
Lms24 Feb 28, 2023
4ae08fe
test(replay): Fix flaky flush test (#7268)
Lms24 Feb 28, 2023
7029da4
fix(serverless): Capture custom tags in error events of GCP functions…
Lms24 Feb 28, 2023
64a1b09
fix(serverless): Capture custom tags in GCP Background and CloudEvent…
Lms24 Feb 28, 2023
dbd7a81
build(deps): Bump minimist from 0.2.1 to 0.2.4 (#7296)
dependabot[bot] Feb 28, 2023
70abc37
ci: Add new metrics overhead app (#7300)
mydea Mar 1, 2023
61405d4
chore(angular-ivy): Add release registry config for `@sentry/angular-…
Lms24 Mar 1, 2023
3ba8e0b
test(browser): Temporarily skip offline transport tests (#7305)
Lms24 Mar 1, 2023
a6b65c4
ci: Better error handling when caches can't be restored (#7306)
mydea Mar 1, 2023
73a1bbb
ci: Avoid `continue-on-error` for nextjs tests (#7308)
mydea Mar 1, 2023
ca1352d
test(core): Skip flaky offline transport test (#7312)
Lms24 Mar 1, 2023
8a5e0c3
test: Fix flaky errorsInSession test (#7309)
mydea Mar 1, 2023
b887fb7
ci: Fix overhead measurements runs on default branch (#7313)
mydea Mar 1, 2023
72cb01f
feat(nextjs): Automatically resolve source of errors in dev mode (#7294)
Mar 1, 2023
eedd811
feat(vue): Log errors to the console by default (#7310)
Lms24 Mar 1, 2023
674b8ff
meta: Update changelog for 7.40.0
Mar 1, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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