Illia
Illia
#3235 Reference Changes: - [#e837e1c](https://github.com/gin-gonic/gin/commit/e837e1cd1850559d91d921b712bc7b0c8f78cf7e) changed query mapping function - [#c17e9f1](https://github.com/gin-gonic/gin/commit/c17e9f1a1554d4a32d44131cf6f949606814ffbe) tests
#3235 Reference Changes: - [#e837e1c](https://github.com/gin-gonic/gin/commit/e837e1cd1850559d91d921b712bc7b0c8f78cf7e) changed query mapping function - [#c17e9f1](https://github.com/gin-gonic/gin/commit/c17e9f1a1554d4a32d44131cf6f949606814ffbe) tests
https://github.com/gin-gonic/gin/blob/b57163a0e4339d7feb393ff430a454f4e448cf9c/binding/query.go#L15-L21 `mapForm` searches `form` struct tag, not `query` Fixed version: ```go func (q queryBinding) Bind(req *http.Request, obj any) error { values := req.URL.Query() if err := mapFormByTag(obj, values, q.Name() );...
Similar to #1143, but for fiber Original issue: #1144 Due to differences in gin and fiber error handling, `ErrorHandler` option was modified in order to support fiber. Message type was...
### Version 1.27.0 ### What happened? #### Generated `models.go` ```go // Code generated by sqlc. DO NOT EDIT. // versions: // sqlc v1.27.0 package repository import ( "github.com/google/uuid" ) type...