Skip to content

Conversation

@github-actions
Copy link
Contributor

@github-actions github-actions bot commented Dec 23, 2025

Bumps scripts/update-cli.sh from 2.58.4 to 3.0.3.

Auto-generated by a dependency updater.

Changelog

3.0.3

Fixes

  • Fixed a bug on Intel-based macOS systems that prevented Sentry CLI from respecting self-signed certificates trusted in the macOS keychain (#3059).

3.0.2

Fixes

  • Fixed a bug on ARM-based macOS systems that prevented Sentry CLI from respecting self-signed certificates trusted in the macOS keychain (#3057).

Versioning Policy Update

Our versioning policy has reclassified the minimum supported self-hosted Sentry version as being part of the public API. Therefore, we will only increase this minimum supported self-hosted Sentry version in a major release of Sentry CLI.

3.0.1

Performance Improvements

  • We switch to a faster compression algorithm (zstd) for uploading size analysis builds (sentry build upload) in preparation for this week's beta release! (#3038)

3.0.0

New Sentry Support Policy

sentry-cli 3.0.0 and above only officially supports Sentry SaaS and Sentry self-hosted versions 25.11.1 and higher. While many Sentry CLI features may, in practice, continue working with some older Sentry versions, continued support for Sentry versions older than 25.11.1 is not guaranteed. Changes which break support for Sentry versions below 25.11.1 may occur in minor or patch releases.

New Versioning Policy

Sentry CLI now defines a semantic versioning policy. We did not explicitly define a versioning policy previously, and this new policy should give more clarity about what can change in minor or patch releases versus what requires a major version bump.

Breaking Changes

  • Removed all sentry-cli files ... and sentry-cli releases files ... subcommands (#2956). These commands provided functionality for managing release files, a feature that has been deprecated in Sentry. Users still using sentry-cli files upload to upload source maps should migrate to sentry-cli sourcemaps upload.
  • Removed the sentry-cli sourcemaps explain command (#2947). The command had been deprecated for some time, since Sentry now has a better in-product debugging flow for source map problems via the "Unminify Code" button, which is displayed on any JavaScript issues which could not be unminified.
  • Removed the sentry-cli send-metric ... subcommands (#3006). These commands have been deprecated, and the data they send is no longer accepted by Sentry.
  • Removed support for the legacy API key authentication method (#2935). Sentry CLI now only supports authenticating with Auth Tokens. If you are using API key authentication via any of the following methods, you need to generate and use an Auth Token, instead:
    • --api-key CLI flag
    • SENTRY_API_KEY environment variable
    • api_key configuration file field
    • apiKey option in the JavaScript API
  • Removed the upload-proguard subcommand's --app-id, --version, --version-code, --android-manifest, and --platform arguments (#2876, #2940, #2948). Users using these arguments should stop using them, as they are unnecessary. The information passed to these arguments is no longer visible in Sentry.
  • Removed the --started argument from the sentry-cli releases finalize command (#2972). This argument is a no-op, so any users using it should simply stop using it.
  • Removed the --use-artifact-bundle flag from sentry-cli sourcemaps upload (#3002). The flag was a no-op that only emitted a deprecation warning.
Node.js Wrapper Breakages

The following changes only apply when using sentry-cli via the npm package sentry/cli:

  • The SentryCli.execute method's live parameter now only takes boolean values (#2971). Setting live to true now behaves like 'rejectOnError' did previously, with a zero exit status resolving the returned promise with "success (live mode)" and a non-zero status rejecting the promise with an error message.

  • The option parameter to Releases.uploadSourceMaps no longer takes a live property (#2971). We now always execute the command with live set to true.

  • Removed the apiKey option from SentryCliOptions (#2935). If you are using apiKey, you need to generate and use an Auth Token via the authToken option, instead.

  • Removed the useArtifactBundle option from SentryCliUploadSourceMapsOptions (#3002). This deprecated option was a no-op that users should simply stop passing.

  • Drop support for Node.js <18. The minimum required Node.js version is now 18.0.0 (#2985).

  • The type export SentryCliReleases has been removed.

  • The JavaScript wrapper now uses named exports instead of default exports (#2989). You need to update your imports:

    // Old (default import)
    const SentryCli = require('sentry/cli');
    
    // New (named import)
    const { SentryCli } = require('sentry/cli');

    For ESM imports:

    // Old
    import SentryCli from 'sentry/cli';
    
    // New
    import { SentryCli } from 'sentry/cli';

Improvements

  • The sentry-cli upload-proguard command now uses chunked uploading by default (#2918). Users who previously set the SENTRY_EXPERIMENTAL_PROGUARD_CHUNK_UPLOAD environment variable to opt into this behavior no longer need to set the variable.
  • We now place source map debug IDs under the source map's debugId field, per the TC39 Debug ID proposal (#3005). This change affects the sentry-cli sourcemaps inject command and, unless --no-rewrite is passed, the sentry-cli sourcemaps upload command. Sentry CLI can still read the debug_id field, but whenever the CLI writes or rewrites a source map, we always use debugId.
  • The sentry-cli build upload command now automatically tracks Sentry plugin versions from the SENTRY_PIPELINE environment variable (#2994). When SENTRY_PIPELINE contains a recognized Sentry plugin (e.g., sentry-gradle-plugin/4.12.0 or sentry-fastlane-plugin/1.2.3), the plugin version is written to the .sentry-cli-metadata.txt file in uploaded build archives, enabling the backend to store metadata for size analysis and build distribution tracking.

Fixes

  • Fixed misleading error message claiming the server doesn't support chunk uploading when the actual error was a non-existent organization (#2930).

@github-actions github-actions bot requested a review from alwx as a code owner December 23, 2025 12:12
@github-actions github-actions bot added the dependencies Pull requests that update a dependency file label Dec 23, 2025
@antonis antonis marked this pull request as draft December 23, 2025 12:14
Copy link
Contributor

@antonis antonis left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Converting to draft and marking as blocked since the 3.0.1 bump has already been merged in v8 (related discussion)
We can target a follow up bump after 3.0.1 on v8 too.

@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-cli.sh branch from 9f5293b to 4af046c Compare December 23, 2025 12:20
@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-cli.sh branch from 4af046c to ee67678 Compare January 5, 2026 22:11
@github-actions github-actions bot changed the title chore(deps): update CLI to v3.0.1 chore(deps): update CLI to v3.0.2 Jan 8, 2026
@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-cli.sh branch from ee67678 to be3ac4e Compare January 8, 2026 03:34
@github-actions github-actions bot changed the title chore(deps): update CLI to v3.0.2 chore(deps): update CLI to v3.0.3 Jan 9, 2026
@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-cli.sh branch from be3ac4e to aea0987 Compare January 9, 2026 03:34
@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-cli.sh branch from aea0987 to 7953219 Compare January 12, 2026 09:36
@antonis antonis changed the base branch from main to v8 January 12, 2026 09:44
@antonis antonis changed the base branch from v8 to main January 12, 2026 09:45
@antonis antonis changed the base branch from main to v8 January 12, 2026 09:45
# Conflicts:
#	CHANGELOG.md
#	package.json
#	packages/core/package.json
#	yarn.lock
@antonis antonis added ready-to-merge Triggers the full CI test suite and removed Blocked labels Jan 12, 2026
@github-actions
Copy link
Contributor Author

github-actions bot commented Jan 12, 2026

Android (new) Performance metrics 🚀

  Plain With Sentry Diff
Startup time 475.04 ms 528.58 ms 53.54 ms
Size 43.94 MiB 48.91 MiB 4.97 MiB

Baseline results on branch: v8

Startup times

Revision Plain With Sentry Diff
b4fa5b4+dirty 382.09 ms 398.28 ms 16.19 ms
bc8a1ed+dirty 396.10 ms 426.80 ms 30.69 ms

App size

Revision Plain With Sentry Diff
b4fa5b4+dirty 43.94 MiB 48.91 MiB 4.97 MiB
bc8a1ed+dirty 43.94 MiB 48.91 MiB 4.97 MiB

Previous results on branch: deps/scripts/update-cli.sh

Startup times

Revision Plain With Sentry Diff
13a0581+dirty 494.96 ms 548.14 ms 53.18 ms
506f96e+dirty 399.79 ms 508.51 ms 108.72 ms
041780a+dirty 430.36 ms 432.98 ms 2.62 ms
5592990+dirty 355.15 ms 426.34 ms 71.19 ms
cfa4ccd+dirty 407.33 ms 478.18 ms 70.85 ms
d2cb0c0+dirty 499.38 ms 529.78 ms 30.39 ms
fd73548+dirty 365.04 ms 423.08 ms 58.04 ms
e585099+dirty 365.29 ms 388.94 ms 23.65 ms
353ab8f+dirty 314.06 ms 323.43 ms 9.36 ms
b5bd9f9+dirty 349.67 ms 404.16 ms 54.49 ms

App size

Revision Plain With Sentry Diff
13a0581+dirty 43.94 MiB 48.90 MiB 4.96 MiB
506f96e+dirty 7.15 MiB 8.42 MiB 1.27 MiB
041780a+dirty 7.15 MiB 8.42 MiB 1.26 MiB
5592990+dirty 7.15 MiB 8.42 MiB 1.27 MiB
cfa4ccd+dirty 7.15 MiB 8.42 MiB 1.27 MiB
d2cb0c0+dirty 43.94 MiB 48.85 MiB 4.91 MiB
fd73548+dirty 7.15 MiB 8.42 MiB 1.27 MiB
e585099+dirty 7.15 MiB 8.42 MiB 1.27 MiB
353ab8f+dirty 7.15 MiB 8.44 MiB 1.28 MiB
b5bd9f9+dirty 7.15 MiB 8.42 MiB 1.27 MiB

@github-actions
Copy link
Contributor Author

github-actions bot commented Jan 12, 2026

Android (legacy) Performance metrics 🚀

  Plain With Sentry Diff
Startup time 411.56 ms 427.73 ms 16.17 ms
Size 43.75 MiB 48.08 MiB 4.33 MiB

Baseline results on branch: v8

Startup times

Revision Plain With Sentry Diff
b4fa5b4+dirty 449.55 ms 481.50 ms 31.95 ms
bc8a1ed+dirty 442.18 ms 476.27 ms 34.08 ms

App size

Revision Plain With Sentry Diff
b4fa5b4+dirty 43.75 MiB 48.08 MiB 4.33 MiB
bc8a1ed+dirty 43.75 MiB 48.08 MiB 4.33 MiB

Previous results on branch: deps/scripts/update-cli.sh

Startup times

Revision Plain With Sentry Diff
13a0581+dirty 490.31 ms 536.19 ms 45.88 ms
faac064 435.29 ms 460.94 ms 25.65 ms
cfa4ccd 402.69 ms 411.22 ms 8.53 ms
e585099 421.73 ms 437.72 ms 15.99 ms
d2cb0c0+dirty 401.91 ms 422.40 ms 20.49 ms
353ab8f+dirty 479.94 ms 508.69 ms 28.75 ms
ab57c90+dirty 411.71 ms 422.32 ms 10.61 ms
c2b7633+dirty 480.53 ms 496.26 ms 15.73 ms
fd73548 491.23 ms 478.85 ms -12.39 ms
b5bd9f9 409.71 ms 416.29 ms 6.58 ms

App size

Revision Plain With Sentry Diff
13a0581+dirty 43.75 MiB 48.07 MiB 4.32 MiB
faac064 17.75 MiB 20.15 MiB 2.41 MiB
cfa4ccd 17.75 MiB 20.15 MiB 2.41 MiB
e585099 17.75 MiB 20.15 MiB 2.41 MiB
d2cb0c0+dirty 43.75 MiB 48.02 MiB 4.27 MiB
353ab8f+dirty 17.75 MiB 19.71 MiB 1.96 MiB
ab57c90+dirty 43.75 MiB 47.99 MiB 4.24 MiB
c2b7633+dirty 43.75 MiB 47.99 MiB 4.24 MiB
fd73548 17.75 MiB 20.15 MiB 2.41 MiB
b5bd9f9 17.75 MiB 20.15 MiB 2.41 MiB

@github-actions
Copy link
Contributor Author

iOS (legacy) Performance metrics 🚀

  Plain With Sentry Diff
Startup time 1213.54 ms 1213.60 ms 0.05 ms
Size 3.44 MiB 4.66 MiB 1.22 MiB

Baseline results on branch: v8

Startup times

Revision Plain With Sentry Diff
b4fa5b4+dirty 1203.83 ms 1207.13 ms 3.30 ms
bc8a1ed+dirty 1194.70 ms 1201.18 ms 6.48 ms

App size

Revision Plain With Sentry Diff
b4fa5b4+dirty 3.44 MiB 4.66 MiB 1.22 MiB
bc8a1ed+dirty 3.44 MiB 4.66 MiB 1.22 MiB

Previous results on branch: deps/scripts/update-cli.sh

Startup times

Revision Plain With Sentry Diff
d2cb0c0+dirty 1216.09 ms 1218.98 ms 2.89 ms
fd73548+dirty 1236.69 ms 1241.47 ms 4.78 ms
5592990+dirty 1225.76 ms 1232.94 ms 7.18 ms
e585099+dirty 1217.67 ms 1212.83 ms -4.85 ms
13a0581+dirty 1214.72 ms 1212.79 ms -1.93 ms
b9b893f+dirty 1217.13 ms 1207.31 ms -9.82 ms
d729f18+dirty 1214.91 ms 1244.36 ms 29.45 ms
13a0581+dirty 1227.68 ms 1219.87 ms -7.81 ms
6dd38c6+dirty 1225.49 ms 1232.86 ms 7.37 ms
ab57c90+dirty 1215.02 ms 1222.59 ms 7.57 ms

App size

Revision Plain With Sentry Diff
d2cb0c0+dirty 3.41 MiB 4.58 MiB 1.17 MiB
fd73548+dirty 2.63 MiB 3.81 MiB 1.18 MiB
5592990+dirty 2.63 MiB 3.81 MiB 1.18 MiB
e585099+dirty 2.63 MiB 3.81 MiB 1.18 MiB
13a0581+dirty 3.41 MiB 4.67 MiB 1.25 MiB
b9b893f+dirty 3.41 MiB 4.67 MiB 1.25 MiB
d729f18+dirty 2.63 MiB 3.81 MiB 1.18 MiB
13a0581+dirty 3.41 MiB 4.67 MiB 1.25 MiB
6dd38c6+dirty 2.63 MiB 3.98 MiB 1.34 MiB
ab57c90+dirty 3.41 MiB 4.57 MiB 1.16 MiB

@github-actions
Copy link
Contributor Author

iOS (new) Performance metrics 🚀

  Plain With Sentry Diff
Startup time 1219.80 ms 1225.57 ms 5.77 ms
Size 3.44 MiB 4.66 MiB 1.22 MiB

Baseline results on branch: v8

Startup times

Revision Plain With Sentry Diff
b4fa5b4+dirty 1213.59 ms 1211.26 ms -2.33 ms
bc8a1ed+dirty 1198.66 ms 1200.60 ms 1.94 ms

App size

Revision Plain With Sentry Diff
b4fa5b4+dirty 3.44 MiB 4.66 MiB 1.22 MiB
bc8a1ed+dirty 3.44 MiB 4.66 MiB 1.22 MiB

Previous results on branch: deps/scripts/update-cli.sh

Startup times

Revision Plain With Sentry Diff
d2cb0c0+dirty 1220.34 ms 1213.74 ms -6.60 ms
fd73548+dirty 1232.16 ms 1239.16 ms 7.00 ms
5592990+dirty 1215.52 ms 1214.61 ms -0.91 ms
e585099+dirty 1195.65 ms 1203.15 ms 7.50 ms
13a0581+dirty 1210.44 ms 1208.71 ms -1.73 ms
b9b893f+dirty 1217.71 ms 1219.69 ms 1.98 ms
d729f18+dirty 1214.94 ms 1220.65 ms 5.72 ms
13a0581+dirty 1218.52 ms 1213.74 ms -4.78 ms
6dd38c6+dirty 1229.76 ms 1241.57 ms 11.82 ms
ab57c90+dirty 1222.98 ms 1223.98 ms 1.00 ms

App size

Revision Plain With Sentry Diff
d2cb0c0+dirty 3.41 MiB 4.58 MiB 1.17 MiB
fd73548+dirty 3.19 MiB 4.38 MiB 1.19 MiB
5592990+dirty 3.19 MiB 4.38 MiB 1.19 MiB
e585099+dirty 3.19 MiB 4.38 MiB 1.19 MiB
13a0581+dirty 3.41 MiB 4.67 MiB 1.25 MiB
b9b893f+dirty 3.41 MiB 4.67 MiB 1.25 MiB
d729f18+dirty 3.19 MiB 4.38 MiB 1.19 MiB
13a0581+dirty 3.41 MiB 4.67 MiB 1.25 MiB
6dd38c6+dirty 3.19 MiB 4.54 MiB 1.36 MiB
ab57c90+dirty 3.41 MiB 4.57 MiB 1.16 MiB

@antonis antonis marked this pull request as ready for review January 12, 2026 11:45
@antonis antonis merged commit 2eea94b into v8 Jan 12, 2026
93 of 95 checks passed
@antonis antonis deleted the deps/scripts/update-cli.sh branch January 12, 2026 11:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file ready-to-merge Triggers the full CI test suite

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants