File tree Expand file tree Collapse file tree 4 files changed +10
-10
lines changed
Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -4,14 +4,12 @@ All notable changes to this project will be documented in this file.
44
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) .
66
7- ## [ Unreleased]
8-
9- ### Added
10-
11- ### Changed
7+ ## [ 0.34.3 - 2025-08-05]
8+ This release fixes an issue preventing /node/show/<hostname > to work in oxidized-web.
129
1310### Fixed
14- Guarantee that node vars is a dict (Issue ytti/oxidized-web #365 ) (@ytti )
11+ - Guarantee that node vars is a dict (Issue ytti/oxidized-web #365 ) (@ytti )
12+
1513
1614## [ 0.34.2 – 2025-08-01]
1715This release mainly fixes a bug in input/scp that made ssh raise an error when
Original file line number Diff line number Diff line change @@ -13,9 +13,11 @@ class << self
1313 def inherited ( klass )
1414 super
1515 if klass . superclass == Oxidized ::Model
16+ # rubocop:disable Style/RedundantParentheses
1617 klass . instance_variable_set '@cmd' , ( Hash . new { |h , k | h [ k ] = [ ] } )
1718 klass . instance_variable_set '@cfg' , ( Hash . new { |h , k | h [ k ] = [ ] } )
1819 klass . instance_variable_set '@procs' , ( Hash . new { |h , k | h [ k ] = [ ] } )
20+ # rubocop:enable Style/RedundantParentheses
1921 klass . instance_variable_set '@expect' , [ ]
2022 klass . instance_variable_set '@comment' , nil
2123 klass . instance_variable_set '@prompt' , nil
Original file line number Diff line number Diff line change 11# frozen_string_literal: true
22
33module Oxidized
4- VERSION = '0.34.2 '
5- VERSION_FULL = '0.34.2 '
4+ VERSION = '0.34.3 '
5+ VERSION_FULL = '0.34.3 '
66 def self . version_set
77 version_full = %x(git describe --tags) . chop rescue ""
88 version = %x(git describe --tags --abbrev=0) . chop rescue ""
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ Gem::Specification.new do |s|
4747 s . add_dependency 'syslog_protocol' , '~> 0.9.2'
4848
4949 s . add_development_dependency 'bundler' , '~> 2.2'
50- # ruby-git 4.0 requests ruby >= 3.2, we stick to >= 3.1 (Ubuntu Noble/Debian Bookworm)
50+ # ruby-git 4.0 requests ruby >= 3.2, we stick to ruby >= 3.1 (Ubuntu Noble/Debian Bookworm)
5151 s . add_development_dependency 'git' , '>= 2.0' , '< 3.2.0'
5252 s . add_development_dependency 'minitest' , '~> 5.25.4'
5353 s . add_development_dependency 'mocha' , '~> 2.1'
@@ -61,5 +61,5 @@ Gem::Specification.new do |s|
6161
6262 # Dependencies on optional libraries, used for unit tests & development
6363 s . add_development_dependency 'oxidized-web' , '~> 0.17.1'
64- s . add_development_dependency 'sequel' , '>= 5.63.0' , '<= 5.94 .0'
64+ s . add_development_dependency 'sequel' , '>= 5.63.0' , '< 5.96 .0'
6565end
You can’t perform that action at this time.
0 commit comments