idrac 0.1.19 → 0.1.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +6 -0
  3. data/bin/idrac +1 -3
  4. data/lib/idrac/version.rb +1 -1
  5. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 287cc837870fd1a004f10303ac8a0b60d594f3b2f4561c322e9a56b8cfa3de78
4
- data.tar.gz: a34978f43c1157eb3d66a7e3399f057b238d2de777e79c1bfc5a3533a178cc6c
3
+ metadata.gz: 87d81ae109224d8bfee1a4513bb10d307c703b74ab0d540a78aed849f16e26c4
4
+ data.tar.gz: 210a4e787490a16f76994090dc908248b97efec8f7bdb3c8a8136e6aee63ec5d
5
5
  SHA512:
6
- metadata.gz: 6af64f193514911149d8f902ee0f9bab6a380abc9ad740461f0903cd3dc627f45fdd13e16511da646413922e950aa9c853768acfd8c6692d27c47804a9b70d01
7
- data.tar.gz: 8391f69048343693a387bf469f6b71de1322b994435ce3410df031f4171d2fc202607ff5ee3e75df399d5f2ffa630ba3349af798bb54eb561f5cb6c0584b26bb
6
+ metadata.gz: ea89b9514218b74a2393bc5eb46cc121a60ce9c6c9e0726f6c9df38b40dbb2cb5196bbc20350e56662729af77ef278dbabf6c4b61d162ac1a97467e3ef4fb548
7
+ data.tar.gz: a4213988f3a7ad827b20f90b8cdb4be43ffed7b20bc58f6dce3b9570b6504d73dfc34f67285f6cdd94515e0ec0a52651b27360c75464e297d0e0a448fbbf6774
data/README.md CHANGED
@@ -105,6 +105,12 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
105
105
 
106
106
  ## Changelog
107
107
 
108
+ ### Version 0.1.20
109
+ - **Simplified CLI Interface**: Removed the direct-mode CLI option
110
+ - Maintained internal direct mode functionality as an automatic fallback mechanism
111
+ - The client will still automatically switch to direct mode when session management fails
112
+ - This change simplifies the user interface while preserving the robust session handling
113
+
108
114
  ### Version 0.1.19
109
115
  - **Basic Auth Session Clearing**: Implemented direct session management using Basic Authentication
110
116
  - Added ability to list and delete all active sessions without requiring a session
data/bin/idrac CHANGED
@@ -19,7 +19,6 @@ module IDRAC
19
19
  class_option :port, type: :numeric, default: 443, desc: "iDRAC port"
20
20
  class_option :no_ssl, type: :boolean, default: false, desc: "Disable SSL"
21
21
  class_option :verify_ssl, type: :boolean, default: false, desc: "Enable SSL verification (not recommended for iDRAC's self-signed certificates)"
22
- class_option :direct_mode, type: :boolean, default: false, desc: "Use direct mode with Basic Auth instead of sessions (for environments with session limits)"
23
22
 
24
23
  desc "firmware:update PATH", "Update firmware using the specified file"
25
24
  method_option :wait, type: :boolean, default: true, desc: "Wait for the update to complete"
@@ -192,8 +191,7 @@ module IDRAC
192
191
  password: options[:password],
193
192
  port: options[:port],
194
193
  use_ssl: !options[:no_ssl],
195
- verify_ssl: options[:verify_ssl],
196
- direct_mode: options[:direct_mode]
194
+ verify_ssl: options[:verify_ssl]
197
195
  )
198
196
  end
199
197
  end
data/lib/idrac/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module IDRAC
4
- VERSION = "0.1.19"
4
+ VERSION = "0.1.20"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: idrac
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.19
4
+ version: 0.1.20
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan Siegel