Skip to content

Releases: arondeparon/laravel-request-sanitizer

6.2.0

Choose a tag to compare

@arondeparon arondeparon released this 11 Jun 12:58
66870a2

What's Changed

Full Changelog: 6.1.0...6.2.0

6.1.0

Choose a tag to compare

@arondeparon arondeparon released this 01 Apr 07:52
8d4dcbf

What's Changed

Full Changelog: 6.0.0...6.1.0

6.0.0

Choose a tag to compare

@arondeparon arondeparon released this 16 Jun 21:42
e292065

What's Changed

  • Laravel 11 support #32
  • Remove support for PHP 8.0

Full Changelog: 5.0.0...6.0.0

5.0.0 (Laravel 9 support)

Choose a tag to compare

@arondeparon arondeparon released this 28 Feb 08:25
3b5a29d

What's Changed

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

Choose a tag to compare

@arondeparon arondeparon released this 15 Dec 16:55
5fd928f

Full Changelog: 4.0.1...4.0.2

4.0.1

Choose a tag to compare

@arondeparon arondeparon released this 15 Dec 16:27
3a2244b

What's Changed

Full Changelog: 4.0...4.0.1

Release 4.0

Choose a tag to compare

@arondeparon arondeparon released this 08 Sep 12:46
22ef167

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

Choose a tag to compare

@arondeparon arondeparon released this 08 Sep 12:32
27611be

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

Choose a tag to compare

@arondeparon arondeparon released this 02 Feb 09:04
025d3e4

This release implements support for PHP 8 (#22).

Thanks @erickmcarvalho !

Release 3.0.1

Choose a tag to compare

@arondeparon arondeparon released this 11 Jan 13:49
f9d3647

Bugfixes

  • Fixes a bug that caused multiple sanitizers not to be chained, but rather to overwrite each other. Thanks @johnpaulmedina !