aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2018-08-01 16:26:08 +0200
committerLoïc Hoguin <[email protected]>2018-08-01 16:26:08 +0200
commit4738d8526a9885420d03edada0ba187f7d2d8aff (patch)
tree684ad981f84970d76b3f25e281711f446c8ad5a2
parent7e111201f621243101fe588ce7927757402586cb (diff)
downloadranch-4738d8526a9885420d03edada0ba187f7d2d8aff.tar.gz
ranch-4738d8526a9885420d03edada0ba187f7d2d8aff.tar.bz2
ranch-4738d8526a9885420d03edada0ba187f7d2d8aff.zip
More release notes
-rw-r--r--doc/src/guide/migrating_from_1.5.asciidoc11
1 files changed, 9 insertions, 2 deletions
diff --git a/doc/src/guide/migrating_from_1.5.asciidoc b/doc/src/guide/migrating_from_1.5.asciidoc
index 40489f7..a454f93 100644
--- a/doc/src/guide/migrating_from_1.5.asciidoc
+++ b/doc/src/guide/migrating_from_1.5.asciidoc
@@ -16,6 +16,10 @@ for older releases has been removed.
* Transport options can now be updated for suspended listeners.
+* The `Socket` argument given when the protocol starts has been
+ deprecated. In Ranch 2.0 the socket will be obtainable only
+ by calling `ranch:handshake/1,2`.
+
* Ranch-specific transport options and socket options are now
better separated. When passing Ranch-specific transport options,
Ranch now expects to receive a map, in which case socket
@@ -29,7 +33,7 @@ for older releases has been removed.
* The transport option `ack_timeout` was renamed to `handshake_timeout`
in the map type.
-* The `cacerts` transport option is now silenced in error logs
+* The `cacerts` socket option is now silenced in error logs
just like the `certs` and `key` options.
* The manual has been heavily updated and now features one
@@ -50,7 +54,7 @@ for older releases has been removed.
=== Changed behaviors
-* Transport modules must now implement `Transport:handshake/1,2`
+* Transport modules must now implement `Transport:handshake/2,3`
which deprecates and will replace `Transport:accept_ack/1` in
Ranch 2.0. It returns a new socket and can therefore be used
for implementing TLS upgrade mechanisms.
@@ -63,6 +67,9 @@ for older releases has been removed.
* A function `ranch:wait_for_connections/3` was added.
+* A function `ranch:handshake/1,2` was added to replace the
+ function `ranch:accept_ack/1`.
+
=== Bugs fixed
* The specs for the function `Transport:sendfile/2,4,5` have been