Releases: jdesrosiers/silex-cors-provider
v1.0.0
At long last, Sliex 2.0 has been released. This release updates the dependencies to point to the new Silex release.
v0.1.5
This release is to address a bug that occurs in Internet Explorer Edge.
Originally, when there where more than one allowed methods, the provider would generate a separate Access-Control-Allow-Methods
header for each method. Although technically valid, IE Edge doesn't support this way of expressing that header. The comma separated notation is nicer anyway, so I have no problem changing it.
Thanks to @cyberwolf for contributing this fix.
v0.1.4
This release contains some refactoring and a bug fix.
The bug fix, contributed by @cyberwolf, works around a deprecation warning when using version 2.7+ of the Symfony Routing Component.
v0.1.3
This release includes two changes.
Although the current implementation handles the allow-all-domains case by simply not setting cors.allowOrigin
, it makes sense that people would expect to be able to set cors.allowOrigin
to *
for this case. Therefore, @jrschumacher has contributed a patch to allow this behavior.
A bug was fixed that set the Access-Control-Allow-Credentials
header if cors.allowCredentials
was set to anything other than null
. Since the default value of this header is false
, it was being set by default. It will now only be set if cors.allowCredentials
is set to true
.
v0.1.2
v0.1.1
There are no real changes in this release. It includes updates for PSR2 compliance and adds tests.
v0.1.0
Initial release.