aboutsummaryrefslogtreecommitdiffstats
path: root/doc/src
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2025-10-01 12:31:57 +0200
committerLoïc Hoguin <[email protected]>2025-10-01 12:31:57 +0200
commit1189501a82322b81bc90a779d4cca70ef28cd038 (patch)
tree7efeef410afdd09a94c5da638edc23e881c4130e /doc/src
parente3fd6b2aa677b768a1450fe3dece466d398f61db (diff)
downloadcowboy-1189501a82322b81bc90a779d4cca70ef28cd038.tar.gz
cowboy-1189501a82322b81bc90a779d4cca70ef28cd038.tar.bz2
cowboy-1189501a82322b81bc90a779d4cca70ef28cd038.zip
Cowboy 2.14.1
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/guide/book.asciidoc2
-rw-r--r--doc/src/guide/getting_started.asciidoc2
-rw-r--r--doc/src/guide/migrating_from_2.14.asciidoc11
3 files changed, 14 insertions, 1 deletions
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`.