diff --git a/nooz/304.feature.rst b/nooz/304.feature.rst new file mode 100644 index 0000000..820ecf7 --- /dev/null +++ b/nooz/304.feature.rst @@ -0,0 +1,12 @@ +Add a new ``to_asyncio.LinkedTaskChannel.subscribe()`` which gives +task-oriented broadcast functionality semantically equivalent to +``tractor.MsgStream.subscribe()`` this makes it possible for multiple +``trio``-side tasks to consume ``asyncio``-side task msgs in tandem. + +Further Improvements to the test suite were added in this patch set +including a new scenario test for a sub-actor managed "service nursery" +(implementing the basics of a "service manager") including use of +*infected asyncio* mode. Further we added a lower level +``test_trioisms.py`` to start to track issues we need to work around in +``trio`` itself which in this case included a bug we were trying to +solve related to https://github.com/python-trio/trio/issues/2258.