feat(sentry-cli): Set SENTRY_PIPELINE environment variable#365
Merged
runningcode merged 2 commits intomasterfrom Dec 15, 2025
Merged
feat(sentry-cli): Set SENTRY_PIPELINE environment variable#365runningcode merged 2 commits intomasterfrom
runningcode merged 2 commits intomasterfrom
Conversation
Contributor
|
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 <noreply@anthropic.com>
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 <noreply@anthropic.com>
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1ebe13a to
017ca84
Compare
This was referenced Jan 9, 2026
This was referenced Jan 14, 2026
3 tasks
3 tasks
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
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