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 aNopReceiver
as follows:opt_recv: Receiver[T] | None recv: Receiver[T] = NopReceiver[T]() if opt_recv is None else opt_recv
What's Changed
- Reset release notes by @ela-kotulska-frequenz in #413
- Bump pydoclint from 0.6.5 to 0.6.6 by @dependabot in #416
- Bump setuptools from 78.1.0 to 80.1.0 by @dependabot in #417
- Bump the patch group with 3 updates by @dependabot in #414
- Bump the minor group across 1 directory with 6 updates by @dependabot in #418
- Implement a
NopReceiver
by @shsms in #419 - Prepare release notes for v1.9.0 by @shsms in #420
Full Changelog: v1.8.0...v1.9.0