Skip to content

Commit d10959d

Browse files
author
Luca Forstner
authored
Remove debug/sessiontiming integration in JS (#12666)
1 parent 1f98635 commit d10959d

36 files changed

+4
-304
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,10 @@ jobs:
6262
runs-on: ubuntu-latest
6363
steps:
6464
- uses: actions/checkout@v4.1.1
65-
- uses: getsentry/action-setup-volta@c52be2ea13cfdc084edb806e81958c13e445941e # v1.2.0
65+
- name: Set up Node
66+
uses: actions/setup-node@v4
67+
with:
68+
node-version-file: 'package.json'
6669
- uses: actions/cache@v4
6770
id: cache
6871
with:

docs/platforms/javascript/common/configuration/integrations/debug.mdx

Lines changed: 0 additions & 35 deletions
This file was deleted.

docs/platforms/javascript/common/configuration/integrations/index.mdx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ To disable system integrations, set `defaultIntegrations: false` when calling `i
2020

2121
To override their settings, provide a new instance with your config to the `integrations` option. For example, to turn off browser capturing console calls:
2222

23-
2423
```javascript
2524
Sentry.init({
2625
dsn: "___PUBLIC_DSN___",
@@ -62,7 +61,6 @@ You can add the integration with a dynamic import using `import()`. This method
6261
You can also lazy-load pluggable integrations via `Sentry.lazyLoadIntegration()`. This will attempt to load the integration from the Sentry CDN.
6362
Note that this function will reject if it fails to load the integration from the Sentry CDN, which can happen if a user has an ad-blocker or if there's a network problem. You should always make sure that rejections are handled for this function in your application.
6463

65-
6664
```javascript
6765
async function loadHttpClient() {
6866
const httpClientIntegration = await Sentry.lazyLoadIntegration(
@@ -82,13 +80,11 @@ Lazy loading is available for the following integrations:
8280
- `captureConsoleIntegration`
8381
- `contextLinesIntegration`
8482
- `linkedErrorsIntegration`
85-
- `debugIntegration`
8683
- `dedupeIntegration`
8784
- `extraErrorDataIntegration`
8885
- `httpClientIntegration`
8986
- `reportingObserverIntegration`
9087
- `rewriteFramesIntegration`
91-
- `sessionTimingIntegration`
9288
- `browserProfilingIntegration`
9389

9490
</PlatformCategorySection>

docs/platforms/javascript/common/configuration/integrations/sessiontiming.mdx

Lines changed: 0 additions & 19 deletions
This file was deleted.

platform-includes/configuration/debug/javascript.bun.mdx

Lines changed: 0 additions & 8 deletions
This file was deleted.

platform-includes/configuration/debug/javascript.cloudflare.mdx

Lines changed: 0 additions & 8 deletions
This file was deleted.

platform-includes/configuration/debug/javascript.deno.mdx

Lines changed: 0 additions & 8 deletions
This file was deleted.

platform-includes/configuration/debug/javascript.mdx

Lines changed: 0 additions & 68 deletions
This file was deleted.

platform-includes/configuration/debug/javascript.node.mdx

Lines changed: 0 additions & 8 deletions
This file was deleted.

platform-includes/configuration/integrations/javascript.astro.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ Depending on whether an integration enhances the functionality of a particular r
1818
| [`debugIntegration`](./debug) | | | | |
1919
| [`extraErrorDataIntegration`](./extraerrordata) | | | ||
2020
| [`rewriteFramesIntegration`](./rewriteframes) | || | |
21-
| [`sessionTimingIntegration`](./sessiontiming) | | | ||
2221

2322
### Browser Integrations
2423

0 commit comments

Comments
 (0)