0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-14 12:20:24 +00:00

Cowboy 2.12.0

This commit is contained in:
Loïc Hoguin 2024-03-14 15:06:07 +01:00
parent f7956a0f44
commit 3ea8395eb8
No known key found for this signature in database
GPG key ID: 8A9DF795F6FED764
5 changed files with 23 additions and 6 deletions

View file

@ -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.11.0 PROJECT_VERSION = 2.12.0
PROJECT_REGISTERED = cowboy_clock PROJECT_REGISTERED = cowboy_clock
# Options. # Options.
@ -38,8 +38,8 @@ define HEX_TARBALL_EXTRA_METADATA
#{ #{
licenses => [<<"ISC">>], licenses => [<<"ISC">>],
links => #{ links => #{
<<"User guide">> => <<"https://ninenines.eu/docs/en/cowboy/2.11/guide/">>, <<"User guide">> => <<"https://ninenines.eu/docs/en/cowboy/2.12/guide/">>,
<<"Function reference">> => <<"https://ninenines.eu/docs/en/cowboy/2.11/manual/">>, <<"Function reference">> => <<"https://ninenines.eu/docs/en/cowboy/2.12/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">>
} }

View file

@ -18,8 +18,8 @@ Cowboy is *clean* and *well tested* Erlang code.
== Online documentation == Online documentation
* https://ninenines.eu/docs/en/cowboy/2.11/guide[User guide] * https://ninenines.eu/docs/en/cowboy/2.12/guide[User guide]
* https://ninenines.eu/docs/en/cowboy/2.11/manual[Function reference] * https://ninenines.eu/docs/en/cowboy/2.12/manual[Function reference]
== Offline documentation == Offline documentation

View file

@ -75,6 +75,8 @@ include::performance.asciidoc[Performance]
= Additional information = Additional information
include::migrating_from_2.11.asciidoc[Migrating from Cowboy 2.11 to 2.12]
include::migrating_from_2.10.asciidoc[Migrating from Cowboy 2.10 to 2.11] include::migrating_from_2.10.asciidoc[Migrating from Cowboy 2.10 to 2.11]
include::migrating_from_2.9.asciidoc[Migrating from Cowboy 2.9 to 2.10] include::migrating_from_2.9.asciidoc[Migrating from Cowboy 2.9 to 2.10]

View file

@ -0,0 +1,15 @@
[appendix]
== Migrating from Cowboy 2.11 to 2.12
Cowboy 2.12 contains a small security improvement for
the HTTP/2 protocol.
Cowboy 2.12 requires Erlang/OTP 24.0 or greater.
=== Features added
* A new HTTP/2 option `max_fragmented_header_block_size` has
been added to limit the size of header blocks that are
sent over multiple HEADERS and CONTINUATION frames.
* Update Cowlib to 2.13.0.

View file

@ -1,6 +1,6 @@
{application, 'cowboy', [ {application, 'cowboy', [
{description, "Small, fast, modern HTTP server."}, {description, "Small, fast, modern HTTP server."},
{vsn, "2.11.0"}, {vsn, "2.12.0"},
{modules, ['cowboy','cowboy_app','cowboy_bstr','cowboy_children','cowboy_clear','cowboy_clock','cowboy_compress_h','cowboy_constraints','cowboy_decompress_h','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_decompress_h','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]},