File tree Expand file tree Collapse file tree 3 files changed +10
-5
lines changed
Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,14 @@ 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- ## HEAD [ Unreleased]
7+ ## [ 0.34.2 – 2025-08-01]
8+ This release mainly fixes a bug in input/scp that made ssh raise an error when
9+ closing a closed connection (Issue #3583 ).
10+
11+ A fix for config vars (Issue #3536 ) changes the way oxidized stores its
12+ vars internally (symblos => strings). Libraries depending on oxidized internal
13+ structures may have problem with this. oxidized-web was fixed in Release 0.17.1.
14+
815### Added
916- Absolute time limit for a fetch job (default: 300 seconds) (@robertcheramy )
1017
Original file line number Diff line number Diff line change @@ -39,8 +39,6 @@ Test the git code and the container against as much device types and
3939environments as you can.
4040
4141## Bump the version
42- Name the release branch ` release/0.xx.yy `
43-
4442Update CHANGELOG.md:
4543- review it
4644- add release notes
Original file line number Diff line number Diff line change 11# frozen_string_literal: true
22
33module Oxidized
4- VERSION = '0.34.1 '
5- VERSION_FULL = '0.34.1 '
4+ VERSION = '0.34.2 '
5+ VERSION_FULL = '0.34.2 '
66 def self . version_set
77 version_full = %x(git describe --tags) . chop rescue ""
88 version = %x(git describe --tags --abbrev=0) . chop rescue ""
You can’t perform that action at this time.
0 commit comments