Releases: arondeparon/laravel-request-sanitizer
Releases · arondeparon/laravel-request-sanitizer
Release list
6.2.0
6.1.0
What's Changed
- add wildcard support for sanitizers by @arondeparon in #34
Full Changelog: 6.0.0...6.1.0
6.0.0
5.0.0 (Laravel 9 support)
What's Changed
- L9 integration PR by @rjvandoesburg in #30
Dropping support for Laravel 7 and PHP 7.*
If you use Laravel 7 or PHP 7., you should stick to the 4. branch. Going forward, these releases will no longer be supported.
Full Changelog: 4.0.2...5.0.0
4.0.2
4.0.1
Release 4.0
This is backwards incompatible release if you use Laravel 6.
This new major release will only support Laravel 7 and beyond. If you need Laravel 6 you should pick the latest available 3.x version.
Release 3.1.1
This is a backwards compatible patch release.
This release replaces the strtolower, strtoupper and ucfirst functions with their Laravel equivalents using the Str:: helpers. This has the benefit of being unicode compatible (mb_ functions are used under the hood.)
Thanks @jaulz!
Release 3.1.0
This release implements support for PHP 8 (#22).
Thanks @erickmcarvalho !
Release 3.0.1
Bugfixes
- Fixes a bug that caused multiple sanitizers not to be chained, but rather to overwrite each other. Thanks @johnpaulmedina !