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
Copy file name to clipboardExpand all lines: RELEASE_NOTES.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,13 @@
12
12
13
13
- An experimental `NopReceiver` implementation has been added, which can be used as a place-holder receiver that never receives a message.
14
14
15
+
- The experimental `OptionalReceiver` has been deprecated. It will be removed with the next major release. It can be replaced with a `NopReceiver` as follows:
16
+
17
+
```python
18
+
opt_recv: Receiver[T] |None
19
+
recv: Receiver[T] = NopReceiver[T]() if opt_recv isNoneelse opt_recv
20
+
```
21
+
15
22
## Bug Fixes
16
23
17
24
<!-- Here goes notable bug fixes that are worth a special mention or explanation -->
0 commit comments