| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| Goa v3.25.3 source code.tar.gz | 2026-02-19 | 1.3 MB | |
| Goa v3.25.3 source code.zip | 2026-02-19 | 2.3 MB | |
| README.md | 2026-02-19 | 723 Bytes | |
| Totals: 3 Items | 3.7 MB | 0 | |
Highlights
- Fixes a code generation regression where HTTP request decoders for primitive payloads (e.g.
string,bool, numeric types) could emit invalid early returns (return nil, err) on validation/decode errors. - Prevents downstream build failures such as
cannot use nil as string value in return statementfor designs using primitive payloads with validations (e.g.Format(FormatIP)on path params). - Adds regression coverage, including a golden-backed case for
Format(FormatIP)validation on a primitive path payload.
What's Changed
- Fix HTTP request decoder returns for primitive payloads by @raphael in [#3901]