Skip to content

Commit 49e2b36

Browse files
committed
version 0.10.1
1 parent f6cf32d commit 49e2b36

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Release history
22

3+
## trio-websocket 0.10.1 (2023-03-18)
4+
### Changed
5+
- send_message() is changed to raise ConnectionClosed when a close
6+
handshake is in progress. Previously, it would silently ignore
7+
the call, which was an oversight, given that ConnectionClosed is
8+
defined to cover connections "closed or in the process of closing".
9+
Noteably, this fixes send_message() leaking a wsproto LocalProtocolError
10+
with wsproto >= 1.22.0.
11+
12+
Released as a minor version increment, since code calling send_message()
13+
is expected to handle ConnectionClosed anyway.
14+
315
## trio-websocket 0.10.0 (2023-03-13)
416
### Fixed
517
- avoid MultiError warnings with trio >= 0.22

trio_websocket/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.11.0-dev'
1+
__version__ = '0.10.1'

0 commit comments

Comments
 (0)