Skip to content
Open
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
464 changes: 202 additions & 262 deletions Cargo.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ hyper = { version = "1.4.1", features = ["full"] }
hyper-util = "0.1.8"
itertools = "0.14.0"
json-patch = "4.0.0"
k8s-openapi = { version = "0.25.0", default-features = false, features = ["schemars", "v1_33"] }
k8s-openapi = { version = "0.26.0", default-features = false, features = ["schemars", "v1_34"] }
# We use rustls instead of openssl for easier portability, e.g. so that we can build stackablectl without the need to vendor (build from source) openssl
# We use ring instead of aws-lc-rs, as this currently fails to build in "make run-dev"
kube = { version = "1.1.0", default-features = false, features = ["client", "jsonpatch", "runtime", "derive", "rustls-tls", "ring"] }
kube = { version = "2.0.0", default-features = false, features = ["client", "jsonpatch", "runtime", "derive", "rustls-tls", "ring"] }
opentelemetry = "0.30.0"
opentelemetry_sdk = { version = "0.30.0", features = ["rt-tokio"] }
opentelemetry-appender-tracing = "0.30.1"
Expand All @@ -55,7 +55,7 @@ regex = "1.10.6"
rsa = { version = "0.9.6", features = ["sha2"] }
rstest = "0.26.1"
rstest_reuse = "0.7.0"
schemars = { version = "0.8.21", features = ["url"] }
schemars = { version = "1.0.0", features = ["url2"] }
semver = "1.0.23"
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.128"
Expand Down
5 changes: 5 additions & 0 deletions crates/stackable-operator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ All notable changes to this project will be documented in this file.

- BREAKING: Add a new CLI flag/env to disabling CRD maintenance: `--disable-crd-maintenance` ([#1085]).

### Changed

- BREAKING: Upgrade to `schemars` 1.0, `kube` 2.0 and `k8s-openapi` 0.26 (using Kubernetes 1.34) ([#1091]).

### Removed

- BREAKING: Remove the Merge implementation for PodTemplateSpec ([#1087]).
Expand All @@ -21,6 +25,7 @@ All notable changes to this project will be documented in this file.
[#1085]: https://github.com/stackabletech/operator-rs/pull/1085
[#1087]: https://github.com/stackabletech/operator-rs/pull/1087
[#1090]: https://github.com/stackabletech/operator-rs/pull/1090
[#1091]: https://github.com/stackabletech/operator-rs/pull/1091

## [0.96.0] - 2025-08-25

Expand Down
112 changes: 88 additions & 24 deletions crates/stackable-operator/crds/AuthenticationClass.yaml

Large diffs are not rendered by default.

439 changes: 392 additions & 47 deletions crates/stackable-operator/crds/DummyCluster.yaml

Large diffs are not rendered by default.

9 changes: 7 additions & 2 deletions crates/stackable-operator/crds/Listener.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 12 additions & 4 deletions crates/stackable-operator/crds/ListenerClass.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion crates/stackable-operator/crds/PodListeners.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

52 changes: 40 additions & 12 deletions crates/stackable-operator/crds/S3Bucket.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading