diff --git a/CHANGELOG.md b/CHANGELOG.md index 06c9f6cb..a121a63c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,10 +11,6 @@ All notable changes to this project will be documented in this file. - Run a `containerdebug` process in the background of each Zookeeper container to collect debugging information ([#881]). - Aggregate emitted Kubernetes events on the CustomResources ([#904]). -### Changed - -- Append a dot (`.`) to the default cluster domain to reduce DNS requests ([#904]). - ### Fixed - BREAKING: Use distinct ServiceAccounts for the Stacklets, so that multiple Stacklets can be @@ -24,7 +20,6 @@ All notable changes to this project will be documented in this file. [#881]: https://github.com/stackabletech/zookeeper-operator/pull/881 [#889]: https://github.com/stackabletech/zookeeper-operator/pull/889 [#892]: https://github.com/stackabletech/zookeeper-operator/pull/892 -[#904]: https://github.com/stackabletech/zookeeper-operator/pull/904 ## [24.11.0] - 2024-11-18 diff --git a/Cargo.lock b/Cargo.lock index 553e684e..b1c1dc8d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2271,8 +2271,8 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" [[package]] name = "stackable-operator" -version = "0.84.0" -source = "git+https://github.com/stackabletech/operator-rs.git?tag=stackable-operator-0.84.0#af0d1f19d8770d346096a38c6dc82ba70e371039" +version = "0.84.1" +source = "git+https://github.com/stackabletech/operator-rs.git?tag=stackable-operator-0.84.1#b8fe43f7368249bf95b06d6cba3fd0135f7523ac" dependencies = [ "chrono", "clap", @@ -2310,7 +2310,7 @@ dependencies = [ [[package]] name = "stackable-operator-derive" version = "0.3.1" -source = "git+https://github.com/stackabletech/operator-rs.git?tag=stackable-operator-0.84.0#af0d1f19d8770d346096a38c6dc82ba70e371039" +source = "git+https://github.com/stackabletech/operator-rs.git?tag=stackable-operator-0.84.1#b8fe43f7368249bf95b06d6cba3fd0135f7523ac" dependencies = [ "darling", "proc-macro2", @@ -2321,7 +2321,7 @@ dependencies = [ [[package]] name = "stackable-shared" version = "0.0.1" -source = "git+https://github.com/stackabletech/operator-rs.git?tag=stackable-operator-0.84.0#af0d1f19d8770d346096a38c6dc82ba70e371039" +source = "git+https://github.com/stackabletech/operator-rs.git?tag=stackable-operator-0.84.1#b8fe43f7368249bf95b06d6cba3fd0135f7523ac" dependencies = [ "kube", "semver", diff --git a/Cargo.nix b/Cargo.nix index 662e7a7e..3d05e826 100644 --- a/Cargo.nix +++ b/Cargo.nix @@ -7071,13 +7071,13 @@ rec { }; "stackable-operator" = rec { crateName = "stackable-operator"; - version = "0.84.0"; + version = "0.84.1"; edition = "2021"; workspace_member = null; src = pkgs.fetchgit { url = "https://github.com/stackabletech/operator-rs.git"; - rev = "af0d1f19d8770d346096a38c6dc82ba70e371039"; - sha256 = "0r9ld6csfqcfaky9k98c9r1x663r8m1lkd1d9v957qkl32zl2gxw"; + rev = "b8fe43f7368249bf95b06d6cba3fd0135f7523ac"; + sha256 = "0vwq3dzxj56y4vrnw4ry7wajm12f32jipvc6f3izdrixy2pazq3i"; }; libName = "stackable_operator"; authors = [ @@ -7236,8 +7236,8 @@ rec { workspace_member = null; src = pkgs.fetchgit { url = "https://github.com/stackabletech/operator-rs.git"; - rev = "af0d1f19d8770d346096a38c6dc82ba70e371039"; - sha256 = "0r9ld6csfqcfaky9k98c9r1x663r8m1lkd1d9v957qkl32zl2gxw"; + rev = "b8fe43f7368249bf95b06d6cba3fd0135f7523ac"; + sha256 = "0vwq3dzxj56y4vrnw4ry7wajm12f32jipvc6f3izdrixy2pazq3i"; }; procMacro = true; libName = "stackable_operator_derive"; @@ -7271,8 +7271,8 @@ rec { workspace_member = null; src = pkgs.fetchgit { url = "https://github.com/stackabletech/operator-rs.git"; - rev = "af0d1f19d8770d346096a38c6dc82ba70e371039"; - sha256 = "0r9ld6csfqcfaky9k98c9r1x663r8m1lkd1d9v957qkl32zl2gxw"; + rev = "b8fe43f7368249bf95b06d6cba3fd0135f7523ac"; + sha256 = "0vwq3dzxj56y4vrnw4ry7wajm12f32jipvc6f3izdrixy2pazq3i"; }; libName = "stackable_shared"; authors = [ diff --git a/Cargo.toml b/Cargo.toml index c9ce2153..a2affbd8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" serde_yaml = "0.9" snafu = "0.8" -stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "stackable-operator-0.84.0" } +stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "stackable-operator-0.84.1" } product-config = { git = "https://github.com/stackabletech/product-config.git", tag = "0.7.0" } strum = { version = "0.26", features = ["derive"] } tokio = { version = "1.40", features = ["full"] } diff --git a/crate-hashes.json b/crate-hashes.json index d62fce74..a0346ddb 100644 --- a/crate-hashes.json +++ b/crate-hashes.json @@ -1,6 +1,6 @@ { - "git+https://github.com/stackabletech/operator-rs.git?tag=stackable-operator-0.84.0#stackable-operator-derive@0.3.1": "0r9ld6csfqcfaky9k98c9r1x663r8m1lkd1d9v957qkl32zl2gxw", - "git+https://github.com/stackabletech/operator-rs.git?tag=stackable-operator-0.84.0#stackable-operator@0.84.0": "0r9ld6csfqcfaky9k98c9r1x663r8m1lkd1d9v957qkl32zl2gxw", - "git+https://github.com/stackabletech/operator-rs.git?tag=stackable-operator-0.84.0#stackable-shared@0.0.1": "0r9ld6csfqcfaky9k98c9r1x663r8m1lkd1d9v957qkl32zl2gxw", + "git+https://github.com/stackabletech/operator-rs.git?tag=stackable-operator-0.84.1#stackable-operator-derive@0.3.1": "0vwq3dzxj56y4vrnw4ry7wajm12f32jipvc6f3izdrixy2pazq3i", + "git+https://github.com/stackabletech/operator-rs.git?tag=stackable-operator-0.84.1#stackable-operator@0.84.1": "0vwq3dzxj56y4vrnw4ry7wajm12f32jipvc6f3izdrixy2pazq3i", + "git+https://github.com/stackabletech/operator-rs.git?tag=stackable-operator-0.84.1#stackable-shared@0.0.1": "0vwq3dzxj56y4vrnw4ry7wajm12f32jipvc6f3izdrixy2pazq3i", "git+https://github.com/stackabletech/product-config.git?tag=0.7.0#product-config@0.7.0": "0gjsm80g6r75pm3824dcyiz4ysq1ka4c1if6k1mjm9cnd5ym0gny" } \ No newline at end of file