Skip to content

Commit

Permalink
Fix overly strict dependency requirement of the logger gem to allow p…
Browse files Browse the repository at this point in the history
…lugin installation

Vagrant version 2.4.2 introduced a patch(512bb74) that sets the logger gem dependency to "~>1.6.1", which is too strict and prevents many Vagrant plugins from being installed.

This patch tones down the dependency specification to mitigate this problem.

Fixes #13527.

Refer-to: Add logger and ostruct to the gemspec by hswong3i · Pull Request #13499 · hashicorp/vagrant <#13499>
  • Loading branch information
brlin-tw committed Nov 4, 2024
1 parent 89e67f3 commit cdf35c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vagrant.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Gem::Specification.new do |s|
s.add_dependency "i18n", "~> 1.12"
s.add_dependency "listen", "~> 3.7"
s.add_dependency "log4r", "~> 1.1.9", "< 1.1.11"
s.add_dependency "logger", "~> 1.6.1"
s.add_dependency "logger", "~> 1.6.0"
s.add_dependency "mime-types", "~> 3.3"
s.add_dependency "net-ftp", "~> 0.2"
s.add_dependency "net-ssh", "~> 7.0"
Expand Down

0 comments on commit cdf35c0

Please sign in to comment.