Skip to content

Commit

Permalink
v3.1.20
Browse files Browse the repository at this point in the history
* Utilise `Model::saveOrFail()` and `Model::transaction()` method when possible.
* Deprecate `Orchestra\Foundation\Http\Middleware\RequireCsrfToken` and make it an alias to `Orchestra\Http\Middleware\RequireCsrfToken`.
* Fix problems with rate limiter when receiving utf-8 characters. ([@taylorotwell](https://github.com/taylorotwell))
* Update assets:
  - Vue v1.0.12.

Signed-off-by: crynobone <crynobone@gmail.com>
  • Loading branch information
crynobone committed Dec 22, 2015
1 parent 58b09b8 commit b12bc9a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
8 changes: 8 additions & 0 deletions docs/changes.md
Expand Up @@ -5,6 +5,14 @@ title: Foundation Change Log

## Version 3.1 {#v3-1}

### v3.1.20 {#v3-1-20}

* Utilise `Model::saveOrFail()` and `Model::transaction()` method when possible.
* Deprecate `Orchestra\Foundation\Http\Middleware\RequireCsrfToken` and make it an alias to `Orchestra\Http\Middleware\RequireCsrfToken`.
* Fix problems with rate limiter when receiving utf-8 characters. ([@taylorotwell](https://github.com/taylorotwell))
* Update assets:
- Vue v1.0.12.

### v3.1.19 {#v3-1-19}

* Add `Orchestra\Foundation\Listeners\UserAccess` so it can be shared with `orchestra/lumen`.
Expand Down
4 changes: 4 additions & 0 deletions src/Http/Middleware/RequireCsrfToken.php
Expand Up @@ -2,6 +2,10 @@

use Orchestra\Http\Middleware\RequireCsrfToken as BaseVerifier;

/**
* @deprecated since 3.1.x and to be removed on 3.3.0.
* @see \Orchestra\Http\Middleware\RequireCsrfToken
*/
class RequireCsrfToken extends BaseVerifier
{
//
Expand Down

0 comments on commit b12bc9a

Please sign in to comment.