From 96b88cc70f3e2a7c472bbb7a157c8645b995075e Mon Sep 17 00:00:00 2001 From: David Wilson Date: Tue, 23 Oct 2018 23:24:34 +0100 Subject: [PATCH] issue #76: docs: update Changelog. --- docs/changelog.rst | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/docs/changelog.rst b/docs/changelog.rst index 099b253b..f0ad3f9f 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -15,6 +15,35 @@ Release Notes +v0.2.4 (2018-??-??) +------------------ + +Mitogen for Ansible +~~~~~~~~~~~~~~~~~~~ + +Enhancements +^^^^^^^^^^^^ + +Fixes +^^^^^ + +Core Library +~~~~~~~~~~~~ + +* `#76 `_: routing maintains the set + of destination context ID ever received on each stream, and when + disconnection occurs, propagates ``DEL_ROUTE`` messages downwards towards + every stream that ever communicated with a disappearing peer, rather than + simply toward parents. + + Conversations between nodes in any level of the connection tree should + correctly receive ``DEL_ROUTE`` messages when a participant disconnects, + allowing receivers to be woken with :class:`mitogen.core.ChannelError` to + signal the connection has broken, even when one participant is not a parent + of the other. + + + v0.2.3 (2018-10-23) -------------------