Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.9.29 (2026-01-27)

- Remove the payload limit in controller subscription client.

## 0.9.28 (2026-01-19)

- Re-generate graph api.
Expand Down
4 changes: 4 additions & 0 deletions python/mujinwebstackclient/controllerwebclientraw.py
Original file line number Diff line number Diff line change
Expand Up @@ -509,13 +509,17 @@ async def _OpenWebSocketConnection(self):
subprotocols=subprotocols,
additional_headers=headers,
ssl=sslContext,
# accept all frames sent by the controller
max_size=None,
)
else:
self._webSocket = await websockets.connect(
uri=uri,
subprotocols=subprotocols,
additional_headers=headers,
ssl=sslContext,
# accept all frames sent by the controller
max_size=None,
)

await self._webSocket.send(
Expand Down
2 changes: 1 addition & 1 deletion python/mujinwebstackclient/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = '0.9.28'
__version__ = '0.9.29'

# Do not forget to update CHANGELOG.md