chore(deps): update CLI to v2.29.1 #1574
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Bumps modules/sentry-cli.properties from 2.28.6 to 2.29.1.
Auto-generated by a dependency updater.
Changelog
2.29.1
Updated version 2.29.0 changelog. No code changes.
2.29.0
Source maps fixes
This release fixes the behavior of
sourcemaps inject
andsourcemaps upload
. We now treat minified and non-minified source files the same way in both commands, which was always the desired behavior, and is also consistent with our JS bundler plugins.Please be aware that from now on,
sourcemaps inject
will inject debug IDs into all JS source files at the path provided to the command. If you only wish for some of the files to have debug IDs injected, you need to modify the path(s) passed tosourcemaps inject
or you need to use the--ignore
or--ignore-file
options to exclude the files you do not wish to inject the debug IDs into.In the
sourcemaps upload
command, we have eliminated the "Minified Scripts" section in the Source Maps Upload Report. Instead, these minified scripts will appear under "Scripts."Auth token validation
Sentry CLI now validates that you have provided an auth token whenever you run a command that requires authentication to succeed. If you fail to provide an auth token when running such a command, the Sentry CLI will exit with an error message explaining that the auth token is required but missing.
Other fixes & improvements
.cjs
and.mjs
to defaultsourcemaps upload
extensions (#1961) by szokeasaurusrex