Skip to content

Commit 0f6cb6f

Browse files
committed
release 0.92.0
1 parent accfa03 commit 0f6cb6f

File tree

9 files changed

+18
-15
lines changed

9 files changed

+18
-15
lines changed

CHANGELOG.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@
55
<!-- next-header -->
66
UNRELEASED
77
===================
8-
* see https://github.com/kube-rs/kube/compare/0.91.0...main
8+
* see https://github.com/kube-rs/kube/compare/0.92.0...main
9+
10+
0.92.0 / 2024-06-12
11+
===================
912

1013
[0.91.0](https://github.com/kube-rs/kube/releases/tag/0.91.0) / 2024-05-06
1114
===================
@@ -14,7 +17,7 @@ UNRELEASED
1417
Please [upgrade k8s-openapi along with kube](https://kube.rs/upgrading/) to avoid conflicts.
1518

1619
## Unstable Stream Sharing
17-
A more complete implementation that allows sharing `watcher` streams between multiple `Controller`s (for https://github.com/kube-rs/kube/issues/1080) has been added under the `unstable-runtime` [feature-flag](https://kube.rs/stability/#unstable-features) in #1449 and #1483 by @mateiidavid. This represents the first usable implementation of shared streams (and replaces the older prototype part in #1470). While some changes are expected, you can check the [shared_stream_controller example](https://github.com/kube-rs/kube/blob/main/examples/shared_stream_controllers.rs) for a high-level overview.
20+
A more complete implementation that allows sharing `watcher` streams between multiple `Controller`s (for https://github.com/kube-rs/kube/issues/1080) has been added under the `unstable-runtime` [feature-flag](https://kube.rs/stability/#unstable-features) in [#1449](https://github.com/kube-rs/kube/issues/1449) and [#1483](https://github.com/kube-rs/kube/issues/1483) by @mateiidavid. This represents the first usable implementation of shared streams (and replaces the older prototype part in [#1470](https://github.com/kube-rs/kube/issues/1470)). While some changes are expected, you can check the [shared_stream_controller example](https://github.com/kube-rs/kube/blob/main/examples/shared_stream_controllers.rs) for a high-level overview.
1821

1922
## What's Changed
2023
### Added

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ members = [
1414
]
1515

1616
[workspace.package]
17-
version = "0.91.0"
17+
version = "0.92.0"
1818
authors = [
1919
"clux <sszynrae@gmail.com>",
2020
"Natalie Klestrup Röijezon <nat@nullable.se>",

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Select a version of `kube` along with the generated [k8s-openapi](https://github
1616

1717
```toml
1818
[dependencies]
19-
kube = { version = "0.91.0", features = ["runtime", "derive"] }
19+
kube = { version = "0.92.0", features = ["runtime", "derive"] }
2020
k8s-openapi = { version = "0.22.0", features = ["latest"] }
2121
```
2222

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

156156
```toml
157157
[dependencies]
158-
kube = { version = "0.91.0", default-features = false, features = ["client", "openssl-tls"] }
158+
kube = { version = "0.92.0", default-features = false, features = ["client", "openssl-tls"] }
159159
k8s-openapi = { version = "0.22.0", features = ["latest"] }
160160
```
161161

e2e/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ openssl = ["kube/openssl-tls"]
2727
anyhow.workspace = true
2828
tracing.workspace = true
2929
tracing-subscriber.workspace = true
30-
kube = { path = "../kube", version = "^0.91.0", default-features = false, features = ["client", "runtime", "ws", "admission", "gzip"] }
30+
kube = { path = "../kube", version = "^0.92.0", default-features = false, features = ["client", "runtime", "ws", "admission", "gzip"] }
3131
k8s-openapi.workspace = true
3232
serde_json.workspace = true
3333
tokio = { workspace = true, features = ["full"] }

examples/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ anyhow.workspace = true
2929
futures = { workspace = true, features = ["async-await"] }
3030
jsonpath-rust.workspace = true
3131
jsonptr.workspace = true
32-
kube = { path = "../kube", version = "^0.91.0", default-features = false, features = ["admission"] }
33-
kube-derive = { path = "../kube-derive", version = "^0.91.0", default-features = false } # only needed to opt out of schema
32+
kube = { path = "../kube", version = "^0.92.0", default-features = false, features = ["admission"] }
33+
kube-derive = { path = "../kube-derive", version = "^0.92.0", default-features = false } # only needed to opt out of schema
3434
k8s-openapi.workspace = true
3535
serde = { workspace = true, features = ["derive"] }
3636
serde_json.workspace = true

kube-client/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ rustls = { workspace = true, optional = true }
5858
rustls-pemfile = { workspace = true, optional = true }
5959
bytes = { workspace = true, optional = true }
6060
tokio = { workspace = true, features = ["time", "signal", "sync"], optional = true }
61-
kube-core = { path = "../kube-core", version = "=0.91.0" }
61+
kube-core = { path = "../kube-core", version = "=0.92.0" }
6262
jsonpath-rust = { workspace = true, optional = true }
6363
tokio-util = { workspace = true, features = ["io", "codec"], optional = true }
6464
hyper = { workspace = true, features = ["client", "http1"], optional = true }

kube-derive/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Add the `derive` feature to `kube`:
66

77
```toml
88
[dependencies]
9-
kube = { version = "0.91.0", feature = ["derive"] }
9+
kube = { version = "0.92.0", feature = ["derive"] }
1010
```
1111

1212
## Usage

kube-runtime/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ rust.unsafe_code = "forbid"
3131

3232
[dependencies]
3333
futures = { workspace = true, features = ["async-await"] }
34-
kube-client = { path = "../kube-client", version = "=0.91.0", default-features = false, features = ["jsonpatch", "client"] }
34+
kube-client = { path = "../kube-client", version = "=0.92.0", default-features = false, features = ["jsonpatch", "client"] }
3535
derivative.workspace = true
3636
serde.workspace = true
3737
ahash.workspace = true

kube/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ rustdoc-args = ["--cfg", "docsrs"]
4646
workspace = true
4747

4848
[dependencies]
49-
kube-derive = { path = "../kube-derive", version = "=0.91.0", optional = true }
50-
kube-core = { path = "../kube-core", version = "=0.91.0" }
51-
kube-client = { path = "../kube-client", version = "=0.91.0", default-features = false, optional = true }
52-
kube-runtime = { path = "../kube-runtime", version = "=0.91.0", optional = true}
49+
kube-derive = { path = "../kube-derive", version = "=0.92.0", optional = true }
50+
kube-core = { path = "../kube-core", version = "=0.92.0" }
51+
kube-client = { path = "../kube-client", version = "=0.92.0", default-features = false, optional = true }
52+
kube-runtime = { path = "../kube-runtime", version = "=0.92.0", optional = true}
5353
# Not used directly, but required by resolver 2.0 to ensure that the k8s-openapi dependency
5454
# is considered part of the "deps" graph rather than just the "dev-deps" graph
5555
k8s-openapi.workspace = true

0 commit comments

Comments
 (0)