|
4 | 4 |
|
5 | 5 | - "You miss 100 percent of the chances you don't take. — Wayne Gretzky" — Michael Scott
|
6 | 6 |
|
| 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, #9214) |
| 44 | +- feat(node-experimental): Sample in OTEL Sampler (#9203) |
| 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): Ensure mysql integration works without callback (#9222) |
| 54 | +- fix(node): Only require `inspector` when needed (#9149) |
| 55 | +- fix(node): Remove ANR `debug` option and instead add logger.isEnabled() (#9230) |
| 56 | +- fix(node): Strip `.mjs` and `.cjs` extensions from module name (#9231) |
| 57 | +- fix(replay): bump rrweb to 2.0.1 (#9240) |
| 58 | +- fix(replay): Fix potential broken CSS in styled-components (#9234) |
| 59 | +- fix(sveltekit): Flush in server wrappers before exiting (#9153) |
| 60 | +- fix(types): Update signature of `processEvent` integration hook (#9151) |
| 61 | +- fix(utils): Dereference DOM events after they have servered their purpose (#9224) |
| 62 | +- ref(integrations): Refactor pluggable integrations to use `processEvent` (#9021) |
| 63 | +- ref(serverless): Properly deprecate `rethrowAfterCapture` option (#9159) |
| 64 | +- ref(utils): Deprecate `walk` method (#9157) |
| 65 | + |
| 66 | +Work in this release contributed by @aldenquimby. Thank you for your contributions! |
| 67 | + |
7 | 68 | ## 7.73.0
|
8 | 69 |
|
9 | 70 | ### Important Changes
|
|
0 commit comments