Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions ios/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ GEM
specs:
CFPropertyList (3.0.8)
abbrev (0.1.2)
addressable (2.8.7)
public_suffix (>= 2.0.2, < 7.0)
addressable (2.8.8)
public_suffix (>= 2.0.2, < 8.0)
artifactory (3.0.17)
atomos (0.1.3)
aws-eventstream (1.4.0)
aws-partitions (1.1187.0)
aws-sdk-core (3.239.1)
aws-partitions (1.1194.0)
aws-sdk-core (3.239.2)
aws-eventstream (~> 1, >= 1.3.0)
aws-partitions (~> 1, >= 1.992.0)
aws-sigv4 (~> 1.9)
Expand All @@ -20,7 +20,7 @@ GEM
aws-sdk-kms (1.118.0)
aws-sdk-core (~> 3, >= 3.239.1)
aws-sigv4 (~> 1.5)
aws-sdk-s3 (1.205.0)
aws-sdk-s3 (1.206.0)
aws-sdk-core (~> 3, >= 3.234.0)
aws-sdk-kms (~> 1)
aws-sigv4 (~> 1.5)
Expand Down Expand Up @@ -167,22 +167,22 @@ GEM
httpclient (2.9.0)
mutex_m
jmespath (1.6.2)
json (2.16.0)
json (2.18.0)
jwt (2.10.2)
base64
logger (1.7.0)
mini_magick (4.13.2)
mini_mime (1.1.5)
multi_json (1.17.0)
multi_json (1.18.0)
multipart-post (2.4.1)
mutex_m (0.3.0)
nanaimo (0.4.0)
naturally (2.3.0)
nkf (0.2.0)
optparse (0.8.0)
optparse (0.8.1)
os (1.1.4)
plist (3.7.2)
public_suffix (6.0.2)
public_suffix (7.0.0)
rake (13.3.1)
representable (3.2.0)
declarative (< 0.1.0)
Expand Down
11 changes: 2 additions & 9 deletions ios/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,6 @@ default_platform(:ios)
require 'plist'

platform :ios do
def sentry_upload_build_filtered(**params)
filtered_params = params.select { |key, value|
value && !value.to_s.strip.empty?
}
sentry_upload_build(**filtered_params)
end

desc 'Load ASC API Key information to use in subsequent lanes'
lane :load_asc_api_key do
app_store_connect_api_key(
Expand Down Expand Up @@ -179,7 +172,7 @@ platform :ios do
project_slug: 'hackernews-ios',
include_sources: true
)
sentry_upload_build_filtered(
sentry_upload_build(
auth_token: ENV['SENTRY_SENTRY_AUTH_TOKEN'],
org_slug: 'sentry',
project_slug: 'launchpad-test-ios',
Expand All @@ -198,7 +191,7 @@ platform :ios do
app_id_suffix: ENV['APP_ID_SUFFIX']
)
export_thinned_build
sentry_upload_build_filtered(
sentry_upload_build(
auth_token: ENV['SENTRY_SENTRY_AUTH_TOKEN'],
org_slug: 'sentry',
project_slug: 'launchpad-test-ios',
Expand Down
2 changes: 1 addition & 1 deletion ios/fastlane/Pluginfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
# Ensure this file is checked in to source control!

gem 'fastlane-plugin-emerge', '0.10.8'
gem 'fastlane-plugin-sentry', '1.35.0'
gem 'fastlane-plugin-sentry', '1.36.0'
Loading