From d51aa165ad28cfc4867f7b6b48c03655525a27d2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 3 Jul 2025 14:05:53 +0000 Subject: [PATCH] Update git requirement from ~> 3.1 to >= 3.1, < 5.0 Updates the requirements on [git](https://github.com/ruby-git/ruby-git) to permit the latest version. - [Release notes](https://github.com/ruby-git/ruby-git/releases) - [Changelog](https://github.com/ruby-git/ruby-git/blob/main/CHANGELOG.md) - [Commits](https://github.com/ruby-git/ruby-git/compare/v3.1.0...v4.0.0) --- updated-dependencies: - dependency-name: git dependency-version: 4.0.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- vanagon.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vanagon.gemspec b/vanagon.gemspec index ba3a8aab..dfd4d58a 100644 --- a/vanagon.gemspec +++ b/vanagon.gemspec @@ -21,7 +21,7 @@ Gem::Specification.new do |gem| gem.add_dependency('docopt', '~> 0.6.1') # Handle git repos responsibly # - MIT licensed: https://rubygems.org/gems/git - gem.add_dependency('git', '~> 3.1') + gem.add_dependency('git', '>= 3.1', '< 5.0') # Parse scp-style triplets like URIs; used for Git source handling. # - MIT licensed: https://rubygems.org/gems/build-uri gem.add_dependency('build-uri', '~> 1.0')