Yongrui Lin
Yongrui Lin
This PR updates the staging branch list and clarify publishing rules in the contributor directory. **Which issue(s) this PR fixes**: Fixes #
Need to use go workspace in editor when developing the ./v2 module. Add `go.work` and `go.work.sum` to .gitignore.
### Description #### Description The words ending with "ea" are not pluralized correctly. ``` func main() { fmt.Println(strings.ToLower(flect.Pluralize("area"))) fmt.Println(strings.ToLower(flect.Pluralize("idea"))) } ``` return ``` area idea ``` #### Expected Behavior return...
Refer: https://github.com/kubernetes/kubernetes/issues/136091 This PR enables enforcement of standard numeric formats (int32, int64, float, double) during schema validation. Previously, numberValidator was initialized without its Type and Format fields, causing it to...