From 0e98b523718edf2b5cde40de797f62e126d4f212 Mon Sep 17 00:00:00 2001 From: Evgeni Golov Date: Tue, 20 Jan 2026 11:46:29 +0100 Subject: [PATCH] Fixes #38783 - update rubyipmi to fix IPMI connection issues --- bundler.d/bmc.rb | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/bundler.d/bmc.rb b/bundler.d/bmc.rb index fc737e5b4..79aef4cec 100644 --- a/bundler.d/bmc.rb +++ b/bundler.d/bmc.rb @@ -1,8 +1,4 @@ group :bmc do - gem 'rubyipmi', '>= 0.10.0' + gem 'rubyipmi', '>= 0.12.1' gem 'redfish_client', '>= 0.6.0' - # observer is a transitive dependency of rubyipmi - # Changed from a default gem to a bundled gem in Ruby 3.4 See https://stdgems.org/new-in/3.4/ - # This is a workaround, till https://github.com/logicminds/rubyipmi/pull/61 is live - gem 'observer' if RUBY_VERSION >= '3.4' end