summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2018-01-24 11:55:22 +0100
committerLoïc Hoguin <[email protected]>2018-01-24 11:55:22 +0100
commit1d654719f5fa6be67d2c95145872068665702cb7 (patch)
treed632ea8fc91eee6dfcb68c5cf160cec41a669b94
parentc7bfd40f19fbf272b0207077ea462ed4774765da (diff)
downloadninenines.eu-1d654719f5fa6be67d2c95145872068665702cb7.tar.gz
ninenines.eu-1d654719f5fa6be67d2c95145872068665702cb7.tar.bz2
ninenines.eu-1d654719f5fa6be67d2c95145872068665702cb7.zip
Update docs
-rw-r--r--_build/data/projects/ranch.toml2
-rw-r--r--docs/en/cowboy/2.2/guide/getting_started.asciidoc2
-rw-r--r--docs/en/cowboy/2.2/guide/getting_started/index.html2
-rw-r--r--docs/en/cowboy/2.2/guide/migrating_from_2.2.asciidoc6
-rw-r--r--docs/en/cowboy/2.2/guide/migrating_from_2.2/index.html14
-rw-r--r--docs/index.xml2
-rw-r--r--index.xml2
7 files changed, 25 insertions, 5 deletions
diff --git a/_build/data/projects/ranch.toml b/_build/data/projects/ranch.toml
index 559276ed..d772d398 100644
--- a/_build/data/projects/ranch.toml
+++ b/_build/data/projects/ranch.toml
@@ -4,7 +4,7 @@ description = "Ranch is a socket acceptor pool for building awesome TCP and TLS
name = "ranch"
repository = "https://github.com/ninenines/ranch"
versions = ["1.4", "1.3", "1.2"]
-branches = ["master", "1.3.2", "1.2.1"]
+branches = ["1.4.0", "1.3.2", "1.2.1"]
has_source = true
has_guide = true
has_manual = true
diff --git a/docs/en/cowboy/2.2/guide/getting_started.asciidoc b/docs/en/cowboy/2.2/guide/getting_started.asciidoc
index 6e263348..156a94f9 100644
--- a/docs/en/cowboy/2.2/guide/getting_started.asciidoc
+++ b/docs/en/cowboy/2.2/guide/getting_started.asciidoc
@@ -69,7 +69,7 @@ fetch and compile Cowboy:
PROJECT = hello_erlang
DEPS = cowboy
-dep_cowboy_commit = 2.2.1
+dep_cowboy_commit = 2.2.2
DEP_PLUGINS = cowboy
diff --git a/docs/en/cowboy/2.2/guide/getting_started/index.html b/docs/en/cowboy/2.2/guide/getting_started/index.html
index f43e726d..2a2f077a 100644
--- a/docs/en/cowboy/2.2/guide/getting_started/index.html
+++ b/docs/en/cowboy/2.2/guide/getting_started/index.html
@@ -145,7 +145,7 @@ http://www.gnu.org/software/src-highlite -->
<pre><tt><span style="color: #009900">PROJECT =</span> hello_erlang
<span style="color: #009900">DEPS =</span> cowboy
-<span style="color: #009900">dep_cowboy_commit =</span> 2.2.1
+<span style="color: #009900">dep_cowboy_commit =</span> 2.2.2
<span style="color: #009900">DEP_PLUGINS =</span> cowboy
diff --git a/docs/en/cowboy/2.2/guide/migrating_from_2.2.asciidoc b/docs/en/cowboy/2.2/guide/migrating_from_2.2.asciidoc
index ed8ba2a2..f0b995be 100644
--- a/docs/en/cowboy/2.2/guide/migrating_from_2.2.asciidoc
+++ b/docs/en/cowboy/2.2/guide/migrating_from_2.2.asciidoc
@@ -3,6 +3,12 @@
The following patch versions were released since Cowboy 2.2:
+=== Cowboy 2.2.2
+
+* While fixing the miscount in the previous patch release an
+ issue was introduced where HTTP/2 bodies could be sent out
+ of orders when using iolists. This has been corrected.
+
=== Cowboy 2.2.1
* Colons are now allowed within path segments in routes provided
diff --git a/docs/en/cowboy/2.2/guide/migrating_from_2.2/index.html b/docs/en/cowboy/2.2/guide/migrating_from_2.2/index.html
index 962ef587..d91a53db 100644
--- a/docs/en/cowboy/2.2/guide/migrating_from_2.2/index.html
+++ b/docs/en/cowboy/2.2/guide/migrating_from_2.2/index.html
@@ -69,6 +69,20 @@
<div class="paragraph"><p>The following patch versions were released since Cowboy 2.2:</p></div>
<div class="sect1">
+<h2 id="_cowboy_2_2_2">Cowboy 2.2.2</h2>
+<div class="sectionbody">
+<div class="ulist"><ul>
+<li>
+<p>
+While fixing the miscount in the previous patch release an
+ issue was introduced where HTTP/2 bodies could be sent out
+ of orders when using iolists. This has been corrected.
+</p>
+</li>
+</ul></div>
+</div>
+</div>
+<div class="sect1">
<h2 id="_cowboy_2_2_1">Cowboy 2.2.1</h2>
<div class="sectionbody">
<div class="ulist"><ul>
diff --git a/docs/index.xml b/docs/index.xml
index c3cab0cf..fee0d7fd 100644
--- a/docs/index.xml
+++ b/docs/index.xml
@@ -1437,7 +1437,7 @@
<guid>https://ninenines.eu/docs/en/cowboy/2.2/guide/migrating_from_2.2/</guid>
<description>The following patch versions were released since Cowboy 2.2:
- Cowboy 2.2.1 Colons are now allowed within path segments in routes provided to cowboy_router:compile/1 as long as they are not the first character of the path segment. The cowboy_req:delete_resp_header/2 function will no longer crash when no response header was set before calling it. A miscount of the output HTTP/2 flow control window has been fixed.</description>
+ Cowboy 2.2.2 While fixing the miscount in the previous patch release an issue was introduced where HTTP/2 bodies could be sent out of orders when using iolists. This has been corrected. Cowboy 2.2.1 Colons are now allowed within path segments in routes provided to cowboy_router:compile/1 as long as they are not the first character of the path segment.</description>
</item>
<item>
diff --git a/index.xml b/index.xml
index 476a2264..249eb1ab 100644
--- a/index.xml
+++ b/index.xml
@@ -1438,7 +1438,7 @@
<guid>https://ninenines.eu/docs/en/cowboy/2.2/guide/migrating_from_2.2/</guid>
<description>The following patch versions were released since Cowboy 2.2:
- Cowboy 2.2.1 Colons are now allowed within path segments in routes provided to cowboy_router:compile/1 as long as they are not the first character of the path segment. The cowboy_req:delete_resp_header/2 function will no longer crash when no response header was set before calling it. A miscount of the output HTTP/2 flow control window has been fixed.</description>
+ Cowboy 2.2.2 While fixing the miscount in the previous patch release an issue was introduced where HTTP/2 bodies could be sent out of orders when using iolists. This has been corrected. Cowboy 2.2.1 Colons are now allowed within path segments in routes provided to cowboy_router:compile/1 as long as they are not the first character of the path segment.</description>
</item>
<item>