-
-
Notifications
You must be signed in to change notification settings - Fork 51
feat(sentry-cli): Set SENTRY_PIPELINE environment variable #365
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
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Contributor
|
philprime
approved these changes
Dec 11, 2025
Member
philprime
left a comment
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.
LGTM
runningcode
added a commit
to getsentry/sentry-cli
that referenced
this pull request
Dec 15, 2025
…ads (EME-606) (#2994) ## Summary Automatically track Sentry plugin versions in build uploads by parsing the existing `SENTRY_PIPELINE` environment variable. This enables size analysis and build distribution tracking by storing plugin version metadata in the PreprodArtifact database table. ## Changes ### Plugin Version Detection - Reads the existing `SENTRY_PIPELINE` environment variable - Parses format: `sentry-gradle-plugin/4.12.0` or `sentry-fastlane-plugin/1.2.3` - Only extracts versions for recognized Sentry plugins: - `sentry-gradle-plugin` - `sentry-fastlane-plugin` ### Metadata File Format The `.sentry-cli-metadata.txt` file inside uploaded zips now includes detected plugin info: ``` sentry-cli-version: 2.58.2 sentry-gradle-plugin: 4.12.0 ``` Related PRs: getsentry/launchpad#464 getsentry/sentry#103062 getsentry/sentry-android-gradle-plugin#1036 getsentry/sentry-fastlane-plugin#365 --------- Co-authored-by: Claude <[email protected]>
Set SENTRY_PIPELINE environment variable for all sentry-cli invocations to identify the plugin and version being used. The value is set to "sentry-fastlane-plugin/<version>" where version is dynamically read from the Fastlane::Sentry::VERSION constant. This allows Sentry to track which integration is being used to upload data and helps with debugging and analytics. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <[email protected]>
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <[email protected]>
1ebe13a to
017ca84
Compare
This was referenced Jan 9, 2026
3 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Sets the
SENTRY_PIPELINEenvironment variable for all sentry-cli invocations to identify the plugin and version being used.Changes
SentryHelper.call_sentry_clito setSENTRY_PIPELINEenvironment variable tosentry-fastlane-plugin/<version>Fastlane::Sentry::VERSIONconstant, so it updates automatically when the plugin version is bumpedRelated PRs:
getsentry/sentry-android-gradle-plugin#1036
getsentry/launchpad#464
getsentry/sentry#103062
#365
🤖 Generated with Claude Code