Skip to content

Commit 692ac12

Browse files
committed
meta: Update CHANGELOG for 7.74.0
1 parent a8c8564 commit 692ac12

File tree

1 file changed

+60
-0
lines changed

1 file changed

+60
-0
lines changed

CHANGELOG.md

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

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

7+
## 7.74.0
8+
9+
### Important Changes
10+
11+
- **feat(astro): Add `sentryAstro` integration (#9218)**
12+
13+
This Release introduces the first alpha version of our new SDK for Astro.
14+
At this time, the SDK is considered experimental and things might break and change in future versions.
15+
16+
The core of the SDK is an Astro integration which you easily add to your Astro config:
17+
18+
```js
19+
// astro.config.js
20+
import { defineConfig } from "astro/config";
21+
import sentry from "@sentry/astro";
22+
23+
export default defineConfig({
24+
integrations: [
25+
sentry({
26+
dsn: "__DSN__",
27+
sourceMapsUploadOptions: {
28+
project: "astro",
29+
authToken: process.env.SENTRY_AUTH_TOKEN,
30+
},
31+
}),
32+
],
33+
});
34+
```
35+
36+
Check out the [README](./packages/astro/README.md) for usage instructions and what to expect from this alpha release.
37+
38+
### Other Changes
39+
40+
- feat(core): Add `addIntegration` utility (#9186)
41+
- feat(core): Add `continueTrace` method (#9164)
42+
- feat(node-experimental): Add NodeFetch integration (#9226)
43+
- feat(node-experimental): Use native OTEL Spans (#9161)
44+
- feat(node-experimental): Use new Propagator for OTEL Spans (#9214)
45+
- feat(serverlesss): Allow disabling transaction traces (#9154)
46+
- feat(tracing): Allow direct pg module to enable esbuild support (#9227)
47+
- feat(utils): Move common node ANR code to utils (#9191)
48+
- feat(vue): Expose `VueIntegration` to initialize vue app later (#9180)
49+
- fix: Don't set `referrerPolicy` on serverside fetch transports (#9200)
50+
- fix: Ensure we never mutate options passed to `init` (#9162)
51+
- fix(ember): Avoid pulling in utils at build time (#9221)
52+
- fix(ember): Drop undefined config values (#9175)
53+
- fix(node-experimental): Sample in OTEL Sampler (#9203)
54+
- fix(node): Ensure mysql integration works without callback (#9222)
55+
- fix(node): Only require `inspector` when needed (#9149)
56+
- fix(node): Remove ANR `debug` option and instead add logger.isEnabled() (#9230)
57+
- fix(node): Strip `.mjs` and `.cjs` extensions from module name (#9231)
58+
- fix(sveltekit): Flush in server wrappers before exiting (#9153)
59+
- fix(types): Update signature of `processEvent` integration hook (#9151)
60+
- fix(utils): Dereference DOM events after they have servered their purpose (#9224)
61+
- ref(integrations): Refactor pluggable integrations to use `processEvent` (#9021)
62+
- ref(serverless): Properly deprecate `rethrowAfterCapture` option (#9159)
63+
- ref(utils): Deprecate `walk` method (#9157)
64+
65+
Work in this release contributed by @aldenquimby. Thank you for your contributions!
66+
767
## 7.73.0
868

969
### Important Changes

0 commit comments

Comments
 (0)