|
10 | 10 |
|
11 | 11 | - "You miss 100 percent of the chances you don't take. — Wayne Gretzky" — Michael Scott |
12 | 12 |
|
| 13 | +Work in this release was contributed by @Zen-cronic. Thank you for your contribution! |
| 14 | + |
| 15 | +Work in this release was contributed by @grahamhency, @Zen-cronic, @gilisho and @phuctm97. Thank you for your contributions! |
| 16 | + |
| 17 | +## 8.37.1 |
| 18 | + |
| 19 | +- feat(deps): Bump @opentelemetry/instrumentation from 0.53.0 to 0.54.0 for @sentry/opentelemetry ([#14187](https://github.com/getsentry/sentry-javascript/pull/14187)) |
| 20 | + |
| 21 | +## 8.37.0 |
| 22 | + |
| 23 | +### Important Changes |
| 24 | + |
| 25 | +- **feat(nuxt): Add `piniaIntegration` ([#14138](https://github.com/getsentry/sentry-javascript/pull/14138))** |
| 26 | + |
| 27 | +The Nuxt SDK now allows you to track Pinia state for captured errors. To enable the Pinia plugin, add the `piniaIntegration` to your client config: |
| 28 | + |
| 29 | +```ts |
| 30 | +// sentry.client.config.ts |
| 31 | +import { usePinia } from '#imports'; |
| 32 | + |
| 33 | +Sentry.init({ |
| 34 | + integrations: [ |
| 35 | + Sentry.piniaIntegration(usePinia(), { |
| 36 | + /* optional Pinia plugin options */ |
| 37 | + }), |
| 38 | + ], |
| 39 | +}); |
| 40 | +``` |
| 41 | + |
| 42 | +- **feat: Deprecate metrics API ([#14157](https://github.com/getsentry/sentry-javascript/pull/14157))** |
| 43 | + |
| 44 | +The Sentry Metrics beta has ended in favour of revisiting metrics in another form at a later date. |
| 45 | + |
| 46 | +This new approach will include different APIs, making the current metrics API unnecessary. This release |
| 47 | +deprecates the metrics API with the plan to remove in the next SDK major version. If you currently use the |
| 48 | +metrics API in your code, you can safely continue to do so but sent data will no longer be processed by Sentry. |
| 49 | + |
| 50 | +[Learn more](https://sentry.zendesk.com/hc/en-us/articles/26369339769883-Metrics-Beta-Ended-on-October-7th) about the end of the Metrics beta. |
| 51 | + |
| 52 | +### Other Changes |
| 53 | + |
| 54 | +- feat(browser): Add `http.response_delivery_type` attribute to resource spans ([#14056](https://github.com/getsentry/sentry-javascript/pull/14056)) |
| 55 | +- feat(browser): Add `skipBrowserExtensionCheck` escape hatch option ([#14147](https://github.com/getsentry/sentry-javascript/pull/14147)) |
| 56 | +- feat(deps): Bump @opentelemetry/instrumentation from 0.53.0 to 0.54.0 ([#14174](https://github.com/getsentry/sentry-javascript/pull/14174)) |
| 57 | +- feat(deps): Bump @opentelemetry/instrumentation-fastify from 0.40.0 to 0.41.0 ([#14175](https://github.com/getsentry/sentry-javascript/pull/14175)) |
| 58 | +- feat(deps): Bump @opentelemetry/instrumentation-graphql from 0.43.0 to 0.44.0 ([#14173](https://github.com/getsentry/sentry-javascript/pull/14173)) |
| 59 | +- feat(deps): Bump @opentelemetry/instrumentation-mongodb from 0.47.0 to 0.48.0 ([#14171](https://github.com/getsentry/sentry-javascript/pull/14171)) |
| 60 | +- feat(deps): Bump @opentelemetry/propagator-aws-xray from 1.25.1 to 1.26.0 ([#14172](https://github.com/getsentry/sentry-javascript/pull/14172)) |
| 61 | +- feat(nuxt): Add `asyncFunctionReExports` to define re-exported server functions ([#14104](https://github.com/getsentry/sentry-javascript/pull/14104)) |
| 62 | +- feat(nuxt): Add `piniaIntegration` ([#14138](https://github.com/getsentry/sentry-javascript/pull/14138)) |
| 63 | +- fix(browser): Avoid recording long task spans starting before their parent span ([#14183](https://github.com/getsentry/sentry-javascript/pull/14183)) |
| 64 | +- fix(core): Ensure errors thrown in async cron jobs bubble up ([#14182](https://github.com/getsentry/sentry-javascript/pull/14182)) |
| 65 | +- fix(core): Silently fail `maybeInstrument` ([#14140](https://github.com/getsentry/sentry-javascript/pull/14140)) |
| 66 | +- fix(nextjs): Resolve path for dynamic webpack import ([#13751](https://github.com/getsentry/sentry-javascript/pull/13751)) |
| 67 | +- fix(node): Make sure `modulesIntegration` does not crash esm apps ([#14169](https://github.com/getsentry/sentry-javascript/pull/14169)) |
| 68 | + |
| 69 | +Work in this release was contributed by @rexxars. Thank you for your contribution! |
| 70 | + |
| 71 | +## 8.36.0 |
| 72 | + |
| 73 | +### Important Changes |
| 74 | + |
| 75 | +- **feat(nextjs/vercel-edge/cloudflare): Switch to OTEL for performance monitoring ([#13889](https://github.com/getsentry/sentry-javascript/pull/13889))** |
| 76 | + |
| 77 | +With this release, the Sentry Next.js, and Cloudflare SDKs will now capture performance data based on OpenTelemetry. |
| 78 | +Some exceptions apply in cases where Next.js captures inaccurate data itself. |
| 79 | + |
| 80 | +NOTE: You may experience minor differences in transaction names in Sentry. |
| 81 | +Most importantly transactions for serverside pages router invocations will now be named `GET /[param]/my/route` instead of `/[param]/my/route`. |
| 82 | +This means that those transactions are now better aligned with the OpenTelemetry semantic conventions. |
| 83 | + |
| 84 | +### Other Changes |
| 85 | + |
| 86 | +- deps: Bump bundler plugins and CLI to 2.22.6 and 2.37.0 respectively ([#14050](https://github.com/getsentry/sentry-javascript/pull/14050)) |
| 87 | +- feat(deps): bump @opentelemetry/instrumentation-aws-sdk from 0.44.0 to 0.45.0 ([#14099](https://github.com/getsentry/sentry-javascript/pull/14099)) |
| 88 | +- feat(deps): bump @opentelemetry/instrumentation-connect from 0.39.0 to 0.40.0 ([#14101](https://github.com/getsentry/sentry-javascript/pull/14101)) |
| 89 | +- feat(deps): bump @opentelemetry/instrumentation-express from 0.43.0 to 0.44.0 ([#14102](https://github.com/getsentry/sentry-javascript/pull/14102)) |
| 90 | +- feat(deps): bump @opentelemetry/instrumentation-fs from 0.15.0 to 0.16.0 ([#14098](https://github.com/getsentry/sentry-javascript/pull/14098)) |
| 91 | +- feat(deps): bump @opentelemetry/instrumentation-kafkajs from 0.3.0 to 0.4.0 ([#14100](https://github.com/getsentry/sentry-javascript/pull/14100)) |
| 92 | +- feat(nextjs): Add method and url to route handler request data ([#14084](https://github.com/getsentry/sentry-javascript/pull/14084)) |
| 93 | +- feat(node): Add breadcrumbs for `child_process` and `worker_thread` ([#13896](https://github.com/getsentry/sentry-javascript/pull/13896)) |
| 94 | +- fix(core): Ensure standalone spans are not sent if SDK is disabled ([#14088](https://github.com/getsentry/sentry-javascript/pull/14088)) |
| 95 | +- fix(nextjs): Await flush in api handlers ([#14023](https://github.com/getsentry/sentry-javascript/pull/14023)) |
| 96 | +- fix(nextjs): Don't leak webpack types into exports ([#14116](https://github.com/getsentry/sentry-javascript/pull/14116)) |
| 97 | +- fix(nextjs): Fix matching logic for file convention type for root level components ([#14038](https://github.com/getsentry/sentry-javascript/pull/14038)) |
| 98 | +- fix(nextjs): Respect directives in value injection loader ([#14083](https://github.com/getsentry/sentry-javascript/pull/14083)) |
| 99 | +- fix(nuxt): Only wrap `.mjs` entry files in rollup ([#14060](https://github.com/getsentry/sentry-javascript/pull/14060)) |
| 100 | +- fix(nuxt): Re-export all exported bindings ([#14086](https://github.com/getsentry/sentry-javascript/pull/14086)) |
| 101 | +- fix(nuxt): Server-side setup in readme ([#14049](https://github.com/getsentry/sentry-javascript/pull/14049)) |
| 102 | +- fix(profiling-node): Always warn when running on incompatible major version of Node.js ([#14043](https://github.com/getsentry/sentry-javascript/pull/14043)) |
| 103 | +- fix(replay): Fix `onError` callback ([#14002](https://github.com/getsentry/sentry-javascript/pull/14002)) |
| 104 | +- perf(otel): Only calculate current timestamp once ([#14094](https://github.com/getsentry/sentry-javascript/pull/14094)) |
| 105 | +- test(browser-integration): Add sentry DSN route handler by default ([#14095](https://github.com/getsentry/sentry-javascript/pull/14095)) |
| 106 | + |
13 | 107 | ## 8.35.0 |
14 | 108 |
|
15 | 109 | ### Beta release of the official Nuxt Sentry SDK |
|
0 commit comments