Skip to content
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

feat(v8/integrations): Remove deprecated exports #10556

Merged
merged 6 commits into from
Feb 12, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
remove dedupe
  • Loading branch information
AbhiPrasad committed Feb 12, 2024
commit 43f93b222d6359309aa0c9f077ad06224ff0ca1f
1 change: 0 additions & 1 deletion packages/browser/test/integration/common/init.js
Original file line number Diff line number Diff line change
@@ -22,7 +22,6 @@ var dsn =
function initSDK() {
Sentry.init({
dsn: dsn,
integrations: [new Sentry.Integrations.Dedupe()],
attachStacktrace: true,
ignoreErrors: ['ignoreErrorTest'],
denyUrls: ['foo.js'],
2 changes: 0 additions & 2 deletions packages/browser/test/package/test-code.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
/* eslint-disable no-console */
const Sentry = require('../../build/npm/cjs/index.js');
const Integrations = require('../../../integrations/build/npm/cjs/dedupe.js');

// Init
Sentry.init({
dsn: 'https://completelyrandom@dsn.asdf/42',
integrations: [new Integrations.Dedupe()],
beforeSend(_event) {
console.log('Got an event');
return null;
Loading