mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-14 12:20:24 +00:00
Cowboy 2.10.0
This commit is contained in:
parent
326939c8a8
commit
9e600f6c1d
5 changed files with 49 additions and 5 deletions
6
Makefile
6
Makefile
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
PROJECT = cowboy
|
PROJECT = cowboy
|
||||||
PROJECT_DESCRIPTION = Small, fast, modern HTTP server.
|
PROJECT_DESCRIPTION = Small, fast, modern HTTP server.
|
||||||
PROJECT_VERSION = 2.9.0
|
PROJECT_VERSION = 2.10.0
|
||||||
PROJECT_REGISTERED = cowboy_clock
|
PROJECT_REGISTERED = cowboy_clock
|
||||||
|
|
||||||
# Options.
|
# Options.
|
||||||
|
@ -40,8 +40,8 @@ define HEX_TARBALL_EXTRA_METADATA
|
||||||
#{
|
#{
|
||||||
licenses => [<<"ISC">>],
|
licenses => [<<"ISC">>],
|
||||||
links => #{
|
links => #{
|
||||||
<<"User guide">> => <<"https://ninenines.eu/docs/en/cowboy/2.9/guide/">>,
|
<<"User guide">> => <<"https://ninenines.eu/docs/en/cowboy/2.10/guide/">>,
|
||||||
<<"Function reference">> => <<"https://ninenines.eu/docs/en/cowboy/2.9/manual/">>,
|
<<"Function reference">> => <<"https://ninenines.eu/docs/en/cowboy/2.10/manual/">>,
|
||||||
<<"GitHub">> => <<"https://github.com/ninenines/cowboy">>,
|
<<"GitHub">> => <<"https://github.com/ninenines/cowboy">>,
|
||||||
<<"Sponsor">> => <<"https://github.com/sponsors/essen">>
|
<<"Sponsor">> => <<"https://github.com/sponsors/essen">>
|
||||||
}
|
}
|
||||||
|
|
|
@ -75,6 +75,8 @@ include::performance.asciidoc[Performance]
|
||||||
|
|
||||||
= Additional information
|
= Additional information
|
||||||
|
|
||||||
|
include::migrating_from_2.9.asciidoc[Migrating from Cowboy 2.9 to 2.10]
|
||||||
|
|
||||||
include::migrating_from_2.8.asciidoc[Migrating from Cowboy 2.8 to 2.9]
|
include::migrating_from_2.8.asciidoc[Migrating from Cowboy 2.8 to 2.9]
|
||||||
|
|
||||||
include::migrating_from_2.7.asciidoc[Migrating from Cowboy 2.7 to 2.8]
|
include::migrating_from_2.7.asciidoc[Migrating from Cowboy 2.7 to 2.8]
|
||||||
|
|
|
@ -69,7 +69,7 @@ fetch and compile Cowboy:
|
||||||
PROJECT = hello_erlang
|
PROJECT = hello_erlang
|
||||||
|
|
||||||
DEPS = cowboy
|
DEPS = cowboy
|
||||||
dep_cowboy_commit = 2.9.0
|
dep_cowboy_commit = 2.10.0
|
||||||
|
|
||||||
DEP_PLUGINS = cowboy
|
DEP_PLUGINS = cowboy
|
||||||
|
|
||||||
|
|
42
doc/src/guide/migrating_from_2.9.asciidoc
Normal file
42
doc/src/guide/migrating_from_2.9.asciidoc
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
[appendix]
|
||||||
|
== Migrating from Cowboy 2.9 to 2.10
|
||||||
|
|
||||||
|
Cowboy 2.10 is a maintenance release adding support
|
||||||
|
for Erlang/OTP 26. The main change is a Cowlib update
|
||||||
|
to fix a compilation error that only occurs starting
|
||||||
|
from OTP 26.
|
||||||
|
|
||||||
|
Cowboy 2.10 requires Erlang/OTP 22.0 or greater.
|
||||||
|
|
||||||
|
=== Features added
|
||||||
|
|
||||||
|
* Add support for `Default` value of SameSite
|
||||||
|
cookie attribute.
|
||||||
|
|
||||||
|
* Add support for the `stale-*` cache-control directives
|
||||||
|
from RFC 5861.
|
||||||
|
|
||||||
|
* Update Cowlib to 2.12.1.
|
||||||
|
|
||||||
|
=== Bugs fixed
|
||||||
|
|
||||||
|
* Fix a compilation error in Cowlib when using Erlang/OTP 26.
|
||||||
|
|
||||||
|
* Fix data sent after RST_STREAM in HTTP/2 in rare cases.
|
||||||
|
|
||||||
|
* Fix parsing of RST_STREAM frames to properly handle
|
||||||
|
frames that have a valid length but were not fully
|
||||||
|
received yet.
|
||||||
|
|
||||||
|
* Remove the obsolete `Version` cookie attribute.
|
||||||
|
|
||||||
|
* Handle more edge cases for cookie parsing based on updates
|
||||||
|
to the RFC 6265bis draft.
|
||||||
|
|
||||||
|
* Make Basic auth parsing ignore unknown authentication
|
||||||
|
parameters and generally update the code to conform
|
||||||
|
to RFC 7617.
|
||||||
|
|
||||||
|
* Fix URI template reserved expansion of %-encoded.
|
||||||
|
|
||||||
|
* Update structured headers implementation to RFC 8941.
|
|
@ -1,6 +1,6 @@
|
||||||
{application, 'cowboy', [
|
{application, 'cowboy', [
|
||||||
{description, "Small, fast, modern HTTP server."},
|
{description, "Small, fast, modern HTTP server."},
|
||||||
{vsn, "2.9.0"},
|
{vsn, "2.10.0"},
|
||||||
{modules, ['cowboy','cowboy_app','cowboy_bstr','cowboy_children','cowboy_clear','cowboy_clock','cowboy_compress_h','cowboy_constraints','cowboy_handler','cowboy_http','cowboy_http2','cowboy_loop','cowboy_metrics_h','cowboy_middleware','cowboy_req','cowboy_rest','cowboy_router','cowboy_static','cowboy_stream','cowboy_stream_h','cowboy_sub_protocol','cowboy_sup','cowboy_tls','cowboy_tracer_h','cowboy_websocket']},
|
{modules, ['cowboy','cowboy_app','cowboy_bstr','cowboy_children','cowboy_clear','cowboy_clock','cowboy_compress_h','cowboy_constraints','cowboy_handler','cowboy_http','cowboy_http2','cowboy_loop','cowboy_metrics_h','cowboy_middleware','cowboy_req','cowboy_rest','cowboy_router','cowboy_static','cowboy_stream','cowboy_stream_h','cowboy_sub_protocol','cowboy_sup','cowboy_tls','cowboy_tracer_h','cowboy_websocket']},
|
||||||
{registered, [cowboy_sup,cowboy_clock]},
|
{registered, [cowboy_sup,cowboy_clock]},
|
||||||
{applications, [kernel,stdlib,crypto,cowlib,ranch]},
|
{applications, [kernel,stdlib,crypto,cowlib,ranch]},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue