Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions crates/stackable-operator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,16 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

### Added

- Add the Cargo features `kube-http-proxy` and `kube-socks5` that enable the `http-proxy` and `socks5` features on the `kube` crate ([#1269]).

### Changed

- BREAKING: `ClusterResources` now warns about `objectOverrides` entries that did not match any of the objects it created. To enable this, the signatures of `apply_deep_merge` and `ObjectOverrides::apply_to` needed to be adjusted ([#1264]).

[#1264]: https://github.com/stackabletech/operator-rs/pull/1264
[#1269]: https://github.com/stackabletech/operator-rs/pull/1269

## [0.116.0] - 2026-08-14

Expand Down
4 changes: 3 additions & 1 deletion crates/stackable-operator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repository.workspace = true

[features]
default = ["crds"]
full = ["client-feature-gates", "crds", "certs", "test-support", "time", "webhook", "kube-ws", "kube-cel"]
full = ["client-feature-gates", "crds", "certs", "test-support", "time", "webhook", "kube-ws", "kube-cel", "kube-http-proxy", "kube-socks5"]

client-feature-gates = ["dep:winnow"]
crds = ["dep:stackable-versioned"]
Expand All @@ -19,6 +19,8 @@ time = ["stackable-shared/time"]
webhook = ["dep:stackable-webhook"]
kube-ws = ["kube/ws"]
kube-cel = ["kube/cel"]
kube-http-proxy = ["kube/http-proxy"]
kube-socks5 = ["kube/socks5"]

[dependencies]
stackable-certs = { path = "../stackable-certs", optional = true }
Expand Down