You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!-- Here goes a general summary of what this release is about -->
6
+
7
+
## Upgrading
8
+
9
+
<!-- Here goes notes on how to upgrade from previous versions, including deprecations and what they should be replaced with -->
10
+
3
11
## New Features
4
12
5
-
- An experimental `NopReceiver` implementation has been added, which can be used as a place-holder receiver that never receives a message.
13
+
<!-- Here goes the main new features and examples or instructions on how to use them -->
6
14
7
-
- The experimental `OptionalReceiver` has been deprecated. It will be removed with the next major release. It can be replaced with a `NopReceiver` as follows:
15
+
## Bug Fixes
8
16
9
-
```python
10
-
opt_recv: Receiver[T] |None
11
-
recv: Receiver[T] = NopReceiver[T]() if opt_recv isNoneelse opt_recv
12
-
```
17
+
<!-- Here goes notable bug fixes that are worth a special mention or explanation -->
0 commit comments