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
+13-2Lines changed: 13 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,19 +7,30 @@ All notable changes to this project will be documented in this file.
7
7
### Added
8
8
9
9
- Re-export the `YamlSchema` trait and the `stackable-shared` crate as the `shared` module ([#883]).
10
+
- BREAKING: Added `preferredAddressType` field to ListenerClass CRD ([#885]).
10
11
11
12
### Changed
12
13
13
14
- BREAKING: The `CustomResourceExt` trait is now re-exported from the `stackable-shared` crate. The
14
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).
15
24
16
25
### Removed
17
26
18
27
- BREAKING: The `CustomResourceExt` trait doesn't provide a `generate_yaml_schema` function any
19
28
more. Instead, use the high-level functions to write the schema to a file, write it to stdout or
0 commit comments