fastlane-plugin-sentry 2.0.0 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -0
- data/bin/sentry-cli-Darwin-universal +0 -0
- data/bin/sentry-cli-Linux-i686 +0 -0
- data/bin/sentry-cli-Linux-x86_64 +0 -0
- data/bin/sentry-cli-Windows-i686.exe +0 -0
- data/bin/sentry-cli-Windows-x86_64.exe +0 -0
- data/lib/fastlane/plugin/sentry/actions/sentry_upload_build.rb +26 -1
- data/lib/fastlane/plugin/sentry/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 207e11b8aa823f79ec731ad133d8541cc9b189cef78b8918588a0822952860e6
|
|
4
|
+
data.tar.gz: 5ce55cf1fe9ddc2f9ff242ef059160813f50fd6092f520273a3b820cc30ed537
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 768cab95c776d74ab4a13b6c149e726baee2ed73dd000669714c8c4a6d30341f3695714bbcdb9c792a7a46d8812a8e1b0ca6f16e0e4bfe6daba8b620d5255db6
|
|
7
|
+
data.tar.gz: 8c449a5fe7f95b34d1a7267648392b2f520b3b9b893a6fe187e0eb305990441cc09e8a17d8e32fbe7a531970956e25e605565a1b6e5ee3c24badb39e76c87438
|
data/README.md
CHANGED
|
@@ -105,6 +105,7 @@ sentry_upload_build(
|
|
|
105
105
|
base_ref: 'main', # Name of the base branch (or SENTRY_BASE_REF)
|
|
106
106
|
pr_number: '123', # Pull request number (or SENTRY_PR_NUMBER)
|
|
107
107
|
build_configuration: 'Release', # Build configuration (e.g., 'Release', 'Debug') (or SENTRY_BUILD_CONFIGURATION)
|
|
108
|
+
install_groups: ['beta', 'internal'], # Optional. Control update visibility between builds (or SENTRY_INSTALL_GROUPS)
|
|
108
109
|
release_notes: 'Fixed critical bugs', # Optional. Release notes to use for the upload
|
|
109
110
|
force_git_metadata: false, # Optional. Force collection and sending of git metadata
|
|
110
111
|
no_git_metadata: false # Optional. Disable collection and sending of git metadata
|
|
Binary file
|
data/bin/sentry-cli-Linux-i686
CHANGED
|
Binary file
|
data/bin/sentry-cli-Linux-x86_64
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -54,6 +54,21 @@ module Fastlane
|
|
|
54
54
|
command << "--pr-number" << params[:pr_number] if params[:pr_number]
|
|
55
55
|
command << "--build-configuration" << params[:build_configuration] if params[:build_configuration]
|
|
56
56
|
command << "--release-notes" << params[:release_notes] if params[:release_notes]
|
|
57
|
+
|
|
58
|
+
unless params[:install_groups].nil?
|
|
59
|
+
unless params[:install_groups].kind_of?(Enumerable)
|
|
60
|
+
params[:install_groups] = [params[:install_groups]]
|
|
61
|
+
end
|
|
62
|
+
params[:install_groups].reject! do |e|
|
|
63
|
+
e.to_s.strip.empty?
|
|
64
|
+
rescue StandardError
|
|
65
|
+
true
|
|
66
|
+
end
|
|
67
|
+
params[:install_groups].each do |group|
|
|
68
|
+
command.push('--install-group').push(group)
|
|
69
|
+
end
|
|
70
|
+
end
|
|
71
|
+
|
|
57
72
|
command << "--force-git-metadata" if params[:force_git_metadata]
|
|
58
73
|
command << "--no-git-metadata" if params[:no_git_metadata]
|
|
59
74
|
|
|
@@ -70,7 +85,10 @@ module Fastlane
|
|
|
70
85
|
end
|
|
71
86
|
|
|
72
87
|
def self.details
|
|
73
|
-
"This action allows you to upload build files to Sentry. Supported formats include iOS build archives (.xcarchive),
|
|
88
|
+
"This action allows you to upload build files to Sentry. Supported formats include iOS build archives (.xcarchive), " \
|
|
89
|
+
"iOS app bundles (.ipa), Android APK files (.apk), and Android App Bundles (.aab). The action supports optional " \
|
|
90
|
+
"git-related parameters for enhanced context including commit SHAs, branch names, repository information, and pull " \
|
|
91
|
+
"request details. Install groups can be specified to control update visibility between builds."
|
|
74
92
|
end
|
|
75
93
|
|
|
76
94
|
def self.available_options
|
|
@@ -164,6 +182,13 @@ module Fastlane
|
|
|
164
182
|
description: "The build configuration (e.g., 'Release', 'Debug')",
|
|
165
183
|
optional: true,
|
|
166
184
|
is_string: true),
|
|
185
|
+
FastlaneCore::ConfigItem.new(key: :install_groups,
|
|
186
|
+
env_name: "SENTRY_INSTALL_GROUPS",
|
|
187
|
+
description: "One or more install groups that control update visibility between builds. \
|
|
188
|
+
Builds with at least one matching install group will be shown updates for each other. \
|
|
189
|
+
Specify multiple groups as an array (e.g., ['group1', 'group2']) or a single group as a string",
|
|
190
|
+
type: Array,
|
|
191
|
+
optional: true),
|
|
167
192
|
FastlaneCore::ConfigItem.new(key: :release_notes,
|
|
168
193
|
description: "The release notes to use for the upload",
|
|
169
194
|
optional: true,
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-sentry
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sentry
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-02-
|
|
11
|
+
date: 2026-02-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: os
|