We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8832b4 commit ba270fbCopy full SHA for ba270fb
CHANGELOG.md
@@ -4,6 +4,12 @@ Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) princip
4
5
## [Unreleased][unreleased]
6
7
+## 1.10.0 - 2016-12-14
8
+
9
+### Added
10
11
+* Added X-Requested-With header to Cors handler
12
13
## 1.9.1 - 2016-11-28
14
15
### Fixed
src/Handlers/CorsPreflightHandler.php
@@ -18,6 +18,7 @@ public function __construct(Response $response)
18
public function handle($params)
19
{
20
$this->response->addHeader('Access-Control-Allow-Headers', 'Authorization');
21
+ $this->response->addHeader('Access-Control-Allow-Headers', 'X-Requested-With');
22
return new JsonApiResponse(Response::S200_OK, []);
23
}
24
0 commit comments