-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
feat(deps): bump @sentry/cli from 2.58.4 to 3.0.0 #18512
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -50,7 +50,7 @@ | |
| "@opentelemetry/instrumentation": "^0.208.0", | ||
| "@opentelemetry/semantic-conventions": "^1.37.0", | ||
| "@sentry/browser": "10.30.0", | ||
| "@sentry/cli": "^2.58.4", | ||
| "@sentry/cli": "^3.0.0", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bug: Execute method live parameter now requires boolean onlyIn There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bug: uploadSourceMaps live property removed in CLI v3In Additional Locations (1) |
||
| "@sentry/core": "10.30.0", | ||
| "@sentry/node": "10.30.0", | ||
| "@sentry/react": "10.30.0", | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -68,7 +68,7 @@ | |
| "@opentelemetry/instrumentation": "^0.208.0", | ||
| "@opentelemetry/semantic-conventions": "^1.37.0", | ||
| "@remix-run/router": "1.x", | ||
| "@sentry/cli": "^2.58.2", | ||
| "@sentry/cli": "^3.0.0", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bug: useArtifactBundle option removed in CLI v3In |
||
| "@sentry/core": "10.30.0", | ||
| "@sentry/node": "10.30.0", | ||
| "@sentry/react": "10.30.0", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bug: Breaking import style change not applied for CLI v3
Bumping
@sentry/clito v3.0.0 introduces a breaking change where the package now uses named exports instead of default exports. The codebase still uses the old default import style (import SentryCli from '@sentry/cli'andconst SentryCli = require('@sentry/cli')) inpackages/react-router/src/vite/buildEnd/handleOnBuildEnd.ts,packages/remix/scripts/createRelease.js, andpackages/remix/scripts/injectDebugId.js. These need to be updated to use named imports (import { SentryCli } from '@sentry/cli'orconst { SentryCli } = require('@sentry/cli')).Additional Locations (1)
packages/remix/package.json#L70-L71