|
4 | 4 |
|
5 | 5 | - "You miss 100 percent of the chances you don't take. — Wayne Gretzky" — Michael Scott
|
6 | 6 |
|
| 7 | +## 7.110.0 |
| 8 | + |
| 9 | +### Important Changes |
| 10 | + |
| 11 | +- **feat(tracing): Add interactions sample rate to browser tracing integrations (#11382)** |
| 12 | + |
| 13 | +You can now use a `interactionsSampleRate` to control the sample rate of INP spans. `interactionsSampleRate` is applied |
| 14 | +on top of the global `tracesSampleRate`. Therefore if `interactionsSampleRate` is `0.5` and `tracesSampleRate` is `0.1`, |
| 15 | +then the actual sample rate for interactions is `0.05`. |
| 16 | + |
| 17 | +```js |
| 18 | +Sentry.init({ |
| 19 | + tracesSampleRate: 0.1, |
| 20 | + integrations: [ |
| 21 | + Sentry.browserTracingIntegration({ |
| 22 | + interactionsSampleRate: 0.5, |
| 23 | + }), |
| 24 | + ], |
| 25 | +}); |
| 26 | +``` |
| 27 | + |
| 28 | +- **Deprecations** |
| 29 | + |
| 30 | +This release deprecates the `Hub` class, as well as the `addRequestDataToTransaction` method. The `trpcMiddleware` |
| 31 | +method is no longer on the `Handlers` export, but instead is a standalone export. |
| 32 | + |
| 33 | +Please see the detailed [Migration docs](./MIGRATION.md#deprecations-in-7x) on how to migrate to the new APIs. |
| 34 | + |
| 35 | +- feat: Deprecate and relocate `trpcMiddleware` (#11389) |
| 36 | +- feat(core): Deprecate `Hub` class (#11528) |
| 37 | +- feat(types): Deprecate `Hub` interface (#11530) |
| 38 | +- ref: Deprecate `addRequestDataToTransaction` (#11368) |
| 39 | + |
| 40 | +### Other Changes |
| 41 | + |
| 42 | +- feat(core): Update metric normalization (#11519) |
| 43 | +- feat(feedback): Customize feedback placeholder text color (#11521) |
| 44 | +- feat(remix): Skip span creation for `OPTIONS` and `HEAD` request. (#11485) |
| 45 | +- feat(utils): Add metric buckets rate limit (#11506) |
| 46 | +- fix(core): unref timer to not block node exit (#11483) |
| 47 | +- fix(metrics): Map `statsd` to `metric_bucket` (#11505) |
| 48 | +- fix(spans): Allow zero exclusive time for INP spans (#11408) |
| 49 | +- ref(feedback): Configure feedback fonts (#11520) |
| 50 | + |
7 | 51 | ## 7.109.0
|
8 | 52 |
|
9 | 53 | This release deprecates some exports from the `@sentry/replay` package. These exports have been moved to the browser SDK
|
|
0 commit comments