Skip to content

Commit 98502aa

Browse files
committed
Cowboy 2.16.1
1 parent 9fd3b52 commit 98502aa

6 files changed

Lines changed: 16 additions & 5 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
PROJECT = cowboy
44
PROJECT_DESCRIPTION = Small, fast, modern HTTP server.
5-
PROJECT_VERSION = 2.16.0
5+
PROJECT_VERSION = 2.16.1
66
PROJECT_REGISTERED = cowboy_clock
77

88
# Options.
@@ -16,7 +16,7 @@ CT_OPTS += -ct_hooks cowboy_ct_hook [] # -boot start_sasl
1616
LOCAL_DEPS = crypto
1717

1818
DEPS = cowlib ranch
19-
dep_cowlib = git https://github.com/ninenines/cowlib 2.17.0
19+
dep_cowlib = git https://github.com/ninenines/cowlib 2.17.1
2020
dep_ranch = git https://github.com/ninenines/ranch 1.8.1
2121

2222
ifeq ($(COWBOY_QUICER),1)

doc/src/guide/book.asciidoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,8 @@ include::security_checklist.asciidoc[Security checklist]
7979

8080
= Additional information
8181

82+
include::migrating_from_2.16.asciidoc[Changes since Cowboy 2.16]
83+
8284
include::migrating_from_2.15.asciidoc[Migrating from Cowboy 2.15 to 2.16]
8385

8486
include::migrating_from_2.14.asciidoc[Migrating from Cowboy 2.14 to 2.15]

doc/src/guide/getting_started.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ fetch and compile Cowboy, and that we will use releases:
6969
PROJECT = hello_erlang
7070
7171
DEPS = cowboy
72-
dep_cowboy_commit = 2.16.0
72+
dep_cowboy_commit = 2.16.1
7373
7474
REL_DEPS = relx
7575
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[appendix]
2+
== Changes since Cowboy 2.16
3+
4+
The following patch versions were released since Cowboy 2.16:
5+
6+
=== Cowboy 2.16.1
7+
8+
Update Cowlib to 2.17.1 to fix HTTP/2 header decoding
9+
broken in 2.17.0.

ebin/cowboy.app

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{application, 'cowboy', [
22
{description, "Small, fast, modern HTTP server."},
3-
{vsn, "2.16.0"},
3+
{vsn, "2.16.1"},
44
{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_http3','cowboy_loop','cowboy_metrics_h','cowboy_middleware','cowboy_quicer','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','cowboy_webtransport']},
55
{registered, [cowboy_sup,cowboy_clock]},
66
{applications, [kernel,stdlib,crypto,cowlib,ranch]},

rebar.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{deps, [
2-
{cowlib,".*",{git,"https://github.com/ninenines/cowlib",{tag,"2.17.0"}}},{ranch,".*",{git,"https://github.com/ninenines/ranch",{tag,"1.8.1"}}}
2+
{cowlib,".*",{git,"https://github.com/ninenines/cowlib",{tag,"2.17.1"}}},{ranch,".*",{git,"https://github.com/ninenines/ranch",{tag,"1.8.1"}}}
33
]}.
44
{erl_opts, [debug_info,warn_export_vars,warn_shadow_vars,warn_obsolete_guard,warn_missing_spec,warn_untyped_record]}.

0 commit comments

Comments
 (0)