fastlane-plugin-bugsnag 1.4.1 → 1.4.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: c06bc54bec2c72f2ca7bffa7b9b8416a43f3c642b2194fcb0136d5047d50f0b5
4
- data.tar.gz: 217591d18508cce3ba230c55a04f5440a9987765bac3d08bc73783618ad2c52a
3
+ metadata.gz: e181711b183200492623830bb7769c7d7939ec4c5c712ba7f0c40893f55e5e87
4
+ data.tar.gz: b1f4993b0a3dc8e3bc8ad57e1f28c05fc88ebe760405c7322641aa92cb940335
5
5
  SHA512:
6
- metadata.gz: ccfa0fa909ab1fe8aae3f63002e1227d23c88ff23ef51ef89c1212cf9276e30113e60dec26507295349b51c9fccaef63c816888ea6c34d5021849b8ede6e045f
7
- data.tar.gz: 9574afd7ee424559a64d2ea8d27633fb7ceaffa16bd9d1e5d5dc7501e35da4b963a1a2c3d80de73e7ddf3caee015146029b00aeeff284bda857f1470878e5e20
6
+ metadata.gz: d4cbb540fcaa9e5ff405e792416208bc520c7c99bca291f781e354fdf4f8bfacc4360cf2eba1f6f32a5eec4f1749fd5120e14907b505ec13d88d95716d2c7a6f
7
+ data.tar.gz: 0bcc646b32248169a424b581cd5e85ba2da983f3d66ac372496eea90fcf34b0014704809f4e782a6fa7d0df65b9c04de560a296acb2993ee444bfb3956af4337
@@ -141,7 +141,7 @@ for dsym in $dsym_dir/*.dSYM; do
141
141
  # Attach the api key and project root parameters if they have been provided
142
142
  args=""
143
143
  if [[ ! -z $project_root ]]; then
144
- args="-F projectRoot=$project_root "
144
+ args="-F projectRoot=\"$project_root\" "
145
145
  fi
146
146
 
147
147
  if [[ ! -z $api_key ]]; then
@@ -150,7 +150,7 @@ for dsym in $dsym_dir/*.dSYM; do
150
150
 
151
151
  # We need to shell out to perform the curl as there seems to be some indirect
152
152
  # wrapping of this script which causes the command to fail if called directly.
153
- curl_cmd="curl --silent --show-error $upload_server -F dsym=@\"$file\" $args"
153
+ curl_cmd="curl --silent --show-error --http1.1 $upload_server -F dsym=@\"$file\" $args"
154
154
  output=$(sh -c "$curl_cmd")
155
155
 
156
156
  if [ $? -eq 0 ] && [ "$output" != "invalid apiKey" ]; then
@@ -75,7 +75,7 @@ module Fastlane
75
75
  return if key.nil?
76
76
 
77
77
  unless !key[/\H/] and key.length == 32
78
- UI.user_error!("API key should be a 32 character hexdeciaml string")
78
+ UI.user_error!("API key should be a 32 character hexadecimal string")
79
79
  end
80
80
  end
81
81
 
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Bugsnag
3
- VERSION = "1.4.1"
3
+ VERSION = "1.4.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-bugsnag
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.1
4
+ version: 1.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Delisa Mason
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-12-17 00:00:00.000000000 Z
11
+ date: 2020-04-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: xml-simple
@@ -168,7 +168,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
168
168
  version: '0'
169
169
  requirements: []
170
170
  rubyforge_project:
171
- rubygems_version: 2.7.7
171
+ rubygems_version: 2.7.6.2
172
172
  signing_key:
173
173
  specification_version: 4
174
174
  summary: Uploads dSYM files to Bugsnag