diff options
| -rw-r--r-- | Makefile | 2 | ||||
| -rw-r--r-- | doc/src/guide/book.asciidoc | 2 | ||||
| -rw-r--r-- | doc/src/guide/getting_started.asciidoc | 2 | ||||
| -rw-r--r-- | doc/src/guide/migrating_from_2.14.asciidoc | 11 | ||||
| -rw-r--r-- | ebin/cowboy.app | 2 |
5 files changed, 16 insertions, 3 deletions
@@ -2,7 +2,7 @@ PROJECT = cowboy PROJECT_DESCRIPTION = Small, fast, modern HTTP server. -PROJECT_VERSION = 2.14.0 +PROJECT_VERSION = 2.14.1 PROJECT_REGISTERED = cowboy_clock # Options. diff --git a/doc/src/guide/book.asciidoc b/doc/src/guide/book.asciidoc index 2679f99..6a21262 100644 --- a/doc/src/guide/book.asciidoc +++ b/doc/src/guide/book.asciidoc @@ -75,6 +75,8 @@ include::performance.asciidoc[Performance] = Additional information +include::migrating_from_2.14.asciidoc[Changes since Cowboy 2.14] + include::migrating_from_2.13.asciidoc[Migrating from Cowboy 2.13 to 2.14] include::migrating_from_2.12.asciidoc[Migrating from Cowboy 2.12 to 2.13] diff --git a/doc/src/guide/getting_started.asciidoc b/doc/src/guide/getting_started.asciidoc index 749b1d1..eccb38f 100644 --- a/doc/src/guide/getting_started.asciidoc +++ b/doc/src/guide/getting_started.asciidoc @@ -69,7 +69,7 @@ fetch and compile Cowboy, and that we will use releases: PROJECT = hello_erlang DEPS = cowboy -dep_cowboy_commit = 2.14.0 +dep_cowboy_commit = 2.14.1 REL_DEPS = relx diff --git a/doc/src/guide/migrating_from_2.14.asciidoc b/doc/src/guide/migrating_from_2.14.asciidoc new file mode 100644 index 0000000..befa821 --- /dev/null +++ b/doc/src/guide/migrating_from_2.14.asciidoc @@ -0,0 +1,11 @@ +[appendix] +== Changes since Cowboy 2.14 + +The following patch versions were released since Cowboy 2.14: + +=== Cowboy 2.14.1 + +HTTP/2 Websocket did not call `terminate/3` on abrupt +socket close (without a close frame being sent first). +This is now fixed. Do note however that the Websocket +session process must trap exits to call `terminate/3`. diff --git a/ebin/cowboy.app b/ebin/cowboy.app index b797517..6922fc0 100644 --- a/ebin/cowboy.app +++ b/ebin/cowboy.app @@ -1,6 +1,6 @@ {application, 'cowboy', [ {description, "Small, fast, modern HTTP server."}, - {vsn, "2.14.0"}, + {vsn, "2.14.1"}, {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']}, {registered, [cowboy_sup,cowboy_clock]}, {applications, [kernel,stdlib,crypto,cowlib,ranch]}, |
