From 8263d1dd6fdcf485c1f304c8e9c3c38a1ca8a1ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Conchillo=20Flaqu=C3=A9?= Date: Wed, 31 Jul 2024 23:42:38 -0700 Subject: [PATCH] update CHANGELOG with latest changes --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 94db1935f..70d8947b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed +- A few services required an `aiohttp.ClientSession` to be passed to the + constructor. This is now option an a new session will be created if none is + given. + - `BotSpeakingFrame` is now a control frame. - `StartFrame` is now a control frame similar to `EndFrame`. @@ -26,6 +30,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed +- Improved `EndFrame` and `CancelFrame` handling. `EndFrame` should end things + gracefully while a `CancelFrame` should cancel all running tasks as soon as + possible. + - Fixed an issue in `AIService` that would cause a yielded `None` value to be processed.