From 0feda1d7de6bdab96286c81eb0f2ccc2127040cf Mon Sep 17 00:00:00 2001 From: Adam Grare Date: Tue, 18 Jun 2024 14:53:11 -0400 Subject: [PATCH] Release v4.12.0 Added - Add test coverage for Ruby 3.2 (#615) - Allow a region when getting a signer for Aws::Sts (#507) - Update the AWS STS endpoint to be regional as the method is now regional (#528) - Assume role support for aws eks credentials (#630) Fixed - [v4.y] Regenerated expired test TLS certs by running `test/config/update_certs_k0s.rb`. - [v4.y] Regenerated expired test TLS certs (#611) - Regenerated expired test TLS certs (#632) Changed - Update actions/checkout (#590) - chore(deps): update actions/checkout action to v4 (#619) --- CHANGELOG.md | 17 +++++++++++++++++ lib/kubeclient/version.rb | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f0693663..50d5d126 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,23 @@ Notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). Kubeclient release versioning follows [SemVer](https://semver.org/). +## 4.12.0 - 2024-06-18 + +### Added +- Add test coverage for Ruby 3.2 (#615) +- Allow a region when getting a signer for Aws::Sts (#507) +- Update the AWS STS endpoint to be regional as the method is now regional (#528) +- Assume role support for aws eks credentials (#630) + +### Fixed +- [v4.y] Regenerated expired test TLS certs by running `test/config/update_certs_k0s.rb`. +- [v4.y] Regenerated expired test TLS certs (#611) +- Regenerated expired test TLS certs (#632) + +### Changed +- Update actions/checkout (#590) +- chore(deps): update actions/checkout action to v4 (#619) + ## 4.11.0 — 2022-12-22 ### Removed diff --git a/lib/kubeclient/version.rb b/lib/kubeclient/version.rb index fd66b35a..9db9e6a3 100644 --- a/lib/kubeclient/version.rb +++ b/lib/kubeclient/version.rb @@ -1,4 +1,4 @@ # Kubernetes REST-API Client module Kubeclient - VERSION = '4.11.0'.freeze + VERSION = '4.12.0'.freeze end