-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8a47247
commit 0a51c82
Showing
5 changed files
with
32 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Releases | ||
======== | ||
|
||
# v0.2.0 | ||
* supports protobuf edition 2023 | ||
* added `clojobuf.core/default-msg` method for creating a complete message filled based on the following rules: | ||
* required: default (or `nil` for message field) | ||
* optional: `nil` | ||
* implicit: default | ||
* repeated: `[]` | ||
* oneof: `nil` | ||
* map: {} | ||
* allow message field to be `nil` which will not be serialized and will be interpretted as absent during validation | ||
* `clojobuf.core/decode` will validate decoded message and return `nil` if it fails (i.e. missing required field) | ||
* `clojobuf.core/decode` will merge validated decoded message with the default before returning | ||
* use ordered-map for better dev QOL when viewing | ||
|
||
# v0.1.12 | ||
* release: baseline |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters