From 5731cacbd525ebcf27527c19eb2979293f81a5eb Mon Sep 17 00:00:00 2001 From: Catherine Lee <55311782+c298lee@users.noreply.github.com> Date: Fri, 31 Jan 2025 11:42:03 -0800 Subject: [PATCH 1/8] chore: Add profilesSampler in migration docs (#15253) --- docs/migration/v8-to-v9.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/migration/v8-to-v9.md b/docs/migration/v8-to-v9.md index 538826a0cde5..487dbee7cf4c 100644 --- a/docs/migration/v8-to-v9.md +++ b/docs/migration/v8-to-v9.md @@ -361,7 +361,7 @@ This should not affect most users unless you relied on passing things with a sim - The `Request` type has been removed. Use `RequestEventData` type instead. - The `IntegrationClass` type is no longer exported - it was not used anymore. Instead, use `Integration` or `IntegrationFn`. - The `samplingContext.request` attribute in the `tracesSampler` has been removed. Use `samplingContext.normalizedRequest` instead. Note that the type of `normalizedRequest` differs from `request`. -- The `samplingContext.transactionContext` object in the `tracesSampler` has been removed. All object attributes are available in the top-level of `samplingContext`. +- The `samplingContext.transactionContext` object in the `tracesSampler` and `profilesSampler` has been removed. All object attributes are available in the top-level of `samplingContext`. - `Client` now always expects the `BaseClient` class - there is no more abstract `Client` that can be implemented! Any `Client` class has to extend from `BaseClient`. - `ReportDialogOptions` now extends `Record` instead of `Record` - this should not affect most users. - The `RequestDataIntegrationOptions` type has been removed. There is no replacement. From e4333e5ce2d65be319ee6a5a5976f7c93983a417 Mon Sep 17 00:00:00 2001 From: Luca Forstner Date: Mon, 3 Feb 2025 10:30:30 +0100 Subject: [PATCH 2/8] ref(core): Move log message about invalid sample rate (#15215) --- packages/core/src/tracing/sampling.ts | 7 ++++++- packages/core/src/utils/hasTracingEnabled.ts | 2 +- packages/core/src/utils/parseSampleRate.ts | 9 --------- 3 files changed, 7 insertions(+), 11 deletions(-) diff --git a/packages/core/src/tracing/sampling.ts b/packages/core/src/tracing/sampling.ts index eb19643164aa..70c62cd20992 100644 --- a/packages/core/src/tracing/sampling.ts +++ b/packages/core/src/tracing/sampling.ts @@ -41,7 +41,12 @@ export function sampleSpan( const parsedSampleRate = parseSampleRate(sampleRate); if (parsedSampleRate === undefined) { - DEBUG_BUILD && logger.warn('[Tracing] Discarding transaction because of invalid sample rate.'); + DEBUG_BUILD && + logger.warn( + `[Tracing] Discarding root span because of invalid sample rate. Sample rate must be a boolean or a number between 0 and 1. Got ${JSON.stringify( + sampleRate, + )} of type ${JSON.stringify(typeof sampleRate)}.`, + ); return [false]; } diff --git a/packages/core/src/utils/hasTracingEnabled.ts b/packages/core/src/utils/hasTracingEnabled.ts index f00bf10ff367..a125c7a0cc9e 100644 --- a/packages/core/src/utils/hasTracingEnabled.ts +++ b/packages/core/src/utils/hasTracingEnabled.ts @@ -20,7 +20,7 @@ export function hasTracingEnabled( const options = maybeOptions || client?.getOptions(); return ( !!options && - // Note: This check is `!= null`, meaning "nullish" + // Note: This check is `!= null`, meaning "nullish". `0` is not "nullish", `undefined` and `null` are. (This comment was brought to you by 15 minutes of questioning life) (options.tracesSampleRate != null || !!options.tracesSampler) ); } diff --git a/packages/core/src/utils/parseSampleRate.ts b/packages/core/src/utils/parseSampleRate.ts index 3e297025b52e..acd22509e568 100644 --- a/packages/core/src/utils/parseSampleRate.ts +++ b/packages/core/src/utils/parseSampleRate.ts @@ -1,6 +1,3 @@ -import { DEBUG_BUILD } from '../debug-build'; -import { logger } from '../utils-hoist/logger'; - /** * Parse a sample rate from a given value. * This will either return a boolean or number sample rate, if the sample rate is valid (between 0 and 1). @@ -15,12 +12,6 @@ export function parseSampleRate(sampleRate: unknown): number | undefined { const rate = typeof sampleRate === 'string' ? parseFloat(sampleRate) : sampleRate; if (typeof rate !== 'number' || isNaN(rate) || rate < 0 || rate > 1) { - DEBUG_BUILD && - logger.warn( - `[Tracing] Given sample rate is invalid. Sample rate must be a boolean or a number between 0 and 1. Got ${JSON.stringify( - sampleRate, - )} of type ${JSON.stringify(typeof sampleRate)}.`, - ); return undefined; } From 406dd8458d55b1ff50287fcd85bb22ee796cd4ae Mon Sep 17 00:00:00 2001 From: Charly Gomez Date: Mon, 3 Feb 2025 13:29:54 +0100 Subject: [PATCH 3/8] update changelog for 9.0.0-alpha.1 --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 59271adf9976..6ddc359b36af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,10 @@ Work in this release was contributed by @tjhiggins, @chris-basebone, @GrizliK1988, @davidturissini, @nwalters512, @aloisklink, @arturovt, @benjick, @maximepvrt, @mstrokin, @kunal-511, @jahands, @jrandolf, @tannerlinsley, @Zen-cronic and @nathankleyn. Thank you for your contributions! +## 9.0.0-alpha.1 + +- fix(react): Import default for hoistNonReactStatics ([#15238](https://github.com/getsentry/sentry-javascript/pull/15238)) + ## 9.0.0-alpha.0 This is an alpha release of the upcoming major release of version 9. From a7f4938678d7c6a2df6759c7171abeefa5c830eb Mon Sep 17 00:00:00 2001 From: Charly Gomez Date: Mon, 3 Feb 2025 14:13:53 +0100 Subject: [PATCH 4/8] chore(changelog): Add v9 snippet to changelog --- CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ddc359b36af..54ee78937f08 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,7 +14,11 @@ Work in this release was contributed by @tjhiggins, @chris-basebone, @GrizliK198 ## 9.0.0-alpha.1 -- fix(react): Import default for hoistNonReactStatics ([#15238](https://github.com/getsentry/sentry-javascript/pull/15238)) +This is an alpha release of the upcoming major release of version 9. +This release does not yet entail a comprehensive changelog as version 9 is not yet stable. + +For this release's iteration of the migration guide, see the [Migration Guide as per `9.0.0-alpha.1`](https://github.com/getsentry/sentry-javascript/blob/e4333e5ce2d65be319ee6a5a5976f7c93983a417/docs/migration/v8-to-v9.md). +Please note that the migration guide is work in progress and subject to change. ## 9.0.0-alpha.0 From fa8c1801131610e5fd2768b6b25894b047d14586 Mon Sep 17 00:00:00 2001 From: Maxim Lepekha Date: Mon, 3 Feb 2025 14:32:54 +0100 Subject: [PATCH 5/8] feat(nuxt): add `silent`, `errorHandler`, `release` to `SourceMapsOptions` (#15246) This pull request includes changes to enhance the configuration options for managing Sentry source maps in a Nuxt.js project. The most important changes include adding new options to suppress logs, handle errors during release creation, and manage Sentry releases. Enhancements to Sentry source maps configuration: * [`packages/nuxt/src/common/types.ts`](diffhunk://#diff-199725da81bbdbb2e85f3dfe2b1a2bf453b4c9755059e5050815d7fcde2f59a5R11-R41): Added `silent`, `errorHandler`, and `release` options to the `SourceMapsOptions` type to provide more control over logging, error handling, and release management. * [`packages/nuxt/src/vite/sourceMaps.ts`](diffhunk://#diff-d511a0577f152ed6476e519722483c904cd2878586fdcd27f71c5587036bee37R96-R98): Updated the `getPluginOptions` function to include the new `silent`, `errorHandler`, and `release` options, allowing them to be used during the source maps upload process. Before submitting a pull request, please take a look at our [Contributing](https://github.com/getsentry/sentry-javascript/blob/master/CONTRIBUTING.md) guidelines and verify: - [x] If you've added code that should be tested, please add tests. - [x] Ensure your code lints and the test suite passes (`yarn lint`) & (`yarn test`). --------- Co-authored-by: Sigrid Huemer <32902192+s1gr1d@users.noreply.github.com> --- packages/nuxt/src/common/types.ts | 44 ++++++++++++++++++++++++++++ packages/nuxt/src/vite/sourceMaps.ts | 6 ++++ 2 files changed, 50 insertions(+) diff --git a/packages/nuxt/src/common/types.ts b/packages/nuxt/src/common/types.ts index 8a9a453ff7db..b646ca9a25e2 100644 --- a/packages/nuxt/src/common/types.ts +++ b/packages/nuxt/src/common/types.ts @@ -8,6 +8,50 @@ export type SentryNuxtClientOptions = Omit[0] & objec export type SentryNuxtServerOptions = Omit[0] & object, 'app'>; type SourceMapsOptions = { + /** + * Suppresses all logs. + * + * @default false + */ + silent?: boolean; + + /** + * When an error occurs during release creation or sourcemaps upload, the plugin will call this function. + * + * By default, the plugin will simply throw an error, thereby stopping the bundling process. + * If an `errorHandler` callback is provided, compilation will continue, unless an error is + * thrown in the provided callback. + * + * To allow compilation to continue but still emit a warning, set this option to the following: + * + * ```js + * (err) => { + * console.warn(err); + * } + * ``` + */ + errorHandler?: (err: Error) => void; + + /** + * Options related to managing the Sentry releases for a build. + * + * More info: https://docs.sentry.io/product/releases/ + */ + release?: { + /** + * Unique identifier for the release you want to create. + * + * This value can also be specified via the `SENTRY_RELEASE` environment variable. + * + * Defaults to automatically detecting a value for your environment. + * This includes values for Cordova, Heroku, AWS CodeBuild, CircleCI, Xcode, and Gradle, and otherwise uses the git `HEAD`'s commit SHA. + * (the latter requires access to git CLI and for the root directory to be a valid repository) + * + * If you didn't provide a value and the plugin can't automatically detect one, no release will be created. + */ + name?: string; + }; + /** * If this flag is `true`, and an auth token is detected, the Sentry SDK will * automatically generate and upload source maps to Sentry during a production build. diff --git a/packages/nuxt/src/vite/sourceMaps.ts b/packages/nuxt/src/vite/sourceMaps.ts index 0b264e822bcc..4f1e1184e637 100644 --- a/packages/nuxt/src/vite/sourceMaps.ts +++ b/packages/nuxt/src/vite/sourceMaps.ts @@ -93,6 +93,12 @@ export function getPluginOptions( telemetry: sourceMapsUploadOptions.telemetry ?? true, url: sourceMapsUploadOptions.url ?? process.env.SENTRY_URL, debug: moduleOptions.debug ?? false, + silent: sourceMapsUploadOptions.silent ?? false, + errorHandler: sourceMapsUploadOptions.errorHandler, + release: { + name: sourceMapsUploadOptions.release?.name, + ...moduleOptions?.unstable_sentryBundlerPluginOptions?.release, + }, _metaOptions: { telemetry: { metaFramework: 'nuxt', From be91f9e877abee7f914182d2e8e04854e29c0718 Mon Sep 17 00:00:00 2001 From: getsentry-bot Date: Mon, 3 Feb 2025 14:41:35 +0000 Subject: [PATCH 6/8] release: 9.0.0-alpha.1 --- .../browser-integration-tests/package.json | 4 ++-- .../bundle-analyzer-scenarios/package.json | 2 +- dev-packages/clear-cache-gh-action/package.json | 2 +- dev-packages/e2e-tests/package.json | 2 +- .../external-contributor-gh-action/package.json | 2 +- dev-packages/node-integration-tests/package.json | 8 ++++---- dev-packages/rollup-utils/package.json | 2 +- dev-packages/size-limit-gh-action/package.json | 2 +- dev-packages/test-utils/package.json | 4 ++-- lerna.json | 2 +- packages/angular/package.json | 6 +++--- packages/astro/package.json | 8 ++++---- packages/aws-serverless/package.json | 6 +++--- packages/browser-utils/package.json | 4 ++-- packages/browser/package.json | 14 +++++++------- packages/bun/package.json | 8 ++++---- packages/cloudflare/package.json | 4 ++-- packages/core/package.json | 2 +- packages/deno/package.json | 4 ++-- packages/ember/package.json | 6 +++--- packages/eslint-config-sdk/package.json | 6 +++--- packages/eslint-plugin-sdk/package.json | 2 +- packages/feedback/package.json | 4 ++-- packages/gatsby/package.json | 6 +++--- packages/google-cloud-serverless/package.json | 6 +++--- packages/integration-shims/package.json | 4 ++-- packages/nestjs/package.json | 6 +++--- packages/nextjs/package.json | 14 +++++++------- packages/node/package.json | 6 +++--- packages/nuxt/package.json | 12 ++++++------ packages/opentelemetry/package.json | 4 ++-- packages/profiling-node/package.json | 8 ++++---- packages/react/package.json | 6 +++--- packages/remix/package.json | 10 +++++----- packages/replay-canvas/package.json | 6 +++--- packages/replay-internal/package.json | 8 ++++---- packages/replay-worker/package.json | 2 +- packages/solid/package.json | 6 +++--- packages/solidstart/package.json | 10 +++++----- packages/svelte/package.json | 6 +++--- packages/sveltekit/package.json | 14 ++++++++------ packages/types/package.json | 4 ++-- packages/typescript/package.json | 2 +- packages/vercel-edge/package.json | 6 +++--- packages/vue/package.json | 6 +++--- packages/wasm/package.json | 6 +++--- 46 files changed, 132 insertions(+), 130 deletions(-) diff --git a/dev-packages/browser-integration-tests/package.json b/dev-packages/browser-integration-tests/package.json index 77cf36078a2a..2238879556c8 100644 --- a/dev-packages/browser-integration-tests/package.json +++ b/dev-packages/browser-integration-tests/package.json @@ -1,6 +1,6 @@ { "name": "@sentry-internal/browser-integration-tests", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "main": "index.js", "license": "MIT", "engines": { @@ -42,7 +42,7 @@ "@babel/preset-typescript": "^7.16.7", "@playwright/test": "~1.50.0", "@sentry-internal/rrweb": "2.31.0", - "@sentry/browser": "9.0.0-alpha.0", + "@sentry/browser": "9.0.0-alpha.1", "axios": "1.7.7", "babel-loader": "^8.2.2", "fflate": "0.8.2", diff --git a/dev-packages/bundle-analyzer-scenarios/package.json b/dev-packages/bundle-analyzer-scenarios/package.json index fc9c659d8509..3d7236b6789b 100644 --- a/dev-packages/bundle-analyzer-scenarios/package.json +++ b/dev-packages/bundle-analyzer-scenarios/package.json @@ -1,6 +1,6 @@ { "name": "@sentry-internal/bundle-analyzer-scenarios", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "description": "Scenarios to test bundle analysis with", "repository": "git://github.com/getsentry/sentry-javascript.git", "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/dev-packages/bundle-analyzer-scenarios", diff --git a/dev-packages/clear-cache-gh-action/package.json b/dev-packages/clear-cache-gh-action/package.json index 47764f3756c6..9682a382d2b3 100644 --- a/dev-packages/clear-cache-gh-action/package.json +++ b/dev-packages/clear-cache-gh-action/package.json @@ -1,7 +1,7 @@ { "name": "@sentry-internal/clear-cache-gh-action", "description": "An internal Github Action to clear GitHub caches.", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "license": "MIT", "engines": { "node": ">=18" diff --git a/dev-packages/e2e-tests/package.json b/dev-packages/e2e-tests/package.json index 669be320b4a1..1cf134ecd99b 100644 --- a/dev-packages/e2e-tests/package.json +++ b/dev-packages/e2e-tests/package.json @@ -1,6 +1,6 @@ { "name": "@sentry-internal/e2e-tests", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "license": "MIT", "private": true, "scripts": { diff --git a/dev-packages/external-contributor-gh-action/package.json b/dev-packages/external-contributor-gh-action/package.json index aa3aeec3d29f..fd0aba61b60a 100644 --- a/dev-packages/external-contributor-gh-action/package.json +++ b/dev-packages/external-contributor-gh-action/package.json @@ -1,7 +1,7 @@ { "name": "@sentry-internal/external-contributor-gh-action", "description": "An internal Github Action to add external contributors to the CHANGELOG.md file.", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "license": "MIT", "engines": { "node": ">=18" diff --git a/dev-packages/node-integration-tests/package.json b/dev-packages/node-integration-tests/package.json index 7b7fe3482200..1a670863aa61 100644 --- a/dev-packages/node-integration-tests/package.json +++ b/dev-packages/node-integration-tests/package.json @@ -1,6 +1,6 @@ { "name": "@sentry-internal/node-integration-tests", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "license": "MIT", "engines": { "node": ">=18" @@ -31,9 +31,9 @@ "@nestjs/common": "10.4.6", "@nestjs/core": "10.4.6", "@nestjs/platform-express": "10.4.6", - "@sentry/aws-serverless": "9.0.0-alpha.0", - "@sentry/core": "9.0.0-alpha.0", - "@sentry/node": "9.0.0-alpha.0", + "@sentry/aws-serverless": "9.0.0-alpha.1", + "@sentry/core": "9.0.0-alpha.1", + "@sentry/node": "9.0.0-alpha.1", "@types/mongodb": "^3.6.20", "@types/mysql": "^2.15.21", "@types/pg": "^8.6.5", diff --git a/dev-packages/rollup-utils/package.json b/dev-packages/rollup-utils/package.json index 30c4e5c8fc34..6bc4ab91edd2 100644 --- a/dev-packages/rollup-utils/package.json +++ b/dev-packages/rollup-utils/package.json @@ -1,6 +1,6 @@ { "name": "@sentry-internal/rollup-utils", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "description": "Rollup utilities used at Sentry for the Sentry JavaScript SDK", "repository": "git://github.com/getsentry/sentry-javascript.git", "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/rollup-utils", diff --git a/dev-packages/size-limit-gh-action/package.json b/dev-packages/size-limit-gh-action/package.json index 9021bc543c5d..e5dbfda6fa94 100644 --- a/dev-packages/size-limit-gh-action/package.json +++ b/dev-packages/size-limit-gh-action/package.json @@ -1,7 +1,7 @@ { "name": "@sentry-internal/size-limit-gh-action", "description": "An internal Github Action to compare the current size of a PR against the one on develop.", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "license": "MIT", "engines": { "node": ">=18" diff --git a/dev-packages/test-utils/package.json b/dev-packages/test-utils/package.json index a0d9d7e51def..df192872c137 100644 --- a/dev-packages/test-utils/package.json +++ b/dev-packages/test-utils/package.json @@ -1,6 +1,6 @@ { "private": true, - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "name": "@sentry-internal/test-utils", "author": "Sentry", "license": "MIT", @@ -45,7 +45,7 @@ }, "devDependencies": { "@playwright/test": "~1.50.0", - "@sentry/core": "9.0.0-alpha.0" + "@sentry/core": "9.0.0-alpha.1" }, "volta": { "extends": "../../package.json" diff --git a/lerna.json b/lerna.json index aeec6a76eb9b..4f1efc901a12 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { "$schema": "node_modules/lerna/schemas/lerna-schema.json", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "npmClient": "yarn" } diff --git a/packages/angular/package.json b/packages/angular/package.json index 80626cc5cdbe..adc42d84ff5b 100644 --- a/packages/angular/package.json +++ b/packages/angular/package.json @@ -1,6 +1,6 @@ { "name": "@sentry/angular", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "description": "Official Sentry SDK for Angular", "repository": "git://github.com/getsentry/sentry-javascript.git", "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/angular", @@ -21,8 +21,8 @@ "rxjs": "^6.5.5 || ^7.x" }, "dependencies": { - "@sentry/browser": "9.0.0-alpha.0", - "@sentry/core": "9.0.0-alpha.0", + "@sentry/browser": "9.0.0-alpha.1", + "@sentry/core": "9.0.0-alpha.1", "tslib": "^2.4.1" }, "devDependencies": { diff --git a/packages/astro/package.json b/packages/astro/package.json index 316907ee1d30..b843c2d844b1 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "@sentry/astro", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "description": "Official Sentry SDK for Astro", "repository": "git://github.com/getsentry/sentry-javascript.git", "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/astro", @@ -56,9 +56,9 @@ "astro": ">=3.x || >=4.0.0-beta || >=5.x" }, "dependencies": { - "@sentry/browser": "9.0.0-alpha.0", - "@sentry/core": "9.0.0-alpha.0", - "@sentry/node": "9.0.0-alpha.0", + "@sentry/browser": "9.0.0-alpha.1", + "@sentry/core": "9.0.0-alpha.1", + "@sentry/node": "9.0.0-alpha.1", "@sentry/vite-plugin": "^2.22.6" }, "devDependencies": { diff --git a/packages/aws-serverless/package.json b/packages/aws-serverless/package.json index a441069071e1..b5ff95cf0428 100644 --- a/packages/aws-serverless/package.json +++ b/packages/aws-serverless/package.json @@ -1,6 +1,6 @@ { "name": "@sentry/aws-serverless", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "description": "Official Sentry SDK for AWS Lambda and AWS Serverless Environments", "repository": "git://github.com/getsentry/sentry-javascript.git", "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/serverless", @@ -68,8 +68,8 @@ "@opentelemetry/instrumentation": "^0.57.1", "@opentelemetry/instrumentation-aws-lambda": "0.50.2", "@opentelemetry/instrumentation-aws-sdk": "0.49.0", - "@sentry/core": "9.0.0-alpha.0", - "@sentry/node": "9.0.0-alpha.0", + "@sentry/core": "9.0.0-alpha.1", + "@sentry/node": "9.0.0-alpha.1", "@types/aws-lambda": "^8.10.62" }, "devDependencies": { diff --git a/packages/browser-utils/package.json b/packages/browser-utils/package.json index b96ebb51962c..0a5cd93fb1ba 100644 --- a/packages/browser-utils/package.json +++ b/packages/browser-utils/package.json @@ -1,6 +1,6 @@ { "name": "@sentry-internal/browser-utils", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "description": "Browser Utilities for all Sentry JavaScript SDKs", "repository": "git://github.com/getsentry/sentry-javascript.git", "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/browser-utils", @@ -39,7 +39,7 @@ "access": "public" }, "dependencies": { - "@sentry/core": "9.0.0-alpha.0" + "@sentry/core": "9.0.0-alpha.1" }, "scripts": { "build": "run-p build:transpile build:types", diff --git a/packages/browser/package.json b/packages/browser/package.json index 33c3e0e3e350..6833988bf487 100644 --- a/packages/browser/package.json +++ b/packages/browser/package.json @@ -1,6 +1,6 @@ { "name": "@sentry/browser", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "description": "Official Sentry SDK for browsers", "repository": "git://github.com/getsentry/sentry-javascript.git", "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/browser", @@ -39,14 +39,14 @@ "access": "public" }, "dependencies": { - "@sentry-internal/browser-utils": "9.0.0-alpha.0", - "@sentry-internal/feedback": "9.0.0-alpha.0", - "@sentry-internal/replay": "9.0.0-alpha.0", - "@sentry-internal/replay-canvas": "9.0.0-alpha.0", - "@sentry/core": "9.0.0-alpha.0" + "@sentry-internal/browser-utils": "9.0.0-alpha.1", + "@sentry-internal/feedback": "9.0.0-alpha.1", + "@sentry-internal/replay": "9.0.0-alpha.1", + "@sentry-internal/replay-canvas": "9.0.0-alpha.1", + "@sentry/core": "9.0.0-alpha.1" }, "devDependencies": { - "@sentry-internal/integration-shims": "9.0.0-alpha.0", + "@sentry-internal/integration-shims": "9.0.0-alpha.1", "fake-indexeddb": "^4.0.1" }, "scripts": { diff --git a/packages/bun/package.json b/packages/bun/package.json index a3f131277e50..577aa9aa4b24 100644 --- a/packages/bun/package.json +++ b/packages/bun/package.json @@ -1,6 +1,6 @@ { "name": "@sentry/bun", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "description": "Official Sentry SDK for bun", "repository": "git://github.com/getsentry/sentry-javascript.git", "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/bun", @@ -39,9 +39,9 @@ "access": "public" }, "dependencies": { - "@sentry/core": "9.0.0-alpha.0", - "@sentry/node": "9.0.0-alpha.0", - "@sentry/opentelemetry": "9.0.0-alpha.0" + "@sentry/core": "9.0.0-alpha.1", + "@sentry/node": "9.0.0-alpha.1", + "@sentry/opentelemetry": "9.0.0-alpha.1" }, "devDependencies": { "bun-types": "latest" diff --git a/packages/cloudflare/package.json b/packages/cloudflare/package.json index 2e32fc07ff1e..6d9710da0aea 100644 --- a/packages/cloudflare/package.json +++ b/packages/cloudflare/package.json @@ -1,6 +1,6 @@ { "name": "@sentry/cloudflare", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "description": "Official Sentry SDK for Cloudflare Workers and Pages", "repository": "git://github.com/getsentry/sentry-javascript.git", "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/cloudflare", @@ -39,7 +39,7 @@ "access": "public" }, "dependencies": { - "@sentry/core": "9.0.0-alpha.0" + "@sentry/core": "9.0.0-alpha.1" }, "optionalDependencies": { "@cloudflare/workers-types": "^4.x" diff --git a/packages/core/package.json b/packages/core/package.json index 7724f703833e..852dad9df2bf 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@sentry/core", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "description": "Base implementation for all Sentry JavaScript SDKs", "repository": "git://github.com/getsentry/sentry-javascript.git", "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/core", diff --git a/packages/deno/package.json b/packages/deno/package.json index 979aac81380a..1b73b287bd2a 100644 --- a/packages/deno/package.json +++ b/packages/deno/package.json @@ -1,6 +1,6 @@ { "name": "@sentry/deno", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "description": "Official Sentry SDK for Deno", "repository": "git://github.com/getsentry/sentry-javascript.git", "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/deno", @@ -24,7 +24,7 @@ "/build" ], "dependencies": { - "@sentry/core": "9.0.0-alpha.0" + "@sentry/core": "9.0.0-alpha.1" }, "scripts": { "deno-types": "node ./scripts/download-deno-types.mjs", diff --git a/packages/ember/package.json b/packages/ember/package.json index 57caba8029e4..ffeab7547a91 100644 --- a/packages/ember/package.json +++ b/packages/ember/package.json @@ -1,6 +1,6 @@ { "name": "@sentry/ember", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "description": "Official Sentry SDK for Ember.js", "repository": "git://github.com/getsentry/sentry-javascript.git", "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/ember", @@ -32,8 +32,8 @@ "dependencies": { "@babel/core": "^7.24.4", "@embroider/macros": "^1.16.0", - "@sentry/browser": "9.0.0-alpha.0", - "@sentry/core": "9.0.0-alpha.0", + "@sentry/browser": "9.0.0-alpha.1", + "@sentry/core": "9.0.0-alpha.1", "ember-auto-import": "^2.7.2", "ember-cli-babel": "^8.2.0", "ember-cli-htmlbars": "^6.1.1", diff --git a/packages/eslint-config-sdk/package.json b/packages/eslint-config-sdk/package.json index 97b01fdbac88..efd6cc131cc6 100644 --- a/packages/eslint-config-sdk/package.json +++ b/packages/eslint-config-sdk/package.json @@ -1,6 +1,6 @@ { "name": "@sentry-internal/eslint-config-sdk", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "description": "Official Sentry SDK eslint config", "repository": "git://github.com/getsentry/sentry-javascript.git", "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/eslint-config-sdk", @@ -22,8 +22,8 @@ "access": "public" }, "dependencies": { - "@sentry-internal/eslint-plugin-sdk": "9.0.0-alpha.0", - "@sentry-internal/typescript": "9.0.0-alpha.0", + "@sentry-internal/eslint-plugin-sdk": "9.0.0-alpha.1", + "@sentry-internal/typescript": "9.0.0-alpha.1", "@typescript-eslint/eslint-plugin": "^5.48.0", "@typescript-eslint/parser": "^5.48.0", "eslint-config-prettier": "^6.11.0", diff --git a/packages/eslint-plugin-sdk/package.json b/packages/eslint-plugin-sdk/package.json index 5fd9990b411c..6b872062187d 100644 --- a/packages/eslint-plugin-sdk/package.json +++ b/packages/eslint-plugin-sdk/package.json @@ -1,6 +1,6 @@ { "name": "@sentry-internal/eslint-plugin-sdk", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "description": "Official Sentry SDK eslint plugin", "repository": "git://github.com/getsentry/sentry-javascript.git", "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/eslint-plugin-sdk", diff --git a/packages/feedback/package.json b/packages/feedback/package.json index d2a72405c400..9bb1e063cbd0 100644 --- a/packages/feedback/package.json +++ b/packages/feedback/package.json @@ -1,6 +1,6 @@ { "name": "@sentry-internal/feedback", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "description": "Sentry SDK integration for user feedback", "repository": "git://github.com/getsentry/sentry-javascript.git", "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/feedback", @@ -39,7 +39,7 @@ "access": "public" }, "dependencies": { - "@sentry/core": "9.0.0-alpha.0" + "@sentry/core": "9.0.0-alpha.1" }, "devDependencies": { "preact": "^10.19.4" diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index 4231b055c59b..c613ec213a4d 100644 --- a/packages/gatsby/package.json +++ b/packages/gatsby/package.json @@ -1,6 +1,6 @@ { "name": "@sentry/gatsby", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "description": "Official Sentry SDK for Gatsby.js", "repository": "git://github.com/getsentry/sentry-javascript.git", "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/gatsby", @@ -45,8 +45,8 @@ "access": "public" }, "dependencies": { - "@sentry/core": "9.0.0-alpha.0", - "@sentry/react": "9.0.0-alpha.0", + "@sentry/core": "9.0.0-alpha.1", + "@sentry/react": "9.0.0-alpha.1", "@sentry/webpack-plugin": "2.22.7" }, "peerDependencies": { diff --git a/packages/google-cloud-serverless/package.json b/packages/google-cloud-serverless/package.json index 0f24baa37e8b..ead202d9926f 100644 --- a/packages/google-cloud-serverless/package.json +++ b/packages/google-cloud-serverless/package.json @@ -1,6 +1,6 @@ { "name": "@sentry/google-cloud-serverless", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "description": "Official Sentry SDK for Google Cloud Functions", "repository": "git://github.com/getsentry/sentry-javascript.git", "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/google-cloud-serverless", @@ -48,8 +48,8 @@ "access": "public" }, "dependencies": { - "@sentry/core": "9.0.0-alpha.0", - "@sentry/node": "9.0.0-alpha.0", + "@sentry/core": "9.0.0-alpha.1", + "@sentry/node": "9.0.0-alpha.1", "@types/express": "^4.17.14" }, "devDependencies": { diff --git a/packages/integration-shims/package.json b/packages/integration-shims/package.json index 4f2c8c3af599..84ae3e377e08 100644 --- a/packages/integration-shims/package.json +++ b/packages/integration-shims/package.json @@ -1,6 +1,6 @@ { "name": "@sentry-internal/integration-shims", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "description": "Shims for integrations in Sentry SDK.", "main": "build/cjs/index.js", "module": "build/esm/index.js", @@ -55,7 +55,7 @@ "url": "https://github.com/getsentry/sentry-javascript/issues" }, "dependencies": { - "@sentry/core": "9.0.0-alpha.0" + "@sentry/core": "9.0.0-alpha.1" }, "engines": { "node": ">=18" diff --git a/packages/nestjs/package.json b/packages/nestjs/package.json index 84e572984005..23f8cabfe903 100644 --- a/packages/nestjs/package.json +++ b/packages/nestjs/package.json @@ -1,6 +1,6 @@ { "name": "@sentry/nestjs", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "description": "Official Sentry SDK for NestJS", "repository": "git://github.com/getsentry/sentry-javascript.git", "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/nestjs", @@ -47,8 +47,8 @@ "@opentelemetry/core": "^1.30.1", "@opentelemetry/instrumentation": "^0.57.1", "@opentelemetry/instrumentation-nestjs-core": "0.44.0", - "@sentry/core": "9.0.0-alpha.0", - "@sentry/node": "9.0.0-alpha.0" + "@sentry/core": "9.0.0-alpha.1", + "@sentry/node": "9.0.0-alpha.1" }, "devDependencies": { "@nestjs/common": "^8.0.0 || ^9.0.0 || ^10.0.0", diff --git a/packages/nextjs/package.json b/packages/nextjs/package.json index 51b57300a532..b662693e9682 100644 --- a/packages/nextjs/package.json +++ b/packages/nextjs/package.json @@ -1,6 +1,6 @@ { "name": "@sentry/nextjs", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "description": "Official Sentry SDK for Next.js", "repository": "git://github.com/getsentry/sentry-javascript.git", "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/nextjs", @@ -79,12 +79,12 @@ "@opentelemetry/api": "^1.9.0", "@opentelemetry/semantic-conventions": "^1.28.0", "@rollup/plugin-commonjs": "28.0.1", - "@sentry-internal/browser-utils": "9.0.0-alpha.0", - "@sentry/core": "9.0.0-alpha.0", - "@sentry/node": "9.0.0-alpha.0", - "@sentry/opentelemetry": "9.0.0-alpha.0", - "@sentry/react": "9.0.0-alpha.0", - "@sentry/vercel-edge": "9.0.0-alpha.0", + "@sentry-internal/browser-utils": "9.0.0-alpha.1", + "@sentry/core": "9.0.0-alpha.1", + "@sentry/node": "9.0.0-alpha.1", + "@sentry/opentelemetry": "9.0.0-alpha.1", + "@sentry/react": "9.0.0-alpha.1", + "@sentry/vercel-edge": "9.0.0-alpha.1", "@sentry/webpack-plugin": "2.22.7", "chalk": "3.0.0", "resolve": "1.22.8", diff --git a/packages/node/package.json b/packages/node/package.json index d7260379a48f..7aa7af0b49f4 100644 --- a/packages/node/package.json +++ b/packages/node/package.json @@ -1,6 +1,6 @@ { "name": "@sentry/node", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "description": "Sentry Node SDK using OpenTelemetry for performance instrumentation", "repository": "git://github.com/getsentry/sentry-javascript.git", "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/node", @@ -96,8 +96,8 @@ "@opentelemetry/sdk-trace-base": "^1.30.1", "@opentelemetry/semantic-conventions": "^1.28.0", "@prisma/instrumentation": "6.2.1", - "@sentry/core": "9.0.0-alpha.0", - "@sentry/opentelemetry": "9.0.0-alpha.0", + "@sentry/core": "9.0.0-alpha.1", + "@sentry/opentelemetry": "9.0.0-alpha.1", "import-in-the-middle": "^1.12.0" }, "devDependencies": { diff --git a/packages/nuxt/package.json b/packages/nuxt/package.json index eabcb85da71e..053c9ee992ac 100644 --- a/packages/nuxt/package.json +++ b/packages/nuxt/package.json @@ -1,6 +1,6 @@ { "name": "@sentry/nuxt", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "description": "Official Sentry SDK for Nuxt (EXPERIMENTAL)", "repository": "git://github.com/getsentry/sentry-javascript.git", "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/nuxt", @@ -43,13 +43,13 @@ }, "dependencies": { "@nuxt/kit": "^3.13.2", - "@sentry/browser": "9.0.0-alpha.0", - "@sentry/core": "9.0.0-alpha.0", - "@sentry/node": "9.0.0-alpha.0", - "@sentry/opentelemetry": "9.0.0-alpha.0", + "@sentry/browser": "9.0.0-alpha.1", + "@sentry/core": "9.0.0-alpha.1", + "@sentry/node": "9.0.0-alpha.1", + "@sentry/opentelemetry": "9.0.0-alpha.1", "@sentry/rollup-plugin": "2.22.7", "@sentry/vite-plugin": "2.22.6", - "@sentry/vue": "9.0.0-alpha.0" + "@sentry/vue": "9.0.0-alpha.1" }, "devDependencies": { "@nuxt/module-builder": "^0.8.4", diff --git a/packages/opentelemetry/package.json b/packages/opentelemetry/package.json index 06d1034ecc06..8ec93beef273 100644 --- a/packages/opentelemetry/package.json +++ b/packages/opentelemetry/package.json @@ -1,6 +1,6 @@ { "name": "@sentry/opentelemetry", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "description": "Official Sentry utilities for OpenTelemetry", "repository": "git://github.com/getsentry/sentry-javascript.git", "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/opentelemetry", @@ -39,7 +39,7 @@ "access": "public" }, "dependencies": { - "@sentry/core": "9.0.0-alpha.0" + "@sentry/core": "9.0.0-alpha.1" }, "peerDependencies": { "@opentelemetry/api": "^1.9.0", diff --git a/packages/profiling-node/package.json b/packages/profiling-node/package.json index f6713484381b..7966ffe1398f 100644 --- a/packages/profiling-node/package.json +++ b/packages/profiling-node/package.json @@ -1,6 +1,6 @@ { "name": "@sentry/profiling-node", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "description": "Official Sentry SDK for Node.js Profiling", "repository": "git://github.com/getsentry/sentry-javascript.git", "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/profiling-node", @@ -62,9 +62,9 @@ "test": "jest --config jest.config.js" }, "dependencies": { - "@sentry/core": "9.0.0-alpha.0", - "@sentry/node": "9.0.0-alpha.0", - "@sentry-internal/node-cpu-profiler": "^2.0.0" + "@sentry-internal/node-cpu-profiler": "^2.0.0", + "@sentry/core": "9.0.0-alpha.1", + "@sentry/node": "9.0.0-alpha.1" }, "devDependencies": { "@types/node": "^18.19.1" diff --git a/packages/react/package.json b/packages/react/package.json index 43937b525be2..b681d3c18aa3 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@sentry/react", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "description": "Official Sentry SDK for React.js", "repository": "git://github.com/getsentry/sentry-javascript.git", "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/react", @@ -39,8 +39,8 @@ "access": "public" }, "dependencies": { - "@sentry/browser": "9.0.0-alpha.0", - "@sentry/core": "9.0.0-alpha.0", + "@sentry/browser": "9.0.0-alpha.1", + "@sentry/core": "9.0.0-alpha.1", "hoist-non-react-statics": "^3.3.2" }, "peerDependencies": { diff --git a/packages/remix/package.json b/packages/remix/package.json index c40305ee8140..43a647b19b1c 100644 --- a/packages/remix/package.json +++ b/packages/remix/package.json @@ -1,6 +1,6 @@ { "name": "@sentry/remix", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "description": "Official Sentry SDK for Remix", "repository": "git://github.com/getsentry/sentry-javascript.git", "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/remix", @@ -55,10 +55,10 @@ "@opentelemetry/api": "^1.9.0", "@remix-run/router": "1.x", "@sentry/cli": "^2.41.1", - "@sentry/core": "9.0.0-alpha.0", - "@sentry/node": "9.0.0-alpha.0", - "@sentry/opentelemetry": "9.0.0-alpha.0", - "@sentry/react": "9.0.0-alpha.0", + "@sentry/core": "9.0.0-alpha.1", + "@sentry/node": "9.0.0-alpha.1", + "@sentry/opentelemetry": "9.0.0-alpha.1", + "@sentry/react": "9.0.0-alpha.1", "glob": "^10.3.4", "opentelemetry-instrumentation-remix": "0.8.0", "yargs": "^17.6.0" diff --git a/packages/replay-canvas/package.json b/packages/replay-canvas/package.json index c7345547378f..c50f8df9baf7 100644 --- a/packages/replay-canvas/package.json +++ b/packages/replay-canvas/package.json @@ -1,6 +1,6 @@ { "name": "@sentry-internal/replay-canvas", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "description": "Replay canvas integration", "main": "build/npm/cjs/index.js", "module": "build/npm/esm/index.js", @@ -68,8 +68,8 @@ "@sentry-internal/rrweb": "2.31.0" }, "dependencies": { - "@sentry-internal/replay": "9.0.0-alpha.0", - "@sentry/core": "9.0.0-alpha.0" + "@sentry-internal/replay": "9.0.0-alpha.1", + "@sentry/core": "9.0.0-alpha.1" }, "engines": { "node": ">=18" diff --git a/packages/replay-internal/package.json b/packages/replay-internal/package.json index 15307b073666..96a0bd5647c9 100644 --- a/packages/replay-internal/package.json +++ b/packages/replay-internal/package.json @@ -1,6 +1,6 @@ { "name": "@sentry-internal/replay", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "description": "User replays for Sentry", "main": "build/npm/cjs/index.js", "module": "build/npm/esm/index.js", @@ -68,7 +68,7 @@ "homepage": "https://docs.sentry.io/platforms/javascript/session-replay/", "devDependencies": { "@babel/core": "^7.17.5", - "@sentry-internal/replay-worker": "9.0.0-alpha.0", + "@sentry-internal/replay-worker": "9.0.0-alpha.1", "@sentry-internal/rrweb": "2.31.0", "@sentry-internal/rrweb-snapshot": "2.31.0", "fflate": "0.8.2", @@ -76,8 +76,8 @@ "jsdom-worker": "^0.2.1" }, "dependencies": { - "@sentry-internal/browser-utils": "9.0.0-alpha.0", - "@sentry/core": "9.0.0-alpha.0" + "@sentry-internal/browser-utils": "9.0.0-alpha.1", + "@sentry/core": "9.0.0-alpha.1" }, "engines": { "node": ">=18" diff --git a/packages/replay-worker/package.json b/packages/replay-worker/package.json index f161467d64be..69ec71d111d0 100644 --- a/packages/replay-worker/package.json +++ b/packages/replay-worker/package.json @@ -1,6 +1,6 @@ { "name": "@sentry-internal/replay-worker", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "description": "Worker for @sentry-internal/replay", "main": "build/esm/index.js", "module": "build/esm/index.js", diff --git a/packages/solid/package.json b/packages/solid/package.json index dbc847d346cd..02ba4583005f 100644 --- a/packages/solid/package.json +++ b/packages/solid/package.json @@ -1,6 +1,6 @@ { "name": "@sentry/solid", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "description": "Official Sentry SDK for Solid", "repository": "git://github.com/getsentry/sentry-javascript.git", "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/solid", @@ -44,8 +44,8 @@ "access": "public" }, "dependencies": { - "@sentry/browser": "9.0.0-alpha.0", - "@sentry/core": "9.0.0-alpha.0" + "@sentry/browser": "9.0.0-alpha.1", + "@sentry/core": "9.0.0-alpha.1" }, "peerDependencies": { "@solidjs/router": "^0.13.4", diff --git a/packages/solidstart/package.json b/packages/solidstart/package.json index 35a060b9e99b..0ad76d1b06dd 100644 --- a/packages/solidstart/package.json +++ b/packages/solidstart/package.json @@ -1,6 +1,6 @@ { "name": "@sentry/solidstart", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "description": "Official Sentry SDK for Solid Start", "repository": "git://github.com/getsentry/sentry-javascript.git", "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/solidstart", @@ -66,10 +66,10 @@ } }, "dependencies": { - "@sentry/core": "9.0.0-alpha.0", - "@sentry/node": "9.0.0-alpha.0", - "@sentry/opentelemetry": "9.0.0-alpha.0", - "@sentry/solid": "9.0.0-alpha.0", + "@sentry/core": "9.0.0-alpha.1", + "@sentry/node": "9.0.0-alpha.1", + "@sentry/opentelemetry": "9.0.0-alpha.1", + "@sentry/solid": "9.0.0-alpha.1", "@sentry/vite-plugin": "2.22.6" }, "devDependencies": { diff --git a/packages/svelte/package.json b/packages/svelte/package.json index b2d492d6c08d..eb0f5090b838 100644 --- a/packages/svelte/package.json +++ b/packages/svelte/package.json @@ -1,6 +1,6 @@ { "name": "@sentry/svelte", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "description": "Official Sentry SDK for Svelte", "repository": "git://github.com/getsentry/sentry-javascript.git", "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/svelte", @@ -39,8 +39,8 @@ "access": "public" }, "dependencies": { - "@sentry/browser": "9.0.0-alpha.0", - "@sentry/core": "9.0.0-alpha.0", + "@sentry/browser": "9.0.0-alpha.1", + "@sentry/core": "9.0.0-alpha.1", "magic-string": "^0.30.0" }, "peerDependencies": { diff --git a/packages/sveltekit/package.json b/packages/sveltekit/package.json index 94cb6fd32c39..a5352b812a28 100644 --- a/packages/sveltekit/package.json +++ b/packages/sveltekit/package.json @@ -1,6 +1,6 @@ { "name": "@sentry/sveltekit", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "description": "Official Sentry SDK for SvelteKit", "repository": "git://github.com/getsentry/sentry-javascript.git", "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/sveltekit", @@ -9,7 +9,9 @@ "engines": { "node": ">=18" }, - "files": ["/build"], + "files": [ + "/build" + ], "main": "build/cjs/index.server.js", "module": "build/esm/index.server.js", "browser": "build/esm/index.client.js", @@ -38,10 +40,10 @@ } }, "dependencies": { - "@sentry/core": "9.0.0-alpha.0", - "@sentry/node": "9.0.0-alpha.0", - "@sentry/opentelemetry": "9.0.0-alpha.0", - "@sentry/svelte": "9.0.0-alpha.0", + "@sentry/core": "9.0.0-alpha.1", + "@sentry/node": "9.0.0-alpha.1", + "@sentry/opentelemetry": "9.0.0-alpha.1", + "@sentry/svelte": "9.0.0-alpha.1", "@sentry/vite-plugin": "2.22.6", "magic-string": "0.30.7", "magicast": "0.2.8", diff --git a/packages/types/package.json b/packages/types/package.json index edfa3f034810..281a225e19d8 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@sentry/types", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "description": "Types for all Sentry JavaScript SDKs", "repository": "git://github.com/getsentry/sentry-javascript.git", "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/types", @@ -56,7 +56,7 @@ "yalc:publish": "yalc publish --push --sig" }, "dependencies": { - "@sentry/core": "9.0.0-alpha.0" + "@sentry/core": "9.0.0-alpha.1" }, "volta": { "extends": "../../package.json" diff --git a/packages/typescript/package.json b/packages/typescript/package.json index cc18fd6ab488..028cdf4fc741 100644 --- a/packages/typescript/package.json +++ b/packages/typescript/package.json @@ -1,6 +1,6 @@ { "name": "@sentry-internal/typescript", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "description": "Typescript configuration used at Sentry", "repository": "git://github.com/getsentry/sentry-javascript.git", "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/typescript", diff --git a/packages/vercel-edge/package.json b/packages/vercel-edge/package.json index 7878acf97cce..4e544863b270 100644 --- a/packages/vercel-edge/package.json +++ b/packages/vercel-edge/package.json @@ -1,6 +1,6 @@ { "name": "@sentry/vercel-edge", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "description": "Official Sentry SDK for the Vercel Edge Runtime", "repository": "git://github.com/getsentry/sentry-javascript.git", "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/vercel-edge", @@ -40,7 +40,7 @@ }, "dependencies": { "@opentelemetry/api": "^1.9.0", - "@sentry/core": "9.0.0-alpha.0" + "@sentry/core": "9.0.0-alpha.1" }, "devDependencies": { "@edge-runtime/types": "3.0.1", @@ -48,7 +48,7 @@ "@opentelemetry/resources": "^1.30.1", "@opentelemetry/sdk-trace-base": "^1.30.1", "@opentelemetry/semantic-conventions": "^1.28.0", - "@sentry/opentelemetry": "9.0.0-alpha.0" + "@sentry/opentelemetry": "9.0.0-alpha.1" }, "scripts": { "build": "run-p build:transpile build:types", diff --git a/packages/vue/package.json b/packages/vue/package.json index 5a431738253b..7b639f482472 100644 --- a/packages/vue/package.json +++ b/packages/vue/package.json @@ -1,6 +1,6 @@ { "name": "@sentry/vue", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "description": "Official Sentry SDK for Vue.js", "repository": "git://github.com/getsentry/sentry-javascript.git", "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/vue", @@ -39,8 +39,8 @@ "access": "public" }, "dependencies": { - "@sentry/browser": "9.0.0-alpha.0", - "@sentry/core": "9.0.0-alpha.0" + "@sentry/browser": "9.0.0-alpha.1", + "@sentry/core": "9.0.0-alpha.1" }, "peerDependencies": { "pinia": "2.x", diff --git a/packages/wasm/package.json b/packages/wasm/package.json index 6d863483c1c9..b9ba83a39a84 100644 --- a/packages/wasm/package.json +++ b/packages/wasm/package.json @@ -1,6 +1,6 @@ { "name": "@sentry/wasm", - "version": "9.0.0-alpha.0", + "version": "9.0.0-alpha.1", "description": "Support for WASM.", "repository": "git://github.com/getsentry/sentry-javascript.git", "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/wasm", @@ -39,8 +39,8 @@ "access": "public" }, "dependencies": { - "@sentry/browser": "9.0.0-alpha.0", - "@sentry/core": "9.0.0-alpha.0" + "@sentry/browser": "9.0.0-alpha.1", + "@sentry/core": "9.0.0-alpha.1" }, "scripts": { "build": "run-p build:transpile build:bundle build:types", From acd8b000984390110f8bdc36a29ea75791e6f75a Mon Sep 17 00:00:00 2001 From: Daniel Griesser Date: Mon, 3 Feb 2025 16:43:18 +0100 Subject: [PATCH 7/8] chore: Add external contributor to CHANGELOG.md (#15266) This PR adds the external contributor to the CHANGELOG.md file, so that they are credited for their contribution. See #15246 --------- Co-authored-by: s1gr1d <32902192+s1gr1d@users.noreply.github.com> Co-authored-by: Francesco Gringl-Novy --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 54ee78937f08..f633e40348a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,7 @@ - "You miss 100 percent of the chances you don't take. — Wayne Gretzky" — Michael Scott -Work in this release was contributed by @tjhiggins, @chris-basebone, @GrizliK1988, @davidturissini, @nwalters512, @aloisklink, @arturovt, @benjick, @maximepvrt, @mstrokin, @kunal-511, @jahands, @jrandolf, @tannerlinsley, @Zen-cronic and @nathankleyn. Thank you for your contributions! +Work in this release was contributed by @tjhiggins, @chris-basebone, @GrizliK1988, @davidturissini, @nwalters512, @aloisklink, @arturovt, @benjick, @maximepvrt, @mstrokin, @kunal-511, @jahands, @jrandolf, @tannerlinsley, @Zen-cronic, @maxmaxme and @nathankleyn. Thank you for your contributions! ## 9.0.0-alpha.1 From e8c02609819121a495cfa639141d9e150cbd8685 Mon Sep 17 00:00:00 2001 From: Francesco Gringl-Novy Date: Mon, 3 Feb 2025 17:32:16 +0100 Subject: [PATCH 8/8] test: Only run flaky test detection for chromium (#15264) This streamlines this a bit and should be good enough here. --- .github/workflows/flaky-test-detector.yml | 2 ++ .../browser-integration-tests/scripts/detectFlakyTests.ts | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/flaky-test-detector.yml b/.github/workflows/flaky-test-detector.yml index a232e1e735b1..c24f306c98ea 100644 --- a/.github/workflows/flaky-test-detector.yml +++ b/.github/workflows/flaky-test-detector.yml @@ -51,6 +51,8 @@ jobs: - name: Install Playwright uses: ./.github/actions/install-playwright + with: + browsers: 'chromium' - name: Determine changed tests uses: dorny/paths-filter@v3.0.1 diff --git a/dev-packages/browser-integration-tests/scripts/detectFlakyTests.ts b/dev-packages/browser-integration-tests/scripts/detectFlakyTests.ts index 6fa8e8ddd416..1105346562c9 100644 --- a/dev-packages/browser-integration-tests/scripts/detectFlakyTests.ts +++ b/dev-packages/browser-integration-tests/scripts/detectFlakyTests.ts @@ -46,7 +46,9 @@ ${changedPaths.join('\n')} try { await new Promise((resolve, reject) => { const cp = childProcess.spawn( - `npx playwright test ${testPaths.length ? testPaths.join(' ') : './suites'} --repeat-each ${repeatEachCount}`, + `npx playwright test ${ + testPaths.length ? testPaths.join(' ') : './suites' + } --repeat-each ${repeatEachCount} --project=chromium`, { shell: true, cwd, stdio: 'inherit' }, );