All Versions
13
Latest Version
Avg Release Cycle
180 days
Latest Release
-
Changelog History
Page 1
Changelog History
Page 1
-
v1.3.0
-
v1.2.0 Changes
โฌ๏ธ This version drops support for Elixir 1.7 and lower.
๐ Improvements
- Add support for
{module, function, args}
as a value for the:origins
option.
- Add support for
-
v1.1.3 Changes
February 21, 2020๐ Bug fixes
- Send the
vary: origin
header when the origin is not*
. We were doing this in some cases before but we missed a handful of other cases. See https://github.com/whatyouhide/corsica/pull/45.
- Send the
-
v1.1.2 Changes
April 26, 2018๐ Improvements
- Drop the cowboy dependency completely (see #40).
-
v1.1.1
January 30, 2018 -
v1.1.0 Changes
December 11, 2017๐ Bug fixes
- Correctly allow "simple methods" and "simple headers" in preflight requests. See the documentation for the
:allow_methods
and:allow_headers
options.
๐ Improvements
- Allow
:all
as value for the:allow_methods
and:allow_headers
options.
- Correctly allow "simple methods" and "simple headers" in preflight requests. See the documentation for the
-
v1.0.0 Changes
May 14, 2017๐ฅ Breaking changes
- Drop support for older Elixir versions and require Elixir
~> 1.3
.
๐ Improvements
- Improve logs.
- Drop support for older Elixir versions and require Elixir
-
v0.5.0 Changes
July 04, 2016๐ฅ Breaking changes
- Drop support for anonymous functions in the list of
:origins
(it was a mistake to support that in the first place!). - Change the
:log
option from being a log level orfalse
to being a keyword list with log levels orfalse
for each log "type" (for example,:rejected
or:invalid
).
๐ Improvements
- Add support for
{module, function}
tuples in the list of:origins
(module.function
will be called with the origin as its argument and will decide if such origin is allowed).
- Drop support for anonymous functions in the list of
-
v0.4.2 Changes
May 05, 2016๐ Bug fixes
- Fix a bug where options given to a
Corsica.Router
weren't properly escaped and caused a "invalid quoted expression" error.
- Fix a bug where options given to a
-
v0.4.1 Changes
March 20, 2016๐ Bug fixes
- Fix a typo in a logged message.