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-1
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,14 @@ All notable changes to this project will be documented in this file.
13
13
14
14
- BREAKING: The `CustomResourceExt` trait is now re-exported from the `stackable-shared` crate. The
15
15
trait functions use the same parameters but return a different error type ([#883]).
16
+
- BREAKING: `KeyValuePairs` (as well as `Labels`/`Annotations` via it) is now backed by a `BTreeMap` rather than a `BTreeSet` ([#888]).
17
+
- The `Deref` impl now returns a `BTreeMap` instead.
18
+
-`iter()` now clones the values.
19
+
20
+
### Fixed
21
+
22
+
- BREAKING: `KeyValuePairs::insert` (as well as `Labels::`/`Annotations::` via it) now overwrites the old value if the key already exists ([#888]).
23
+
- Previously, `iter()` would return *both* values in lexicographical order (causing further conversions like `Into<BTreeMap>` to prefer the maximum value).
16
24
17
25
### Removed
18
26
@@ -22,6 +30,7 @@ All notable changes to this project will be documented in this file.
0 commit comments