aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2025-10-08 10:54:34 +0200
committerLoïc Hoguin <[email protected]>2025-10-08 10:54:34 +0200
commit495e74ada88d0876d7e438d53f11af767a9cdcc4 (patch)
tree062543e68221de20f9f22bdd5404dfee6cacd155
parent46994f9ce5645195e2153e9b59bd12bbcd969fb2 (diff)
downloadcowboy-495e74ada88d0876d7e438d53f11af767a9cdcc4.tar.gz
cowboy-495e74ada88d0876d7e438d53f11af767a9cdcc4.tar.bz2
cowboy-495e74ada88d0876d7e438d53f11af767a9cdcc4.zip
Cowboy 2.14.2HEAD2.14.2master
-rw-r--r--Makefile2
-rw-r--r--doc/src/guide/getting_started.asciidoc2
-rw-r--r--doc/src/guide/migrating_from_2.14.asciidoc13
-rw-r--r--ebin/cowboy.app2
4 files changed, 16 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 06630e9..00ab321 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@
PROJECT = cowboy
PROJECT_DESCRIPTION = Small, fast, modern HTTP server.
-PROJECT_VERSION = 2.14.1
+PROJECT_VERSION = 2.14.2
PROJECT_REGISTERED = cowboy_clock
# Options.
diff --git a/doc/src/guide/getting_started.asciidoc b/doc/src/guide/getting_started.asciidoc
index eccb38f..fada2e3 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.1
+dep_cowboy_commit = 2.14.2
REL_DEPS = relx
diff --git a/doc/src/guide/migrating_from_2.14.asciidoc b/doc/src/guide/migrating_from_2.14.asciidoc
index befa821..67ed0f1 100644
--- a/doc/src/guide/migrating_from_2.14.asciidoc
+++ b/doc/src/guide/migrating_from_2.14.asciidoc
@@ -3,6 +3,19 @@
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
diff --git a/ebin/cowboy.app b/ebin/cowboy.app
index 6922fc0..002727e 100644
--- a/ebin/cowboy.app
+++ b/ebin/cowboy.app
@@ -1,6 +1,6 @@
{application, 'cowboy', [
{description, "Small, fast, modern HTTP server."},
- {vsn, "2.14.1"},
+ {vsn, "2.14.2"},
{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]},