Skip to content

Commit 5fa1515

Browse files
authored
Merge pull request #9272 from getsentry/prepare-release/7.74.1
meta: Update CHANGELOG for 7.74.1
2 parents 05cba8f + 16e1af1 commit 5fa1515

File tree

64 files changed

+1386
-313
lines changed

Some content is hidden

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

64 files changed

+1386
-313
lines changed

.craft.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,8 @@ targets:
167167
onlyIfPresent: /^sentry-angular-ivy-\d.*\.tgz$/
168168
'npm:@sentry/angular':
169169
onlyIfPresent: /^sentry-angular-\d.*\.tgz$/
170+
'npm:@sentry/astro':
171+
onlyIfPresent: /^sentry-astro-\d.*\.tgz$/
170172
'npm:@sentry/wasm':
171173
onlyIfPresent: /^sentry-wasm-\d.*\.tgz$/
172174
'npm:@sentry/nextjs':

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ body:
3030
If you're using the CDN bundles, please specify the exact bundle (e.g. `bundle.tracing.min.js`) in your SDK
3131
setup.
3232
options:
33+
- '@sentry/astro'
3334
- '@sentry/browser'
3435
- '@sentry/angular'
3536
- '@sentry/angular-ivy'

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -848,6 +848,7 @@ jobs:
848848
'create-next-app',
849849
'create-remix-app',
850850
'create-remix-app-v2',
851+
'debug-id-sourcemaps',
851852
'nextjs-app-dir',
852853
'react-create-hash-router',
853854
'react-router-6-use-routes',

.github/workflows/issue-package-label.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ jobs:
2929
# Note: Since this is handled as a regex, and JSON parse wrangles slashes /, we just use `.` instead
3030
map: |
3131
{
32+
"@sentry.astro": {
33+
"label": "Package: Astro"
34+
},
3235
"@sentry.browser": {
3336
"label": "Package: Browser"
3437
},

.size-limit.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ module.exports = [
2727
name: '@sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (gzipped)',
2828
path: 'packages/browser/build/bundles/bundle.tracing.replay.min.js',
2929
gzip: true,
30-
limit: '80 KB',
30+
limit: '90 KB',
3131
},
3232
{
3333
name: '@sentry/browser (incl. Tracing) - ES6 CDN Bundle (gzipped)',

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,19 @@
44

55
- "You miss 100 percent of the chances you don't take. — Wayne Gretzky" — Michael Scott
66

7+
## 7.74.1
8+
9+
- chore(astro): Add `astro-integration` keyword (#9265)
10+
- fix(core): Narrow filters for health check transactions (#9257)
11+
- fix(nextjs): Fix HMR by inserting new entrypoints at the end (#9267)
12+
- fix(nextjs): Fix resolution of request async storage module (#9259)
13+
- fix(node-experimental): Guard against missing `fetch` (#9275)
14+
- fix(remix): Update `defer` injection logic. (#9242)
15+
- fix(tracing-internal): Parameterize express middleware parameters (#8668)
16+
- fix(utils): Move Node specific ANR impl. out of utils (#9258)
17+
18+
Work in this release contributed by @LubomirIgonda1. Thank you for your contribution!
19+
720
## 7.74.0
821

922
### Important Changes

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,13 @@ For each major JavaScript platform, there is a specific high-level SDK that prov
3939
package. Please refer to the README and instructions of those SDKs for more detailed information:
4040

4141
- [`@sentry/browser`](https://github.com/getsentry/sentry-javascript/tree/master/packages/browser): SDK for Browsers
42+
- [`@sentry/bun`](https://github.com/getsentry/sentry-javascript/tree/master/packages/bun): SDK for Bun
4243
- [`@sentry/node`](https://github.com/getsentry/sentry-javascript/tree/master/packages/node): SDK for Node including
4344
integrations for Express
4445
- [`@sentry/angular`](https://github.com/getsentry/sentry-javascript/tree/master/packages/angular): Browser SDK for Angular
4546
- [`@sentry/angular-ivy`](https://github.com/getsentry/sentry-javascript/tree/master/packages/angular-ivy): Browser SDK for
4647
Angular with native support for Angular's Ivy rendering engine.
48+
- [`@sentry/astro`](https://github.com/getsentry/sentry-javascript/tree/master/packages/astro): SDK for Astro
4749
- [`@sentry/ember`](https://github.com/getsentry/sentry-javascript/tree/master/packages/ember): Browser SDK for Ember
4850
- [`@sentry/react`](https://github.com/getsentry/sentry-javascript/tree/master/packages/react): Browser SDK for React
4951
- [`@sentry/svelte`](https://github.com/getsentry/sentry-javascript/tree/master/packages/svelte): Browser SDK for Svelte

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
"packages/ember",
5151
"packages/eslint-config-sdk",
5252
"packages/eslint-plugin-sdk",
53+
"packages/feedback",
5354
"packages/gatsby",
5455
"packages/hub",
5556
"packages/integrations",
@@ -82,7 +83,7 @@
8283
"@rollup/plugin-replace": "^3.0.1",
8384
"@rollup/plugin-sucrase": "^4.0.3",
8485
"@rollup/plugin-typescript": "^8.3.1",
85-
"@size-limit/preset-small-lib": "^4.5.5",
86+
"@size-limit/preset-small-lib": "~9.0.0",
8687
"@strictsoftware/typedoc-plugin-monorepo": "^0.3.1",
8788
"@types/chai": "^4.1.3",
8889
"@types/jest": "^27.4.1",
@@ -118,7 +119,7 @@
118119
"rollup-plugin-license": "^2.6.1",
119120
"rollup-plugin-terser": "^7.0.2",
120121
"sinon": "^7.3.2",
121-
"size-limit": "^4.5.5",
122+
"size-limit": "~9.0.0",
122123
"ts-jest": "^27.1.4",
123124
"ts-node": "10.9.1",
124125
"tslib": "2.4.1",

packages/astro/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"keywords": [
88
"withastro",
99
"astro-component",
10+
"astro-integration",
1011
"sentry",
1112
"apm"
1213
],

packages/core/src/integrations/inboundfilters.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ import { getEventDescription, logger, stringMatchesSomePattern } from '@sentry/u
66
const DEFAULT_IGNORE_ERRORS = [/^Script error\.?$/, /^Javascript error: Script error\.? on line 0$/];
77

88
const DEFAULT_IGNORE_TRANSACTIONS = [
9-
/^.*healthcheck.*$/,
10-
/^.*healthy.*$/,
11-
/^.*live.*$/,
12-
/^.*ready.*$/,
13-
/^.*heartbeat.*$/,
9+
/^.*\/healthcheck$/,
10+
/^.*\/healthy$/,
11+
/^.*\/live$/,
12+
/^.*\/ready$/,
13+
/^.*\/heartbeat$/,
1414
/^.*\/health$/,
1515
/^.*\/healthz$/,
1616
];

0 commit comments

Comments
 (0)