-
-
Notifications
You must be signed in to change notification settings - Fork 17
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
Showing
1 changed file
with
22 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# v0.9.0 | ||
|
||
This update brings with it some version upgrades and changes how | ||
required fields are calculated for minimum samples. That is | ||
samples that satisfy the minimum required fields present in a CRD. | ||
|
||
It will render fields better. | ||
|
||
Also fixed a problem where `{}` would not be rendered in case | ||
a top level object was required but didn't had any more required | ||
fields it self. In that case, it would be rendered as `field:` and | ||
that's it. Which made the schema fail. | ||
|
||
Now, a `{}` is correctly put after it if it's an object. For example: | ||
|
||
```yaml | ||
apiVersion: v1 | ||
kind: Whatever | ||
spec: | ||
fields: {} | ||
``` | ||