Skip to content

Commit 17c03e9

Browse files
committed
Fix broken session management for application api
1 parent e8a8405 commit 17c03e9

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,13 @@ This file is a running track of new features and fixes to each version of the pa
33

44
This project follows [Semantic Versioning](http://semver.org) guidelines.
55

6+
## v1.6.5
7+
### Fixed
8+
* Fixes broken application API endpoints due to changes introduced with session management in 1.6.4.
9+
610
## v1.6.4
11+
_This release should not be used, please use `1.6.5`. It has been pulled from our releases._
12+
713
### Fixed
814
* Fixes a session management bug that would cause a user who signs out of one browser to be unintentionally logged out of other browser sessions when using the client API.
915

app/Http/Kernel.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,8 @@ class Kernel extends HttpKernel
7070
'api' => [
7171
HandleStatelessRequest::class,
7272
IsValidJson::class,
73+
StartSession::class,
74+
AuthenticateSession::class,
7375
ApiSubstituteBindings::class,
7476
'api..key:' . ApiKey::TYPE_APPLICATION,
7577
AuthenticateApplicationUser::class,

0 commit comments

Comments
 (0)