From c58d87289659aa2b84a66ab8564556bb93d2ccb5 Mon Sep 17 00:00:00 2001 From: Chris Roberts Date: Thu, 31 Oct 2024 09:28:51 -0700 Subject: [PATCH] Bump version constraint for patching Updates the version constraint defined for net-ssh patching to include current lastest release. --- lib/vagrant/patches/net-ssh.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vagrant/patches/net-ssh.rb b/lib/vagrant/patches/net-ssh.rb index c75ea14f94e..4f505a2cea5 100644 --- a/lib/vagrant/patches/net-ssh.rb +++ b/lib/vagrant/patches/net-ssh.rb @@ -5,7 +5,7 @@ require "net/ssh/buffer" # Set the version requirement for when net-ssh should be patched -NET_SSH_PATCH_REQUIREMENT = Gem::Requirement.new(">= 7.0.0", "< 7.2.2") +NET_SSH_PATCH_REQUIREMENT = Gem::Requirement.new(">= 7.0.0", "<= 7.3") # This patch provides support for properly loading ECDSA private keys if NET_SSH_PATCH_REQUIREMENT.satisfied_by?(Gem::Version.new(Net::SSH::Version::STRING))