update CHANGELOG with new Daily and Transport features

This commit is contained in:
Aleix Conchillo Flaqué
2025-05-01 05:12:32 -07:00
parent 8d915c5ccb
commit 458fddfb48
2 changed files with 20 additions and 2 deletions

View File

@@ -762,7 +762,7 @@ class DailyTransportClient(EventHandler):
)
await future
async def update_remote_participants(self, remote_participants: Mapping[str, Any] = None):
async def update_remote_participants(self, remote_participants: Mapping[str, Any]):
future = self._get_event_loop().create_future()
self._client.update_remote_participants(
remote_participants=remote_participants, completion=completion_callback(future)
@@ -1352,7 +1352,7 @@ class DailyTransport(BaseTransport):
participant_settings=participant_settings, profile_settings=profile_settings
)
async def update_remote_participants(self, remote_participants: Mapping[str, Any] = None):
async def update_remote_participants(self, remote_participants: Mapping[str, Any]):
await self._client.update_remote_participants(remote_participants=remote_participants)
async def _on_joined(self, data):