Skip to content

Commit

Permalink
import changes
Browse files Browse the repository at this point in the history
Signed-off-by: clux <[email protected]>
  • Loading branch information
clux committed Dec 22, 2023
1 parent 11b6a3d commit 09ffb61
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 6 deletions.
20 changes: 16 additions & 4 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,26 @@
<!-- DO NOT touch the headers, UNRELEAS'D line, or compare url manually - they are sed'd -->
<!-- next-header -->
## Unreleased
* see https://github.com/kube-rs/kube/compare/0.87.1...main
* see https://github.com/kube-rs/kube/compare/0.87.2...main

## [0.87.2](https://github.com/kube-rs/kube/releases/tag/0.87.2) / 2023-12-22
<!-- Release notes generated using configuration in .github/release.yml at 0.87.2 -->

## What's Changed
### Added
* Add support for `LogParams::since_time` by @clux in https://github.com/kube-rs/kube/pull/1342
* Provide cluster info to exec plugins by @aviramha in https://github.com/kube-rs/kube/pull/1331
* Allow setting a description on a derived CRD by @sbernauer in https://github.com/kube-rs/kube/pull/1359
### Changed
* Bump MSRV from 1.64 to 1.65 by @clux in https://github.com/kube-rs/kube/pull/1353
* Switch from `jsonpath_lib` to `jsonpath-rust` by @ilya-bobyr in https://github.com/kube-rs/kube/pull/1345

## [0.87.1](https://github.com/kube-rs/kube/releases/tag/0.87.1) / 2023-11-01
<!-- Release notes generated using configuration in .github/release.yml at 0.87.1 -->
## 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
- fixed a `Controller` issue with reconciliation requests disappearing when using `concurrency` [#1324](https://github.com/kube-rs/kube/issues/1324)
- improved `Client` with better exec auth behaviour [#1320](https://github.com/kube-rs/kube/issues/1320), timeout control [#1314](https://github.com/kube-rs/kube/issues/1314), and socks5 proxy handling [#1311](https://github.com/kube-rs/kube/issues/1311)
- small changes to an unstable streams feature [#1304](https://github.com/kube-rs/kube/issues/1304), and a a derive property that is now illegal with `syn` 2 [#1307](https://github.com/kube-rs/kube/issues/1307)

Big thanks to everyone involved 🎃

Expand Down
4 changes: 2 additions & 2 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Select a version of `kube` along with the generated [k8s-openapi](https://github

```toml
[dependencies]
kube = { version = "0.87.1", features = ["runtime", "derive"] }
kube = { version = "0.87.2", features = ["runtime", "derive"] }
k8s-openapi = { version = "0.20.0", features = ["latest"] }
```

Expand Down Expand Up @@ -142,7 +142,7 @@ By default [rustls](https://github.com/ctz/rustls) is used for TLS, but `openssl

```toml
[dependencies]
kube = { version = "0.87.1", default-features = false, features = ["client", "openssl-tls"] }
kube = { version = "0.87.2", default-features = false, features = ["client", "openssl-tls"] }
k8s-openapi = { version = "0.20.0", features = ["latest"] }
```

Expand Down

0 comments on commit 09ffb61

Please sign in to comment.