fastlane-plugin-sentry 1.12.1 → 1.12.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 618a9afa9fc09f00d2c6e2bb511790ade4b5c1fe3c4b4e4bbe1daba8e1714ccb
4
- data.tar.gz: 67685133c8f4826680c246ad73a222105dc3d8a67f661086dcafd9f92d182b3e
3
+ metadata.gz: 9399ec35f10c7747eaab502eb91fef891fadb5822d4a8138fb348c603514e959
4
+ data.tar.gz: 247a753f369c96b224267ebe8d1558bb33d98c1921bb509b1cdfc57c1cc3d235
5
5
  SHA512:
6
- metadata.gz: 3e3c4d87b2bbd5703b519570d67ac24c49fc29514b0ba5c60be55165b1ec533233ec47a990db42236f465823fa385cfa7a43a82070805c9744d5a1fdda915250
7
- data.tar.gz: 8ee2ebfaaf02cda7f151437ce368619b31a9c732535cf888123e4d8d315bb2b5c3760ac1223800f141c5e81678d1f71e56a362537081855a0aad83973f2d0cce
6
+ metadata.gz: 5873223c568017300474b735caa63a5c463ffe2fa705a8510e0153589022d010c1f2ffc95f38e2e08174f64d1310f7b8c2aec3d5e9674505abb84ea54de6fb75
7
+ data.tar.gz: 004f5cf0ebda7c8e78da8f04151455b120f3432f0b2785cc35e13ec191aacdfba5d3702b89384d88a34edb40d177c30b4eefbf336b67e030487d9124759ef189
@@ -38,13 +38,23 @@ module Fastlane
38
38
  end
39
39
 
40
40
  Open3.popen2e(final_command) do |stdin, stdout_and_stderr, status_thread|
41
+ # While most of the commands are just a pass-through for stdout/stderr
42
+ # we do rely on parsing stdout in `fallback_sentry_cli_auth` helper
43
+ # We can ignore `stderr`, which is responsible for logging
44
+ # as `sentry-cli info --config-status-json` which we use, doesnt allow `--verbose`.
45
+ output = []
46
+
41
47
  stdout_and_stderr.each_line do |line|
42
- UI.message(line.strip!)
48
+ l = line.strip!
49
+ UI.message(l)
50
+ output << l
43
51
  end
44
52
 
45
53
  unless status_thread.value.success?
46
54
  UI.user_error!('Error while calling Sentry CLI')
47
55
  end
56
+
57
+ output.join
48
58
  end
49
59
  end
50
60
  end
@@ -1,6 +1,6 @@
1
1
  module Fastlane
2
2
  module Sentry
3
- VERSION = "1.12.1"
3
+ VERSION = "1.12.2"
4
4
  CLI_VERSION = "1.72.0"
5
5
  end
6
6
  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: 1.12.1
4
+ version: 1.12.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sentry
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-06-30 00:00:00.000000000 Z
11
+ date: 2022-07-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler