Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 11 additions & 6 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
# Frequenz channels Release Notes

## Summary

<!-- Here goes a general summary of what this release is about -->

## Upgrading

<!-- Here goes notes on how to upgrade from previous versions, including deprecations and what they should be replaced with -->

## New Features

- An experimental `NopReceiver` implementation has been added, which can be used as a place-holder receiver that never receives a message.
<!-- Here goes the main new features and examples or instructions on how to use them -->

- The experimental `OptionalReceiver` has been deprecated. It will be removed with the next major release. It can be replaced with a `NopReceiver` as follows:
## Bug Fixes

```python
opt_recv: Receiver[T] | None
recv: Receiver[T] = NopReceiver[T]() if opt_recv is None else opt_recv
```
<!-- Here goes notable bug fixes that are worth a special mention or explanation -->
Loading