From 89356b40097d21997d00882fdfd55d482cb69b26 Mon Sep 17 00:00:00 2001 From: Andrei Borza Date: Thu, 31 Jul 2025 10:37:14 +0200 Subject: [PATCH 01/17] feat(js): Add v10 migration guide --- .../javascript/common/migration/v9-to-v10.mdx | 97 +++++++++++++++++++ 1 file changed, 97 insertions(+) create mode 100644 docs/platforms/javascript/common/migration/v9-to-v10.mdx diff --git a/docs/platforms/javascript/common/migration/v9-to-v10.mdx b/docs/platforms/javascript/common/migration/v9-to-v10.mdx new file mode 100644 index 0000000000000..f51e1e9425166 --- /dev/null +++ b/docs/platforms/javascript/common/migration/v9-to-v10.mdx @@ -0,0 +1,97 @@ +--- +title: Migrate from 9.x to 10.x +sidebar_order: 8880 +description: "Learn about migrating from Sentry JavaScript SDK 9.x to 10.x" +notSupported: + - javascript.capacitor + - javascript.cordova + - javascript.electron + - javascript.tanstackstart-react +--- + + + + +Make sure to select your framework in the dropdown in the top left corner of the page. + + + + +Version 10 of the Sentry JavaScript SDK primarily focuses on upgrading underlying OpenTelemetry dependencies to v2 with minimal breaking changes. + +Version 10 of the SDK is compatible with Sentry self-hosted versions 24.4.2 or higher (unchanged from v9). +Lower versions may continue to work, but may not support all features. + +## Version Support Changes: + +Version 10 of the Sentry SDK has new compatibility ranges for runtimes and frameworks. + +#### Node.js + +All OpenTelemetry dependencies have been bumped to `2.x.x` / `0.20x.x` respectively and all OpenTelemetry instrumentations have been upgraded to their latest version. + +If you cannot run with OpenTelmetry v2 versions, consider either staying on Version 9 of our SDKs or using `@sentry/node-core` instead which ships with widened OpenTelemetry peer dependencies. + +#### AWS Lambda Layer Changes + +A new AWS Lambda Layer for version 10 will be published as `SentryNodeServerlessSDKv10`. + +Updates and fixes for version 9 will be published as `SentryNodeServerlessSDKv9`. + + + +## Behavior Changes + +The changes outlined in this section describe in what way the SDK may behave differently after upgrading: + +- The SDKs no longer report the First Input Delay (FID) web vital. + This was done because FID has been replaced by Interaction to Next Paint (INP) and is therefore no longer relevant for assessing and tracking a website's performance. + For reference, FID has long been deprecated by Google's official `web-vitals` library and was eventually removed in version `5.0.0`. + Sentry now follows Google's lead by also removing it. + + The removal entails **no breaking API changes**. However, in rare cases, you might need to adjust some of your Sentry SDK and product setup: + + - Remove any logic in `beforeSend` or other filtering/event processing logic that depends on FID or replace it with INP logic. + - If you set up Sentry Alerts that depend on FID, be aware that these could trigger once you upgrade the SDK, due to a lack of new values. + To replace them, adjust your alerts (or dashbaords) to use INP. + + + +## Removed APIs + +The changes outlined in this section detail deprecated APIs that are now removed. + +- `BaseClient` was removed, use `Client` as a direct replacement. +- `hasTracingEnabled` was removed, use `hasSpansEnabled` as a direct replacement. +- `logger` and type `Logger` were removed, use `debug` and type `SentryDebugLogger` instead. +- The `_experiments.enableLogs` and `_experiments.beforeSendLog` options were removed, use the top-level `enableLogs` and `beforeSendLog` options instead. + +```js +// before +Sentry.init({ + _experiments: { + enableLogs: true, + beforeSendLog: (log) => { + return log; + }, + }, +}); + +// after +Sentry.init({ + enableLogs: true, + beforeSendLog: (log) => { + return log; + }, +}); +``` + +## Version Support Timeline + +Version support timelines are stressful for everybody using the SDK, so we won't be defining one. +Instead, we will be applying bug fixes and features to older versions as long as there is demand. + +Additionally, we hold ourselves accountable to any security issues, meaning that if any vulnerabilities are found, we will in almost all cases backport them. + +Note, that backporting decisions are made on a case-by-case basis. +If you need a fix or feature in a previous version of the SDK, please reach out via a GitHub Issue. From 7c2089a6317b857c02e823d97af393cf825d6d85 Mon Sep 17 00:00:00 2001 From: Andrei <168741329+andreiborza@users.noreply.github.com> Date: Thu, 31 Jul 2025 11:47:21 +0200 Subject: [PATCH 02/17] Update docs/platforms/javascript/common/migration/v9-to-v10.mdx Co-authored-by: Sigrid Huemer <32902192+s1gr1d@users.noreply.github.com> --- docs/platforms/javascript/common/migration/v9-to-v10.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/platforms/javascript/common/migration/v9-to-v10.mdx b/docs/platforms/javascript/common/migration/v9-to-v10.mdx index f51e1e9425166..958592eecad29 100644 --- a/docs/platforms/javascript/common/migration/v9-to-v10.mdx +++ b/docs/platforms/javascript/common/migration/v9-to-v10.mdx @@ -30,7 +30,7 @@ Version 10 of the Sentry SDK has new compatibility ranges for runtimes and frame All OpenTelemetry dependencies have been bumped to `2.x.x` / `0.20x.x` respectively and all OpenTelemetry instrumentations have been upgraded to their latest version. -If you cannot run with OpenTelmetry v2 versions, consider either staying on Version 9 of our SDKs or using `@sentry/node-core` instead which ships with widened OpenTelemetry peer dependencies. +If you cannot run with OpenTelmetry v2 versions, consider either staying on Version 9 of our SDKs or using `@sentry/node-core` instead, which ships with widened OpenTelemetry peer dependencies. #### AWS Lambda Layer Changes From 246a8d437893f092139c4a994830127fc0fa189b Mon Sep 17 00:00:00 2001 From: Andrei Borza Date: Thu, 31 Jul 2025 11:47:56 +0200 Subject: [PATCH 03/17] Remove tanstackstart-react exclusion --- docs/platforms/javascript/common/migration/v9-to-v10.mdx | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/platforms/javascript/common/migration/v9-to-v10.mdx b/docs/platforms/javascript/common/migration/v9-to-v10.mdx index 958592eecad29..34c7530daff8d 100644 --- a/docs/platforms/javascript/common/migration/v9-to-v10.mdx +++ b/docs/platforms/javascript/common/migration/v9-to-v10.mdx @@ -6,7 +6,6 @@ notSupported: - javascript.capacitor - javascript.cordova - javascript.electron - - javascript.tanstackstart-react --- From 2eb036be1063699990010a67f31ff1858d5aea5b Mon Sep 17 00:00:00 2001 From: Andrei <168741329+andreiborza@users.noreply.github.com> Date: Thu, 31 Jul 2025 11:51:25 +0200 Subject: [PATCH 04/17] Update docs/platforms/javascript/common/migration/v9-to-v10.mdx Co-authored-by: Lukas Stracke --- docs/platforms/javascript/common/migration/v9-to-v10.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/platforms/javascript/common/migration/v9-to-v10.mdx b/docs/platforms/javascript/common/migration/v9-to-v10.mdx index 34c7530daff8d..369cf511b5b47 100644 --- a/docs/platforms/javascript/common/migration/v9-to-v10.mdx +++ b/docs/platforms/javascript/common/migration/v9-to-v10.mdx @@ -25,7 +25,7 @@ Lower versions may continue to work, but may not support all features. Version 10 of the Sentry SDK has new compatibility ranges for runtimes and frameworks. -#### Node.js +### Node.js All OpenTelemetry dependencies have been bumped to `2.x.x` / `0.20x.x` respectively and all OpenTelemetry instrumentations have been upgraded to their latest version. From 6e5920f04e51ca64e6cee5fd39228a1a3b2731ea Mon Sep 17 00:00:00 2001 From: Andrei <168741329+andreiborza@users.noreply.github.com> Date: Thu, 31 Jul 2025 11:51:32 +0200 Subject: [PATCH 05/17] Update docs/platforms/javascript/common/migration/v9-to-v10.mdx Co-authored-by: Lukas Stracke --- docs/platforms/javascript/common/migration/v9-to-v10.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/platforms/javascript/common/migration/v9-to-v10.mdx b/docs/platforms/javascript/common/migration/v9-to-v10.mdx index 369cf511b5b47..25c4ab66a9292 100644 --- a/docs/platforms/javascript/common/migration/v9-to-v10.mdx +++ b/docs/platforms/javascript/common/migration/v9-to-v10.mdx @@ -31,7 +31,7 @@ All OpenTelemetry dependencies have been bumped to `2.x.x` / `0.20x.x` respectiv If you cannot run with OpenTelmetry v2 versions, consider either staying on Version 9 of our SDKs or using `@sentry/node-core` instead, which ships with widened OpenTelemetry peer dependencies. -#### AWS Lambda Layer Changes +### AWS Lambda Layer Changes A new AWS Lambda Layer for version 10 will be published as `SentryNodeServerlessSDKv10`. From 5e2ea7ea20c229a66ca40b7d679cc90c3d954a3f Mon Sep 17 00:00:00 2001 From: Andrei <168741329+andreiborza@users.noreply.github.com> Date: Thu, 31 Jul 2025 11:51:43 +0200 Subject: [PATCH 06/17] Update docs/platforms/javascript/common/migration/v9-to-v10.mdx Co-authored-by: Lukas Stracke --- docs/platforms/javascript/common/migration/v9-to-v10.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/platforms/javascript/common/migration/v9-to-v10.mdx b/docs/platforms/javascript/common/migration/v9-to-v10.mdx index 25c4ab66a9292..96e46875eeb3f 100644 --- a/docs/platforms/javascript/common/migration/v9-to-v10.mdx +++ b/docs/platforms/javascript/common/migration/v9-to-v10.mdx @@ -39,7 +39,7 @@ Updates and fixes for version 9 will be published as `SentryNodeServerlessSDKv9` -## Behavior Changes +## Removed FID Web Vital reporting The changes outlined in this section describe in what way the SDK may behave differently after upgrading: From 2dbf9b113940510f2f78d67f8855604d27b67386 Mon Sep 17 00:00:00 2001 From: Andrei <168741329+andreiborza@users.noreply.github.com> Date: Thu, 31 Jul 2025 13:35:08 +0200 Subject: [PATCH 07/17] Update docs/platforms/javascript/common/migration/v9-to-v10.mdx Co-authored-by: Abhijeet Prasad --- .../javascript/common/migration/v9-to-v10.mdx | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/docs/platforms/javascript/common/migration/v9-to-v10.mdx b/docs/platforms/javascript/common/migration/v9-to-v10.mdx index 96e46875eeb3f..ded6403d7e28a 100644 --- a/docs/platforms/javascript/common/migration/v9-to-v10.mdx +++ b/docs/platforms/javascript/common/migration/v9-to-v10.mdx @@ -41,14 +41,13 @@ Updates and fixes for version 9 will be published as `SentryNodeServerlessSDKv9` ## Removed FID Web Vital reporting -The changes outlined in this section describe in what way the SDK may behave differently after upgrading: +**The SDKs no longer report the First Input Delay (FID) web vital**. -- The SDKs no longer report the First Input Delay (FID) web vital. - This was done because FID has been replaced by Interaction to Next Paint (INP) and is therefore no longer relevant for assessing and tracking a website's performance. - For reference, FID has long been deprecated by Google's official `web-vitals` library and was eventually removed in version `5.0.0`. - Sentry now follows Google's lead by also removing it. +This was done because FID has been replaced by Interaction to Next Paint (INP) and is therefore no longer relevant for assessing and tracking a website's performance. +For reference, FID has long been deprecated by Google's official `web-vitals` library and was eventually removed in version `5.0.0`. +Sentry now follows Google's lead by also removing it. - The removal entails **no breaking API changes**. However, in rare cases, you might need to adjust some of your Sentry SDK and product setup: +The removal entails **no breaking API changes**. However, in rare cases, you might need to adjust some of your Sentry SDK and product setup: - Remove any logic in `beforeSend` or other filtering/event processing logic that depends on FID or replace it with INP logic. - If you set up Sentry Alerts that depend on FID, be aware that these could trigger once you upgrade the SDK, due to a lack of new values. From 44c3ac022ee3852b9054669c4e5aeb2df8775132 Mon Sep 17 00:00:00 2001 From: Andrei <168741329+andreiborza@users.noreply.github.com> Date: Thu, 31 Jul 2025 13:35:27 +0200 Subject: [PATCH 08/17] Update docs/platforms/javascript/common/migration/v9-to-v10.mdx Co-authored-by: Abhijeet Prasad --- docs/platforms/javascript/common/migration/v9-to-v10.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/platforms/javascript/common/migration/v9-to-v10.mdx b/docs/platforms/javascript/common/migration/v9-to-v10.mdx index ded6403d7e28a..67443f188d3c6 100644 --- a/docs/platforms/javascript/common/migration/v9-to-v10.mdx +++ b/docs/platforms/javascript/common/migration/v9-to-v10.mdx @@ -61,7 +61,7 @@ The changes outlined in this section detail deprecated APIs that are now removed - `BaseClient` was removed, use `Client` as a direct replacement. - `hasTracingEnabled` was removed, use `hasSpansEnabled` as a direct replacement. -- `logger` and type `Logger` were removed, use `debug` and type `SentryDebugLogger` instead. +- The internal `logger` and type `Logger` exports in `@sentry/core` were removed, use `debug` and type `SentryDebugLogger` instead. This does not affect the `logger` export used for [Sentry Logging](https://docs.sentry.io/product/explore/logs/getting-started/) - The `_experiments.enableLogs` and `_experiments.beforeSendLog` options were removed, use the top-level `enableLogs` and `beforeSendLog` options instead. ```js From 93972c58b7452c6a2e222234a7d0155c79c2dacc Mon Sep 17 00:00:00 2001 From: Andrei Borza Date: Thu, 31 Jul 2025 13:38:28 +0200 Subject: [PATCH 09/17] Add npm link to node-core --- docs/platforms/javascript/common/migration/v9-to-v10.mdx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/platforms/javascript/common/migration/v9-to-v10.mdx b/docs/platforms/javascript/common/migration/v9-to-v10.mdx index 67443f188d3c6..c76ddb2045d6a 100644 --- a/docs/platforms/javascript/common/migration/v9-to-v10.mdx +++ b/docs/platforms/javascript/common/migration/v9-to-v10.mdx @@ -29,7 +29,7 @@ Version 10 of the Sentry SDK has new compatibility ranges for runtimes and frame All OpenTelemetry dependencies have been bumped to `2.x.x` / `0.20x.x` respectively and all OpenTelemetry instrumentations have been upgraded to their latest version. -If you cannot run with OpenTelmetry v2 versions, consider either staying on Version 9 of our SDKs or using `@sentry/node-core` instead, which ships with widened OpenTelemetry peer dependencies. +If you cannot run with OpenTelmetry v2 versions, consider either staying on Version 9 of our SDKs or using [@sentry/node-core](https://www.npmjs.com/package/@sentry/node-core) instead, which ships with widened OpenTelemetry peer dependencies. ### AWS Lambda Layer Changes @@ -49,9 +49,9 @@ Sentry now follows Google's lead by also removing it. The removal entails **no breaking API changes**. However, in rare cases, you might need to adjust some of your Sentry SDK and product setup: - - Remove any logic in `beforeSend` or other filtering/event processing logic that depends on FID or replace it with INP logic. - - If you set up Sentry Alerts that depend on FID, be aware that these could trigger once you upgrade the SDK, due to a lack of new values. - To replace them, adjust your alerts (or dashbaords) to use INP. +- Remove any logic in `beforeSend` or other filtering/event processing logic that depends on FID or replace it with INP logic. +- If you set up Sentry Alerts that depend on FID, be aware that these could trigger once you upgrade the SDK, due to a lack of new values. + To replace them, adjust your alerts (or dashbaords) to use INP. From cf01364d9cad5b0b2a4232b2722378a4eda0eba6 Mon Sep 17 00:00:00 2001 From: Andrei Borza Date: Thu, 31 Jul 2025 16:10:21 +0200 Subject: [PATCH 10/17] Add session replay breaking change to migration guide --- docs/platforms/javascript/common/migration/v9-to-v10.mdx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/platforms/javascript/common/migration/v9-to-v10.mdx b/docs/platforms/javascript/common/migration/v9-to-v10.mdx index c76ddb2045d6a..ee0620bb87064 100644 --- a/docs/platforms/javascript/common/migration/v9-to-v10.mdx +++ b/docs/platforms/javascript/common/migration/v9-to-v10.mdx @@ -53,6 +53,10 @@ The removal entails **no breaking API changes**. However, in rare cases, you mig - If you set up Sentry Alerts that depend on FID, be aware that these could trigger once you upgrade the SDK, due to a lack of new values. To replace them, adjust your alerts (or dashbaords) to use INP. +## Removed `_experiments.autoFlushOnFeedback` for Session Replays + +The `_experiments.autoFlushOnFeedback` option was removed and is now default behavior. + ## Removed APIs From 7b8081f82b526ae6564024acdc41f1c00a0e4faf Mon Sep 17 00:00:00 2001 From: Andrei <168741329+andreiborza@users.noreply.github.com> Date: Thu, 31 Jul 2025 16:32:46 +0200 Subject: [PATCH 11/17] Update docs/platforms/javascript/common/migration/v9-to-v10.mdx Co-authored-by: Abhijeet Prasad --- docs/platforms/javascript/common/migration/v9-to-v10.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/platforms/javascript/common/migration/v9-to-v10.mdx b/docs/platforms/javascript/common/migration/v9-to-v10.mdx index ee0620bb87064..6fce09f41a20d 100644 --- a/docs/platforms/javascript/common/migration/v9-to-v10.mdx +++ b/docs/platforms/javascript/common/migration/v9-to-v10.mdx @@ -29,7 +29,7 @@ Version 10 of the Sentry SDK has new compatibility ranges for runtimes and frame All OpenTelemetry dependencies have been bumped to `2.x.x` / `0.20x.x` respectively and all OpenTelemetry instrumentations have been upgraded to their latest version. -If you cannot run with OpenTelmetry v2 versions, consider either staying on Version 9 of our SDKs or using [@sentry/node-core](https://www.npmjs.com/package/@sentry/node-core) instead, which ships with widened OpenTelemetry peer dependencies. +If you cannot run with OpenTelemetry v2 versions, consider either staying on Version 9 of our SDKs or using [@sentry/node-core](https://www.npmjs.com/package/@sentry/node-core) instead, which ships with widened OpenTelemetry peer dependencies. ### AWS Lambda Layer Changes From 1173a12f642c9cb9a4e50baecbe9a8bf4042945b Mon Sep 17 00:00:00 2001 From: Andrei <168741329+andreiborza@users.noreply.github.com> Date: Thu, 31 Jul 2025 16:32:56 +0200 Subject: [PATCH 12/17] Update docs/platforms/javascript/common/migration/v9-to-v10.mdx Co-authored-by: Abhijeet Prasad --- docs/platforms/javascript/common/migration/v9-to-v10.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/platforms/javascript/common/migration/v9-to-v10.mdx b/docs/platforms/javascript/common/migration/v9-to-v10.mdx index 6fce09f41a20d..b0e14fcb27f4d 100644 --- a/docs/platforms/javascript/common/migration/v9-to-v10.mdx +++ b/docs/platforms/javascript/common/migration/v9-to-v10.mdx @@ -27,7 +27,7 @@ Version 10 of the Sentry SDK has new compatibility ranges for runtimes and frame ### Node.js -All OpenTelemetry dependencies have been bumped to `2.x.x` / `0.20x.x` respectively and all OpenTelemetry instrumentations have been upgraded to their latest version. +All OpenTelemetry dependencies have been bumped to `2.x.x` / `0.20x.x` respectively, and all OpenTelemetry instrumentations have been upgraded to their latest version. If you cannot run with OpenTelemetry v2 versions, consider either staying on Version 9 of our SDKs or using [@sentry/node-core](https://www.npmjs.com/package/@sentry/node-core) instead, which ships with widened OpenTelemetry peer dependencies. From 625f9f5541b527cb48c6408d316720c19aa69676 Mon Sep 17 00:00:00 2001 From: Andrei <168741329+andreiborza@users.noreply.github.com> Date: Thu, 31 Jul 2025 16:33:06 +0200 Subject: [PATCH 13/17] Update docs/platforms/javascript/common/migration/v9-to-v10.mdx Co-authored-by: Abhijeet Prasad --- docs/platforms/javascript/common/migration/v9-to-v10.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/platforms/javascript/common/migration/v9-to-v10.mdx b/docs/platforms/javascript/common/migration/v9-to-v10.mdx index b0e14fcb27f4d..24ae7ac711faf 100644 --- a/docs/platforms/javascript/common/migration/v9-to-v10.mdx +++ b/docs/platforms/javascript/common/migration/v9-to-v10.mdx @@ -51,7 +51,7 @@ The removal entails **no breaking API changes**. However, in rare cases, you mig - Remove any logic in `beforeSend` or other filtering/event processing logic that depends on FID or replace it with INP logic. - If you set up Sentry Alerts that depend on FID, be aware that these could trigger once you upgrade the SDK, due to a lack of new values. - To replace them, adjust your alerts (or dashbaords) to use INP. + To replace them, adjust your alerts (or dashboards) to use INP. ## Removed `_experiments.autoFlushOnFeedback` for Session Replays From 659aeffede9ea10838853721e0715ad98f176ae7 Mon Sep 17 00:00:00 2001 From: Andrei <168741329+andreiborza@users.noreply.github.com> Date: Thu, 31 Jul 2025 16:33:14 +0200 Subject: [PATCH 14/17] Update docs/platforms/javascript/common/migration/v9-to-v10.mdx Co-authored-by: Abhijeet Prasad --- docs/platforms/javascript/common/migration/v9-to-v10.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/platforms/javascript/common/migration/v9-to-v10.mdx b/docs/platforms/javascript/common/migration/v9-to-v10.mdx index 24ae7ac711faf..dabf60ad95ce5 100644 --- a/docs/platforms/javascript/common/migration/v9-to-v10.mdx +++ b/docs/platforms/javascript/common/migration/v9-to-v10.mdx @@ -55,7 +55,7 @@ The removal entails **no breaking API changes**. However, in rare cases, you mig ## Removed `_experiments.autoFlushOnFeedback` for Session Replays -The `_experiments.autoFlushOnFeedback` option was removed and is now default behavior. +The `_experiments.autoFlushOnFeedback` option was removed and is now the default behavior. From 90260c88b8386b75c1ea0d3c3dbb3c37be0b63a8 Mon Sep 17 00:00:00 2001 From: Andrei <168741329+andreiborza@users.noreply.github.com> Date: Thu, 31 Jul 2025 16:33:25 +0200 Subject: [PATCH 15/17] Update docs/platforms/javascript/common/migration/v9-to-v10.mdx Co-authored-by: Abhijeet Prasad --- docs/platforms/javascript/common/migration/v9-to-v10.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/platforms/javascript/common/migration/v9-to-v10.mdx b/docs/platforms/javascript/common/migration/v9-to-v10.mdx index dabf60ad95ce5..a52eb88dc0d37 100644 --- a/docs/platforms/javascript/common/migration/v9-to-v10.mdx +++ b/docs/platforms/javascript/common/migration/v9-to-v10.mdx @@ -90,7 +90,7 @@ Sentry.init({ ## Version Support Timeline -Version support timelines are stressful for everybody using the SDK, so we won't be defining one. +Version support timelines can be stressful for everybody using the SDK, so we won't be defining one. Instead, we will be applying bug fixes and features to older versions as long as there is demand. Additionally, we hold ourselves accountable to any security issues, meaning that if any vulnerabilities are found, we will in almost all cases backport them. From 4364b3779db823cdc6023c1f41f93d0f7656fa26 Mon Sep 17 00:00:00 2001 From: Andrei <168741329+andreiborza@users.noreply.github.com> Date: Thu, 31 Jul 2025 16:33:32 +0200 Subject: [PATCH 16/17] Update docs/platforms/javascript/common/migration/v9-to-v10.mdx Co-authored-by: Abhijeet Prasad --- docs/platforms/javascript/common/migration/v9-to-v10.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/platforms/javascript/common/migration/v9-to-v10.mdx b/docs/platforms/javascript/common/migration/v9-to-v10.mdx index a52eb88dc0d37..4eb97dc52dd0f 100644 --- a/docs/platforms/javascript/common/migration/v9-to-v10.mdx +++ b/docs/platforms/javascript/common/migration/v9-to-v10.mdx @@ -93,7 +93,7 @@ Sentry.init({ Version support timelines can be stressful for everybody using the SDK, so we won't be defining one. Instead, we will be applying bug fixes and features to older versions as long as there is demand. -Additionally, we hold ourselves accountable to any security issues, meaning that if any vulnerabilities are found, we will in almost all cases backport them. +Additionally, we hold ourselves accountable for any security issues, meaning that if any vulnerabilities are found, we will, in almost all, cases backport them. Note, that backporting decisions are made on a case-by-case basis. If you need a fix or feature in a previous version of the SDK, please reach out via a GitHub Issue. From eede6c385f973a87e328b2ad1539444f5691b0c4 Mon Sep 17 00:00:00 2001 From: Andrei <168741329+andreiborza@users.noreply.github.com> Date: Thu, 31 Jul 2025 16:33:40 +0200 Subject: [PATCH 17/17] Update docs/platforms/javascript/common/migration/v9-to-v10.mdx Co-authored-by: Abhijeet Prasad --- docs/platforms/javascript/common/migration/v9-to-v10.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/platforms/javascript/common/migration/v9-to-v10.mdx b/docs/platforms/javascript/common/migration/v9-to-v10.mdx index 4eb97dc52dd0f..de156b6511977 100644 --- a/docs/platforms/javascript/common/migration/v9-to-v10.mdx +++ b/docs/platforms/javascript/common/migration/v9-to-v10.mdx @@ -96,4 +96,4 @@ Instead, we will be applying bug fixes and features to older versions as long as Additionally, we hold ourselves accountable for any security issues, meaning that if any vulnerabilities are found, we will, in almost all, cases backport them. Note, that backporting decisions are made on a case-by-case basis. -If you need a fix or feature in a previous version of the SDK, please reach out via a GitHub Issue. +If you need a fix or feature in a previous version of the SDK, please reach out via a [GitHub Issue](https://github.com/getsentry/sentry-javascript/issues).