You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: changelog/CHANGELOG.md
+20Lines changed: 20 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -82,6 +82,26 @@ Previously, alias support was limited and resulted in the aliased type effective
82
82
* Added a global `ApiValidator` as the entry point to the HIR validation subsystem.</br>
83
83
This currently includes a URL conflict detection algorithm to emit diagnostics upon route conflicts such as between `POST /a/b/c` and `POST /a/{foo}/c`
84
84
85
+
* Added an explicit visitor error when using interfaces in general and `interface{}` in particular
86
+
87
+
* Added a validation error when passing arrays via inputs that do not accept them (i.e., a URL parameter)
88
+
89
+
90
+
### Bugfixes
91
+
92
+
* Fixed array/slice support. Previously resulted in broken generated code
93
+
94
+
* Fixed cases where model fields were named after the type rather than the field name or JSON tag
95
+
96
+
* Fixed an issue where `any` yielded an `object` schema entity rather than a 'map-like' one, i.e.,
0 commit comments