diff --git a/ios/Gemfile.lock b/ios/Gemfile.lock index 969a448e..5228196e 100644 --- a/ios/Gemfile.lock +++ b/ios/Gemfile.lock @@ -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) @@ -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) @@ -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) diff --git a/ios/fastlane/Fastfile b/ios/fastlane/Fastfile index 12978207..148d8946 100644 --- a/ios/fastlane/Fastfile +++ b/ios/fastlane/Fastfile @@ -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( @@ -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', @@ -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', diff --git a/ios/fastlane/Pluginfile b/ios/fastlane/Pluginfile index d2a2e598..2e42921d 100644 --- a/ios/fastlane/Pluginfile +++ b/ios/fastlane/Pluginfile @@ -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'