summaryrefslogtreecommitdiffstats
path: root/docs/en/cowboy/2.14/guide/migrating_from_2.14.asciidoc
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2025-10-08 12:26:04 +0200
committerLoïc Hoguin <[email protected]>2025-10-08 12:26:04 +0200
commit81631a53ac4c81f5b7a5e8d14c705843feb1009c (patch)
treeaf5785796f9f9e243d09618a42c3bbb50f42a05d /docs/en/cowboy/2.14/guide/migrating_from_2.14.asciidoc
parente42e75dcec01ad8e13202c0a24fc48b19d62873a (diff)
downloadninenines.eu-master.tar.gz
ninenines.eu-master.tar.bz2
ninenines.eu-master.zip
Cowboy 2.14.2HEADmaster
Diffstat (limited to 'docs/en/cowboy/2.14/guide/migrating_from_2.14.asciidoc')
-rw-r--r--docs/en/cowboy/2.14/guide/migrating_from_2.14.asciidoc24
1 files changed, 24 insertions, 0 deletions
diff --git a/docs/en/cowboy/2.14/guide/migrating_from_2.14.asciidoc b/docs/en/cowboy/2.14/guide/migrating_from_2.14.asciidoc
new file mode 100644
index 00000000..67ed0f17
--- /dev/null
+++ b/docs/en/cowboy/2.14/guide/migrating_from_2.14.asciidoc
@@ -0,0 +1,24 @@
+[appendix]
+== Changes since Cowboy 2.14
+
+The following patch versions were released since Cowboy 2.14:
+
+=== Cowboy 2.14.2
+
+Cowboy compiled without `COWBOY_QUICER` set would
+have a number of Dialyzer errors. Now in that
+scenario the HTTP/3 code is fully behind ifdefs
+and Dialyzer no longer complains.
+
+Now when `COWBOY_QUICER` isn't set:
+
+ * `cowboy:start_quic/3` is no longer defined.
+ * `cowboy_http3` compiles to an empty module.
+ * `cowboy_quicer` compiles to an empty module.
+
+=== 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`.