Skip to content

Commit

Permalink
sync 0.94.2
Browse files Browse the repository at this point in the history
Signed-off-by: clux <[email protected]>
  • Loading branch information
clux committed Sep 13, 2024
1 parent 35fc51b commit 711184d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
11 changes: 10 additions & 1 deletion docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,16 @@
<!-- 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.94.1...main
* see https://github.com/kube-rs/kube/compare/0.94.2...main

## [0.94.2](https://github.com/kube-rs/kube/releases/tag/0.94.2) / 2024-09-13
<!-- Release notes generated using configuration in .github/release.yml at 0.94.2 -->

## What's Changed
Fixes a runtime regression in [`watch_object`](https://docs.rs/kube/latest/kube/runtime/watcher/fn.watch_object.html).

### Fixed
* Ensure `watch_object` handles objects removed before init by @markdingram in https://github.com/kube-rs/kube/pull/1577

## [0.94.1](https://github.com/kube-rs/kube/releases/tag/0.94.1) / 2024-09-09
<!-- Release notes generated using configuration in .github/release.yml at 0.94.1 -->
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.94.1", features = ["runtime", "derive"] }
kube = { version = "0.94.2", features = ["runtime", "derive"] }
k8s-openapi = { version = "0.22.0", features = ["latest"] }
```

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

```toml
[dependencies]
kube = { version = "0.94.1", default-features = false, features = ["client", "openssl-tls"] }
kube = { version = "0.94.2", default-features = false, features = ["client", "openssl-tls"] }
k8s-openapi = { version = "0.22.0", features = ["latest"] }
```

Expand Down

0 comments on commit 711184d

Please sign in to comment.