|
4 | 4 |
|
5 | 5 | - "You miss 100 percent of the chances you don't take. — Wayne Gretzky" — Michael Scott |
6 | 6 |
|
| 7 | +## 10.35.0 |
| 8 | + |
| 9 | +### Important Changes |
| 10 | + |
| 11 | +- **feat(tanstackstart-react): Add `sentryTanstackStart` vite plugin to manage automatic source map uploads ([#18712](https://github.com/getsentry/sentry-javascript/pull/18712))** |
| 12 | + |
| 13 | + You can now configure source maps upload for TanStack Start using the `sentryTanstackStart` Vite plugin: |
| 14 | + |
| 15 | + ```ts |
| 16 | + // vite.config.ts |
| 17 | + import { defineConfig } from 'vite'; |
| 18 | + import { sentryTanstackStart } from '@sentry/tanstackstart-react'; |
| 19 | + import { tanstackStart } from '@tanstack/react-start/plugin/vite'; |
| 20 | + |
| 21 | + export default defineConfig({ |
| 22 | + plugins: [ |
| 23 | + sentryTanstackStart({ |
| 24 | + authToken: process.env.SENTRY_AUTH_TOKEN, |
| 25 | + org: 'your-org', |
| 26 | + project: 'your-project', |
| 27 | + }), |
| 28 | + tanstackStart(), |
| 29 | + ], |
| 30 | + }); |
| 31 | + ``` |
| 32 | + |
| 33 | +### Other Changes |
| 34 | + |
| 35 | +- feat(browser): Add CDN bundle for `tracing.replay.feedback.logs.metrics` ([#18785](https://github.com/getsentry/sentry-javascript/pull/18785)) |
| 36 | +- feat(browser): Add shim package for logs ([#18831](https://github.com/getsentry/sentry-javascript/pull/18831)) |
| 37 | +- feat(cloudflare): Automatically set the release id when CF_VERSION_METADATA is enabled ([#18855](https://github.com/getsentry/sentry-javascript/pull/18855)) |
| 38 | +- feat(core): Add `ignored` client report event drop reason ([#18815](https://github.com/getsentry/sentry-javascript/pull/18815)) |
| 39 | +- feat(logs): Add `Log` exports to browser and node packages ([#18857](https://github.com/getsentry/sentry-javascript/pull/18857)) |
| 40 | +- feat(node-core,bun): Export processSessionIntegration from node-core and add it to bun ([#18852](https://github.com/getsentry/sentry-javascript/pull/18852)) |
| 41 | +- fix(core): Find the correct IP address regardless their case ([#18880](https://github.com/getsentry/sentry-javascript/pull/18880)) |
| 42 | +- fix(core): Check for AI operation id to detect a vercelai span ([#18823](https://github.com/getsentry/sentry-javascript/pull/18823)) |
| 43 | +- fix(ember): Use ES5 syntax in inline vendor scripts ([#18858](https://github.com/getsentry/sentry-javascript/pull/18858)) |
| 44 | +- fix(fetch): Shallow-clone fetch options to prevent mutation ([#18867](https://github.com/getsentry/sentry-javascript/pull/18867)) |
| 45 | + |
| 46 | +<details> |
| 47 | + <summary><strong>Internal Changes</strong></summary> |
| 48 | + |
| 49 | +- chore(ci): Use javascript-sdk-gitflow app instead of personal token ([#18829](https://github.com/getsentry/sentry-javascript/pull/18829)) |
| 50 | +- chore(deps): Bump `@sveltejs/kit` devDependency to `2.49.5` ([#18848](https://github.com/getsentry/sentry-javascript/pull/18848)) |
| 51 | +- chore(deps): Bump bundler plugins to ^4.6.2 ([#18822](https://github.com/getsentry/sentry-javascript/pull/18822)) |
| 52 | +- chore(deps): bump hono from 4.10.3 to 4.11.4 in /dev-packages/e2e-tests/test-applications/cloudflare-hono ([#18806](https://github.com/getsentry/sentry-javascript/pull/18806)) |
| 53 | +- chore(test): Bump svelte dependencies ([#18850](https://github.com/getsentry/sentry-javascript/pull/18850)) |
| 54 | +- chore(core): Comment out Error tests in langchain ([#18837](https://github.com/getsentry/sentry-javascript/pull/18837)) |
| 55 | +- meta(changelog): Fix entry for tanstack start vite plugin ([#18883](https://github.com/getsentry/sentry-javascript/pull/18883)) |
| 56 | +- test(e2e): Add testing app for User Feedback ([#18877](https://github.com/getsentry/sentry-javascript/pull/18877)) |
| 57 | +- test(fastify): Verify if upstream error is fixed and won't regress ([#18838](https://github.com/getsentry/sentry-javascript/pull/18838)) |
| 58 | + |
| 59 | +</details> |
| 60 | + |
| 61 | +Work in this release was contributed by @rreckonerr. Thank you for your contribution! |
| 62 | + |
7 | 63 | ## 10.34.0 |
8 | 64 |
|
9 | 65 | ### Important Changes |
|
0 commit comments