fastlane-plugin-sentry 2.5.7 → 2.6.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 926b8d997fdcc69bf92a0090dd9913db1c01271cf9de5d3d580e9e734f1c8bbc
4
- data.tar.gz: 0026566bc247b4e87a097a60df6cec3a5a3b0ae51c6a49e004e2138cf750afe7
3
+ metadata.gz: af7743753ee4fb0c4d780f3dce7a0c320fa52163b26e4f002d78c981599a5405
4
+ data.tar.gz: 9ab18303cec93a5f06613dc110b264eaab4fe1362942b99a4e94792147f6400b
5
5
  SHA512:
6
- metadata.gz: d6ab0e1d13aa16b541d4aae977996f9e3fa38f0c4911801f49a8ca9f87c8150b69b9082c3481aa5826d6a614134ce83b6776e788e43172d3cbab303b1394f65d
7
- data.tar.gz: 31cc6c014282f5ab007d8f49b1d175e2e7e11a6bf0a3ebce52224277da8cdfc1ceafba93f647ffb573f83735e3f481c0591d04aa15ecbb17e861324dde4ed309
6
+ metadata.gz: 774fb5b972efd04b6accd42ece8d70d712c366d67a7b184d19eac99cf445c44aa21c33d222eb2a2e3b9f617e2f06c6b43983efd280d5dc50c9af5afac57f6055
7
+ data.tar.gz: d0523f325352305a0e15b17f0079aaf5e2a54252f6b83f06e71934c17686a01dd47607ad5d32d738cfaa5df160e83e3e41ee4b8fcd1d3ea61b9aa97c03c9c85b
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -14,10 +14,15 @@ module Fastlane
14
14
  "snapshots",
15
15
  "upload",
16
16
  "--app-id",
17
- app_id,
18
- path
17
+ app_id
19
18
  ]
20
19
 
20
+ if params[:diff_threshold]
21
+ command += ["--diff-threshold", params[:diff_threshold].to_s]
22
+ end
23
+
24
+ command << path
25
+
21
26
  Helper::SentryConfig.build_vcs_command(command, params)
22
27
 
23
28
  Helper::SentryHelper.call_sentry_cli(params, command)
@@ -47,7 +52,17 @@ module Fastlane
47
52
  end),
48
53
  FastlaneCore::ConfigItem.new(key: :app_id,
49
54
  description: "Application identifier",
50
- optional: false)
55
+ optional: false),
56
+ FastlaneCore::ConfigItem.new(key: :diff_threshold,
57
+ description: "Only report images as changed if their difference percentage exceeds this value (0.0–1.0). " \
58
+ "For example, 0.001 ignores changes affecting less than 0.1% of pixels. " \
59
+ "Useful for filtering out sub-pixel rendering noise (e.g. anti-aliasing, transparency). " \
60
+ "Defaults to 0.0 (any pixel change is reported) when not set",
61
+ optional: true,
62
+ type: Float,
63
+ verify_block: proc do |value|
64
+ UI.user_error! "diff_threshold must be between 0.0 and 1.0" unless value.between?(0.0, 1.0)
65
+ end)
51
66
  ] + Helper::SentryConfig.common_vcs_config_items
52
67
  end
53
68
 
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Sentry
3
- VERSION = "2.5.7"
3
+ VERSION = "2.6.0"
4
4
  end
5
5
  end
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.5.7
4
+ version: 2.6.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-06-10 00:00:00.000000000 Z
11
+ date: 2026-07-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: os
@@ -30,90 +30,76 @@ dependencies:
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
32
  version: 1.1.4
33
- - !ruby/object:Gem::Dependency
34
- name: bundler
35
- requirement: !ruby/object:Gem::Requirement
36
- requirements:
37
- - - ">="
38
- - !ruby/object:Gem::Version
39
- version: '0'
40
- type: :development
41
- prerelease: false
42
- version_requirements: !ruby/object:Gem::Requirement
43
- requirements:
44
- - - ">="
45
- - !ruby/object:Gem::Version
46
- version: '0'
47
33
  - !ruby/object:Gem::Dependency
48
34
  name: fastlane
49
35
  requirement: !ruby/object:Gem::Requirement
50
36
  requirements:
51
- - - ">="
37
+ - - "~>"
52
38
  - !ruby/object:Gem::Version
53
- version: 2.10.0
39
+ version: '2.10'
54
40
  type: :development
55
41
  prerelease: false
56
42
  version_requirements: !ruby/object:Gem::Requirement
57
43
  requirements:
58
- - - ">="
44
+ - - "~>"
59
45
  - !ruby/object:Gem::Version
60
- version: 2.10.0
46
+ version: '2.10'
61
47
  - !ruby/object:Gem::Dependency
62
48
  name: pry
63
49
  requirement: !ruby/object:Gem::Requirement
64
50
  requirements:
65
- - - ">="
51
+ - - "~>"
66
52
  - !ruby/object:Gem::Version
67
- version: '0'
53
+ version: '0.14'
68
54
  type: :development
69
55
  prerelease: false
70
56
  version_requirements: !ruby/object:Gem::Requirement
71
57
  requirements:
72
- - - ">="
58
+ - - "~>"
73
59
  - !ruby/object:Gem::Version
74
- version: '0'
60
+ version: '0.14'
75
61
  - !ruby/object:Gem::Dependency
76
62
  name: rspec
77
63
  requirement: !ruby/object:Gem::Requirement
78
64
  requirements:
79
- - - ">="
65
+ - - "~>"
80
66
  - !ruby/object:Gem::Version
81
- version: '0'
67
+ version: '3.0'
82
68
  type: :development
83
69
  prerelease: false
84
70
  version_requirements: !ruby/object:Gem::Requirement
85
71
  requirements:
86
- - - ">="
72
+ - - "~>"
87
73
  - !ruby/object:Gem::Version
88
- version: '0'
74
+ version: '3.0'
89
75
  - !ruby/object:Gem::Dependency
90
76
  name: rubocop
91
77
  requirement: !ruby/object:Gem::Requirement
92
78
  requirements:
93
- - - ">="
79
+ - - "~>"
94
80
  - !ruby/object:Gem::Version
95
- version: '0'
81
+ version: '1.0'
96
82
  type: :development
97
83
  prerelease: false
98
84
  version_requirements: !ruby/object:Gem::Requirement
99
85
  requirements:
100
- - - ">="
86
+ - - "~>"
101
87
  - !ruby/object:Gem::Version
102
- version: '0'
88
+ version: '1.0'
103
89
  - !ruby/object:Gem::Dependency
104
90
  name: rubocop-rspec
105
91
  requirement: !ruby/object:Gem::Requirement
106
92
  requirements:
107
- - - ">="
93
+ - - "~>"
108
94
  - !ruby/object:Gem::Version
109
- version: '0'
95
+ version: '3.0'
110
96
  type: :development
111
97
  prerelease: false
112
98
  version_requirements: !ruby/object:Gem::Requirement
113
99
  requirements:
114
- - - ">="
100
+ - - "~>"
115
101
  - !ruby/object:Gem::Version
116
- version: '0'
102
+ version: '3.0'
117
103
  description:
118
104
  email: hello@sentry.io
119
105
  executables: []
@@ -161,7 +147,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
161
147
  - !ruby/object:Gem::Version
162
148
  version: '0'
163
149
  requirements: []
164
- rubygems_version: 3.1.6
150
+ rubygems_version: 3.5.22
165
151
  signing_key:
166
152
  specification_version: 4
167
153
  summary: Upload symbols to Sentry