You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: crates/stackable-operator/CHANGELOG.md
+10-7Lines changed: 10 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,23 +8,26 @@ All notable changes to this project will be documented in this file.
8
8
9
9
- Re-export the `YamlSchema` trait and the `stackable-shared` crate as the `shared` module ([#883]).
10
10
- BREAKING: Added `preferredAddressType` field to ListenerClass CRD ([#885]).
11
-
- BREAKING: The cluster domain (default: `cluster.local`) can now be configured in the individual operators
12
-
via the ENV variable `KUBERNETES_CLUSTER_DOMAIN` or resolved automatically by parsing the
13
-
`/etc/resolve.conf`. This requires using `initialze_operator` instead of `create_client` in the `main.rs`
14
-
of the individual operators ([#893]).
11
+
- BREAKING: The cluster domain (default: `cluster.local`) can now be configured in the individual
12
+
operators via the ENV variable `KUBERNETES_CLUSTER_DOMAIN` or resolved automatically by parsing
13
+
the `/etc/resolve.conf` file. This requires using `initialize_operator` instead of `create_client`
14
+
in the `main.rs`of the individual operators ([#893]).
15
15
16
16
### Changed
17
17
18
18
- BREAKING: The `CustomResourceExt` trait is now re-exported from the `stackable-shared` crate. The
19
19
trait functions use the same parameters but return a different error type ([#883]).
20
-
- BREAKING: `KeyValuePairs` (as well as `Labels`/`Annotations` via it) is now backed by a `BTreeMap` rather than a `BTreeSet` ([#888]).
20
+
- BREAKING: `KeyValuePairs` (as well as `Labels`/`Annotations` via it) is now backed by a `BTreeMap`
21
+
rather than a `BTreeSet` ([#888]).
21
22
- The `Deref` impl now returns a `BTreeMap` instead.
22
23
-`iter()` now clones the values.
23
24
24
25
### Fixed
25
26
26
-
- BREAKING: `KeyValuePairs::insert` (as well as `Labels::`/`Annotations::` via it) now overwrites the old value if the key already exists ([#888]).
27
-
- Previously, `iter()` would return *both* values in lexicographical order (causing further conversions like `Into<BTreeMap>` to prefer the maximum value).
27
+
- BREAKING: `KeyValuePairs::insert` (as well as `Labels::`/`Annotations::` via it) now overwrites
28
+
the old value if the key already exists. Previously, `iter()` would return *both* values in
29
+
lexicographical order (causing further conversions like `Into<BTreeMap>` to prefer the maximum
0 commit comments