@sentry/bundler-plugin-core 2.21.1 → 2.22.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -13619,7 +13619,7 @@ function createSentryInstance(options, shouldSendTelemetry, bundler) {
13619
13619
  dsn: "https://4c2bae7d9fbc413e8f7385f55c515d51@o1.ingest.sentry.io/6690737",
13620
13620
  tracesSampleRate: 1,
13621
13621
  sampleRate: 1,
13622
- release: "2.21.1",
13622
+ release: "2.22.0",
13623
13623
  integrations: [],
13624
13624
  tracePropagationTargets: ["sentry.io/api"],
13625
13625
  stackParser: defaultStackParser,
@@ -14506,7 +14506,7 @@ function fileDeletionPlugin(_ref) {
14506
14506
  *
14507
14507
  * Release injection:
14508
14508
  * Per default the sentry bundler plugin will inject a global `SENTRY_RELEASE` into each JavaScript/TypeScript module
14509
- * that is part of the bundle. On a technical level this is done by appending an import (`import "sentry-release-injector;"`)
14509
+ * that is part of the bundle. On a technical level this is done by appending an import (`import "sentry-release-injector";`)
14510
14510
  * to all entrypoint files of the user code (see `transformInclude` and `transform` hooks). This import is then resolved
14511
14511
  * by the sentry plugin to a virtual module that sets the global variable (see `resolveId` and `load` hooks).
14512
14512
  * If a user wants to inject the release into a particular set of modules they can use the `releaseInjectionTargets` option.
@@ -14583,7 +14583,7 @@ function sentryUnpluginFactory(_ref) {
14583
14583
  });
14584
14584
 
14585
14585
  // Set the User-Agent that Sentry CLI will use when interacting with Sentry
14586
- process.env["SENTRY_PIPELINE"] = "".concat(unpluginMetaContext.framework, "-plugin/", "2.21.1");
14586
+ process.env["SENTRY_PIPELINE"] = "".concat(unpluginMetaContext.framework, "-plugin/", "2.22.0");
14587
14587
  function handleRecoverableError(unknownError) {
14588
14588
  sentrySession.status = "abnormal";
14589
14589
  try {
@@ -14666,7 +14666,7 @@ function sentryUnpluginFactory(_ref) {
14666
14666
  if (bundleSizeOptimizations.excludeDebugStatements) {
14667
14667
  replacementValues["__SENTRY_DEBUG__"] = false;
14668
14668
  }
14669
- if (bundleSizeOptimizations.excludePerformanceMonitoring) {
14669
+ if (bundleSizeOptimizations.excludePerformanceMonitoring || bundleSizeOptimizations.excludeTracing) {
14670
14670
  replacementValues["__SENTRY_TRACE__"] = false;
14671
14671
  }
14672
14672
  if (bundleSizeOptimizations.excludeReplayCanvas) {