Skip to content

v1.9.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 15 May 11:55
· 28 commits to v1.x.x since this release
v1.9.0
b5ae33c

Frequenz channels Release Notes

New Features

  • An experimental NopReceiver implementation has been added, which can be used as a place-holder receiver that never receives a message.

  • The experimental OptionalReceiver has been deprecated. It will be removed with the next major release. It can be replaced with a NopReceiver as follows:

    opt_recv: Receiver[T] | None
    recv: Receiver[T] = NopReceiver[T]() if opt_recv is None else opt_recv

What's Changed

Full Changelog: v1.8.0...v1.9.0