From 5813ad043e00e7b34de5e22a3fd983419ece2493 Mon Sep 17 00:00:00 2001 From: clux Date: Wed, 1 Nov 2023 19:33:46 +0000 Subject: [PATCH] import release notes for 0.87.1 closes #1333 Signed-off-by: clux --- CHANGELOG.md | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index caf6f96d3..c67092a24 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,9 +7,31 @@ UNRELEASED =================== * see https://github.com/kube-rs/kube/compare/0.87.1...main -0.87.1 / 2023-11-01 +[0.87.1](https://github.com/kube-rs/kube/releases/tag/0.87.1) / 2023-11-01 =================== + +## Headlines +- fixed a `Controller` issue with reconciliation requests disappearing when using `concurrency` #1324 +- improved `Client` with better exec auth behaviour #1320, timeout control #1314, and socks5 proxy handling #1311 +- small changes to an unstable streams feature #1304, and a a derive property that is now illegal with `syn` 2 #1307 + +Big thanks to everyone involved 🎃 + +## What's Changed +### Added +* Feature-flagged support for `socks5` proxy in `Client` by @Razz4780 in https://github.com/kube-rs/kube/pull/1311 +* Add example for raw API Server requests by @mateiidavid in https://github.com/kube-rs/kube/pull/1330 +### Changed +* Document `Controller::reconcile_on` and remove `Err` input requirement by @clux in https://github.com/kube-rs/kube/pull/1304 +* Bump `base64` to `0.21` by @clux in https://github.com/kube-rs/kube/pull/1308 +* Upgrade `darling` and `syn` and rename `#[kube(struct)]` by @clux in https://github.com/kube-rs/kube/pull/1307 +### Fixed +* Fixed `KUBERNETES_EXEC_INFO` environment variable passed to auth plugins by @Razz4780 in https://github.com/kube-rs/kube/pull/1320 +* Fix `Controller`: pending messages are stuck in the `scheduled` map by @co42 in https://github.com/kube-rs/kube/pull/1324 +* Set a default write timeout by @alex-hunt-materialize in https://github.com/kube-rs/kube/pull/1314 + +**Full Changelog**: https://github.com/kube-rs/kube/compare/0.86.0...0.87.1 [0.86.0](https://github.com/kube-rs/kube/releases/tag/0.86.0) / 2023-09-08 ===================