From ef9998fb91ce1bb126c624df78a70d8efd063ee9 Mon Sep 17 00:00:00 2001 From: Arild Langtind Date: Wed, 15 May 2024 01:00:40 +0200 Subject: [PATCH] Update package dependencies to resolve circular dependency issue This commit updates the version numbers in the gemspec to resolve a circular dependency problem that prevented upgrading Fastlane. Specifically, updated security from 0.1.3 to 0.1.5 to align with Fastlane's newer version requirements. This change has been tested and ensures that Fastlane can now be successfully upgraded without conflicts. Signed-off-by: Arild Langtind --- Gemfile.lock | 4 ++-- examples/Example1/Gemfile.lock | 4 ++-- examples/Example2/Gemfile.lock | 6 +++--- u3d.gemspec | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 4f3ab99d..ed766754 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ PATH plist (>= 3.1.0, < 4.0.0) rexml rubyzip (>= 1.0.0) - security (= 0.1.3) + security (= 0.1.5) GEM remote: https://rubygems.org/ @@ -160,7 +160,7 @@ GEM sawyer (0.8.2) addressable (>= 2.3.5) faraday (> 0.8, < 2.0) - security (0.1.3) + security (0.1.5) simplecov (0.16.1) docile (~> 1.1) json (>= 1.8, < 3) diff --git a/examples/Example1/Gemfile.lock b/examples/Example1/Gemfile.lock index 3acbef6e..836972b5 100644 --- a/examples/Example1/Gemfile.lock +++ b/examples/Example1/Gemfile.lock @@ -16,7 +16,7 @@ PATH plist (>= 3.1.0, < 4.0.0) rexml rubyzip (>= 1.0.0) - security (= 0.1.3) + security (= 0.1.5) GEM remote: https://rubygems.org/ @@ -75,7 +75,7 @@ GEM plist (>= 3.1.0, < 4.0.0) public_suffix (~> 2.0.0) rubyzip (>= 1.3.0, < 2.0.0) - security (= 0.1.3) + security (= 0.1.5) simctl (~> 1.6.3) slack-notifier (>= 2.0.0, < 3.0.0) terminal-notifier (>= 2.0.0, < 3.0.0) diff --git a/examples/Example2/Gemfile.lock b/examples/Example2/Gemfile.lock index b36d7e60..9a1b82e8 100644 --- a/examples/Example2/Gemfile.lock +++ b/examples/Example2/Gemfile.lock @@ -16,7 +16,7 @@ PATH plist (>= 3.1.0, < 4.0.0) rexml rubyzip (>= 1.0.0) - security (= 0.1.3) + security (= 0.1.5) GEM remote: https://rubygems.org/ @@ -75,7 +75,7 @@ GEM plist (>= 3.1.0, < 4.0.0) public_suffix (~> 2.0.0) rubyzip (>= 1.3.0, < 2.0.0) - security (= 0.1.3) + security (= 0.1.5) simctl (~> 1.6.3) slack-notifier (>= 2.0.0, < 3.0.0) terminal-notifier (>= 2.0.0, < 3.0.0) @@ -142,7 +142,7 @@ GEM rexml (3.2.5) rouge (2.0.7) rubyzip (1.3.0) - security (0.1.3) + security (0.1.5) signet (0.12.0) addressable (~> 2.3) faraday (~> 0.9) diff --git a/u3d.gemspec b/u3d.gemspec index a48f4224..119463fc 100644 --- a/u3d.gemspec +++ b/u3d.gemspec @@ -34,7 +34,7 @@ Gem::Specification.new do |spec| spec.add_dependency 'plist', '>= 3.1.0', '< 4.0.0' # Generate the Xcode config plist file spec.add_dependency "rexml" # rexml was unbundled from the stdlib in ruby 3 spec.add_dependency 'rubyzip', '>= 1.0.0' # Installation of .zip files - spec.add_dependency 'security', '= 0.1.3' # macOS Keychain manager, a dead project, no updates expected + spec.add_dependency 'security', '= 0.1.5' # macOS Keychain manager, a dead project, no updates expected # Development only spec.add_development_dependency "activesupport", ">= 5.2.4.3" # force secure transitive dep spec.add_development_dependency "addressable", ">= 2.8.0" # force secure transitive dep