Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 1.8k
deps: Bump version of sentry-bundler-plugins#18972
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -53,7 +53,7 @@ export async function makeCustomSentryVitePlugins(options: SentryReactRouterBuil | ||
| ...sentryVitePlugins.filter(plugin => { | ||
| return [ | ||
| 'sentry-telemetry-plugin', | ||
| 'sentry-vite-release-injection-plugin', | ||
| 'sentry-vite-injection-plugin', | ||
cursor[bot] marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| ...(reactComponentAnnotation?.enabled || unstable_sentryVitePluginOptions?.reactComponentAnnotation?.enabled | ||
| ? ['sentry-vite-component-name-annotate-plugin'] | ||
| : []), | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -42,8 +42,8 @@ describe('sentrySvelteKit()', () => { | ||
| const plugins = await getSentrySvelteKitPlugins(); | ||
| expect(plugins).toBeInstanceOf(Array); | ||
| // 1 auto instrument plugin + 1 global values injection plugin + 5 source maps plugins | ||
| expect(plugins).toHaveLength(10); | ||
| // 1 auto instrument plugin + 1 global values injection plugin + 4 source maps plugins | ||
| expect(plugins).toHaveLength(9); | ||
| }); | ||
| it('returns the custom sentry source maps upload plugin, unmodified sourcemaps plugins and the auto-instrument plugin by default', async () => { | ||
| @@ -56,8 +56,7 @@ describe('sentrySvelteKit()', () => { | ||
| 'sentry-sveltekit-global-values-injection-plugin', | ||
| // default source maps plugins: | ||
| 'sentry-telemetry-plugin', | ||
| 'sentry-vite-release-injection-plugin', | ||
| 'sentry-vite-debug-id-injection-plugin', | ||
| 'sentry-vite-injection-plugin', | ||
s1gr1d marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| 'sentry-sveltekit-update-source-map-setting-plugin', | ||
| 'sentry-sveltekit-files-to-delete-after-upload-setting-plugin', | ||
| // custom release plugin: | ||
| @@ -90,7 +89,7 @@ describe('sentrySvelteKit()', () => { | ||
| it("doesn't return the auto instrument plugin if autoInstrument is `false`", async () => { | ||
| const plugins = await getSentrySvelteKitPlugins({ autoInstrument: false }); | ||
| const pluginNames = plugins.map(plugin => plugin.name); | ||
| expect(plugins).toHaveLength(9); // global values injection + 5 source maps plugins + 3 default plugins | ||
| expect(plugins).toHaveLength(8); // global values injection + 4 source maps plugins + 3 default plugins | ||
| expect(pluginNames).not.toContain('sentry-auto-instrumentation'); | ||
| }); | ||
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.