Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
57 commits
Select commit Hold shift + click to select a range
8d9d190
Initial commit
Techassi Oct 31, 2023
e59b225
Fix failing doc tests
Techassi Oct 31, 2023
2173dc5
Start to add more doc comments
Techassi Oct 31, 2023
b7b1dfb
Finish doc comments
Techassi Nov 2, 2023
f624afb
Add KeyValuePairs, add TryFrom<(&str, &str)> impl
Techassi Nov 2, 2023
5216c00
Add BTreeMap helper functions
Techassi Nov 3, 2023
215d57c
Add FromIterator impl
Techassi Nov 3, 2023
e9ffbe1
Start to add more test cases
Techassi Nov 3, 2023
5724407
Add invalid kvp tests
Techassi Nov 6, 2023
601b658
Add key, key prefix, and key name tests
Techassi Nov 6, 2023
23587bd
Add value tests
Techassi Nov 6, 2023
9d820af
Rename max length constants
Techassi Nov 6, 2023
88af1ab
Add associated function `push`
Techassi Nov 7, 2023
0ad1691
Rename unit tests
Techassi Nov 21, 2023
46c232e
Introduce generic type parameter to allow different value impls
Techassi Nov 22, 2023
fe45642
Fix annotation macro, add unit test
Techassi Nov 22, 2023
281232c
Rename generic type param, fix rustdoc error
Techassi Nov 22, 2023
a4e20aa
Add doc comments to macros
Techassi Nov 22, 2023
8c2dc0f
Update changelog
Techassi Nov 23, 2023
a95f3ac
Add macros and full feature
Techassi Nov 23, 2023
8e15d10
Start to change KeyValuePairs from Vec to HashSet
Techassi Nov 23, 2023
d164bae
Merge branch 'main' into feat/kvp
Techassi Nov 24, 2023
41510c0
Implement serde serialize
Techassi Nov 24, 2023
b5eed4b
Implement serde deserialize
Techassi Nov 24, 2023
d45854e
Use BTreeSet instead of HashSet for deterministic ordering
Techassi Nov 24, 2023
162e1d9
Add common func, add serde tests, fix deserialization
Techassi Nov 24, 2023
d6d2a7b
Introduce newtype Label and Annotation structs
Techassi Nov 28, 2023
bd8061a
Add recommended label function
Techassi Nov 28, 2023
7c46bcd
Start to adjust other label handling code (wip)
Techassi Nov 29, 2023
b19801c
Continue label/annotation handling code
Techassi Dec 4, 2023
366dd48
Add final fixes without breaking changes
Techassi Dec 5, 2023
d4bcc1f
Merge branch 'main' into feat/kvp
Techassi Dec 5, 2023
21eee91
Add label and annotation error type aliases
Techassi Dec 5, 2023
b0e74d8
Remove unwraps in secret volume builder
Techassi Dec 5, 2023
4380b05
Remove unwraps from listener volume builder
Techassi Dec 5, 2023
b52db5b
Remove unwraps in object meta builder
Techassi Dec 5, 2023
e4728a9
Remove unwraps in PDB builder
Techassi Dec 5, 2023
d127186
Rename trait ValueExt to Value
Techassi Dec 5, 2023
139b973
Change deref target
Techassi Dec 5, 2023
b3a897e
Simplify key parsing
Techassi Dec 6, 2023
28f73c8
Remove unneeded annotation validation
Techassi Dec 6, 2023
7cc8522
Remove FromStr impl for KeyValuePair, Label, and Annotation
Techassi Dec 6, 2023
be4d3a9
Remove unwraps from ClusterResources
Techassi Dec 6, 2023
99a09ee
Add annotation doc comments
Techassi Dec 11, 2023
df924e1
Add label doc comments
Techassi Dec 11, 2023
5fcec5a
Add module doc comment, remove outdated struct comment
Techassi Dec 11, 2023
5a0a789
Update const names, add doc comments
Techassi Dec 12, 2023
7e6279d
Remove label and annotation macro
Techassi Dec 12, 2023
cfaffd4
Add const module doc comment
Techassi Dec 12, 2023
6dcb465
Update and move label selector to query string functionality
Techassi Dec 12, 2023
007b028
Fix rustdoc error
Techassi Dec 12, 2023
5bf9873
Move workspace member back
Techassi Dec 14, 2023
1e6979f
Add doc comments to ObjectLabels struct
Techassi Dec 14, 2023
bd3814c
Add missing doc comments
Techassi Dec 14, 2023
bd2816c
Remove Deserialize and Serialize support
Techassi Dec 15, 2023
af7e522
Rework contains and add contains_key function
Techassi Dec 15, 2023
6f7375c
Merge branch 'main' into feat/kvp
Techassi Dec 15, 2023
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Merge branch 'main' into feat/kvp
  • Loading branch information
Techassi committed Dec 15, 2023
commit 6f7375ccb7d6a3c2ef5d1651ed175bd1829d6e8d
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,14 @@ All notable changes to this project will be documented in this file.

[#684]: https://github.com/stackabletech/operator-rs/pull/684

## [0.58.1] - 2023-12-12

### Added

- More CRD documentation ([#697]).

[#697]: https://github.com/stackabletech/operator-rs/pull/697

## [0.58.0] - 2023-12-04

### Added
Expand Down
3 changes: 2 additions & 1 deletion src/commons/secret_class.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ pub struct SecretClassVolume {
/// [SecretClass](DOCS_BASE_URL_PLACEHOLDER/secret-operator/secretclass) containing the LDAP bind credentials.
pub secret_class: String,

/// [Scope](https://docs.stackable.tech/secret-operator/scope.html) of the [SecretClass](https://docs.stackable.tech/secret-operator/secretclass.html)
/// [Scope](DOCS_BASE_URL_PLACEHOLDER/secret-operator/scope) of the
/// [SecretClass](DOCS_BASE_URL_PLACEHOLDER/secret-operator/secretclass).
pub scope: Option<SecretClassVolumeScope>,
}

Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.