diff --git a/CHANGELOG.md b/CHANGELOG.md index 5aba61555..e88771261 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ ### Breaking Changes -- Remove `build_gradle_path` parameter from `android_current_branch_is_hotfix` [#579] +- Remove `build_gradle_path` parameter from `android_current_branch_is_hotfix`. [#579] ### New Features @@ -18,6 +18,8 @@ _None_ ### Internal Changes +- Update gems used internally & remove upper bound on `nokogiri` from the `.gemspec`. [#583] + - Deprecated the following actions: [#577, #579] - `android_betabuild_prechecks` - `android_build_prechecks` diff --git a/Gemfile.lock b/Gemfile.lock index 08d9f3b82..6ba2a0c04 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -10,7 +10,7 @@ PATH git (~> 1.3) google-cloud-storage (~> 1.31) java-properties (~> 0.3.0) - nokogiri (~> 1.11, < 1.17) + nokogiri (~> 1.11) octokit (~> 6.1) parallel (~> 1.14) plist (~> 3.1) @@ -26,16 +26,17 @@ GEM base64 nkf rexml - activesupport (7.1.3.4) + activesupport (7.2.0) base64 bigdecimal - concurrent-ruby (~> 1.0, >= 1.0.2) + concurrent-ruby (~> 1.0, >= 1.3.1) connection_pool (>= 2.2.5) drb i18n (>= 1.6, < 2) + logger (>= 1.4.2) minitest (>= 5.1) - mutex_m - tzinfo (~> 2.0) + securerandom (>= 0.3) + tzinfo (~> 2.0, >= 2.0.5) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) algoliasearch (1.27.5) @@ -45,8 +46,8 @@ GEM ast (2.4.2) atomos (0.1.3) aws-eventstream (1.3.0) - aws-partitions (1.962.0) - aws-sdk-core (3.201.3) + aws-partitions (1.963.0) + aws-sdk-core (3.201.4) aws-eventstream (~> 1, >= 1.3.0) aws-partitions (~> 1, >= 1.651.0) aws-sigv4 (~> 1.8) @@ -116,7 +117,7 @@ GEM colored2 (3.1.2) commander (4.6.0) highline (~> 2.0.0) - concurrent-ruby (1.3.3) + concurrent-ruby (1.3.4) connection_pool (2.4.1) cork (0.3.0) colored2 (~> 3.1) @@ -291,6 +292,7 @@ GEM kramdown-parser-gfm (1.1.0) kramdown (~> 2.0) language_server-protocol (3.17.0.3) + logger (1.6.0) method_source (0.9.2) mini_magick (4.13.2) mini_mime (1.1.5) @@ -299,7 +301,6 @@ GEM molinillo (0.8.0) multi_json (1.15.0) multipart-post (2.4.1) - mutex_m (0.2.0) nanaimo (0.3.0) nap (1.1.0) naturally (2.2.1) @@ -316,8 +317,8 @@ GEM options (2.3.2) optparse (0.5.0) os (1.1.4) - parallel (1.25.1) - parser (3.3.4.1) + parallel (1.26.2) + parser (3.3.4.2) ast (~> 2.4.1) racc pkg-config (1.5.6) @@ -341,7 +342,7 @@ GEM trailblazer-option (>= 0.1.1, < 0.2.0) uber (< 0.2.0) retriable (3.1.2) - rexml (3.3.4) + rexml (3.3.5) strscan rmagick (5.5.0) observer (~> 0.1) @@ -387,6 +388,7 @@ GEM sawyer (0.9.2) addressable (>= 2.3.5) faraday (>= 0.17.3, < 3) + securerandom (0.3.1) security (0.1.5) signet (0.19.0) addressable (~> 2.8) diff --git a/fastlane-plugin-wpmreleasetoolkit.gemspec b/fastlane-plugin-wpmreleasetoolkit.gemspec index 4b5b06c0c..73549df9b 100644 --- a/fastlane-plugin-wpmreleasetoolkit.gemspec +++ b/fastlane-plugin-wpmreleasetoolkit.gemspec @@ -31,7 +31,7 @@ Gem::Specification.new do |spec| spec.add_dependency 'fastlane', '~> 2.213' spec.add_dependency 'git', '~> 1.3' spec.add_dependency 'java-properties', '~> 0.3.0' - spec.add_dependency 'nokogiri', '~> 1.11', '< 1.17' # Needed for AndroidLocalizeHelper. The upper bound can be removed once the Release Toolkit is migrated from Ruby 2.7 to Ruby 3 + spec.add_dependency 'nokogiri', '~> 1.11' spec.add_dependency 'octokit', '~> 6.1' spec.add_dependency 'parallel', '~> 1.14' spec.add_dependency 'plist', '~> 3.1'