Releases: go-goyave/goyave
Releases · go-goyave/goyave
Release v4.4.10
- Fixed potential SQL errors when using the
unique
/exists
validation rules #191 - Updated dependencies
- Dropped support for go 1.17
Release v4.4.9
- Fixed interface compatibility with Testify v1.8.2. Thanks to contributor @imuni4fun
Release v4.4.8
- Fixed a bug in validation placeholders that allowed users to inject other placeholders into the original message and potentially create panics.
Release v4.4.7
- Fixed an issue with
database.Paginator
's raw count query not using the provided vars.
Release v4.4.6
- The recovery middleware always gathers the stacktrace, even if debugging is not enabled. This will help getting more information from applications deployed in production and using error tracking platforms.
Release v4.4.5
- Fixed a compilation error when using the latest version of Gorm.
Release v4.4.4
- Fixed an issue in validation removing the parent element of non-nullable elements from the body when the parent didn't have the expected type.
Release v4.4.3
- Removed usage of
io/ioutil
as it is deprecated. - Fixed the validation error message for the "in" rule when used on array elements.
Release v4.4.2
- "object" validation rule now also accepts JSON strings. This is useful when you expect an object but the field is given via a query param.
Release v4.4.1
- In debug mode,
reponse.Error()
doesn't override previously defined status anymore. TestSuite.RunServer
now clears shutdown hooks too.