Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: hashicorp/vault-ruby/run-tests
name: Tests
on:
push:
branches:
Expand Down
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,31 @@

## v?.??.? (Unreleased)

## v0.19.0 (December 3, 2025)

BREAKING CHANGES

- Set minimum Ruby version to 3.1. All EOL Ruby versions are no longer supported. [GH-352]

IMPROVEMENTS

- Upgraded vendored `net-http-persistent` from 3.0.0 to upstream gem 4.0.2+, which includes:
- Fixes compatibility with `connection-pool` 2.4
- Supports TLS min/max and IPv6
- Fixes a memory leak in connection pooling
- Many bugfixes [GH-345]
- Upgraded vendored `connection-pool` from 2.2.0 to upstream gem 2.4+, which includes:
- Fixes argument forwarding for Ruby 2.7+
- Automatically drops all connections after fork [GH-345]
- Added dependency on `base64` gem for Ruby 3.4 compatibility [GH-352]
- Added Ruby 3.3 and 3.4 to CI matrix [GH-352]
- Added modern Vault versions (1.16, 1.19, 1.20, 1.21) to CI matrix [GH-352]
- Replaced deprecated `JSON.fast_generate` with `JSON.generate` [GH-349]

BUG FIXES

- Fixed HTTP client shutdown to be lock-protected, ensuring thread-safe access to `@nhp` [GH-329]

## v0.18.1 (September 14, 2023)

BUG FIXES
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Vault Ruby Client [![Build Status](https://circleci.com/gh/hashicorp/vault-ruby.svg?style=shield)](https://circleci.com/gh/hashicorp/vault-ruby)
Vault Ruby Client [![Build Status](https://github.com/hashicorp/vault-ruby/actions/workflows/run-tests.yml/badge.svg?branch=master)](https://github.com/hashicorp/vault-ruby/actions/workflows/run-tests.yml)
=================

Vault is the official Ruby client for interacting with [Vault](https://vaultproject.io) by HashiCorp.
Expand All @@ -9,9 +9,9 @@ Vault Ruby client for the proper documentation.**

Quick Start
-----------
Install Ruby 2.0+: [Guide](https://www.ruby-lang.org/en/documentation/installation/).
Install Ruby 3.1+: [Guide](https://www.ruby-lang.org/en/documentation/installation/).

> Please note that as of Vault Ruby version 0.14.0 versions of Ruby prior to 2.0 are no longer supported.
> Please note that as of Vault Ruby version 0.19.0, the minimum required Ruby version is 3.1. All EOL Ruby versions are no longer supported.

Install via Rubygems:

Expand Down
2 changes: 1 addition & 1 deletion lib/vault/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
# SPDX-License-Identifier: MPL-2.0

module Vault
VERSION = "0.18.2"
VERSION = "0.19.0"
end
Loading