diff --git a/CHANGELOG.mdx b/CHANGELOG.mdx index 3d84efce3509..f8a16c27a779 100644 --- a/CHANGELOG.mdx +++ b/CHANGELOG.mdx @@ -16,6 +16,15 @@ https://github.com/RasaHQ/rasa/tree/main/changelog/ . --> +## [3.4.18] - 2023-09-22 + +Rasa 3.4.18 (2023-09-22) +### Improvements +- [#12827](https://github.com/rasahq/rasa/issues/12827): Improved handling of last batch during DIET and TED training. The last batch is discarded if it contains less than half a batch size of data. +- [#12835](https://github.com/rasahq/rasa/issues/12835): Added `username` to the connection parameters for `RedisLockStore` and `RedisTrackerStore` +- [#1493](https://github.com/rasahq/rasa/issues/1493): Telemetry data is only send for licensed users. + + ## [3.4.17] - 2023-09-06 Rasa 3.4.17 (2023-09-06) diff --git a/changelog/12827.improvement.md b/changelog/12827.improvement.md deleted file mode 100644 index f1b7573c8d32..000000000000 --- a/changelog/12827.improvement.md +++ /dev/null @@ -1 +0,0 @@ -Improved handling of last batch during DIET and TED training. The last batch is discarded if it contains less than half a batch size of data. \ No newline at end of file diff --git a/changelog/12835.improvement.md b/changelog/12835.improvement.md deleted file mode 100644 index 0fea8ac19d52..000000000000 --- a/changelog/12835.improvement.md +++ /dev/null @@ -1 +0,0 @@ -Added `username` to the connection parameters for `RedisLockStore` and `RedisTrackerStore` \ No newline at end of file diff --git a/changelog/1493.improvement.md b/changelog/1493.improvement.md deleted file mode 100644 index f2b43d85714f..000000000000 --- a/changelog/1493.improvement.md +++ /dev/null @@ -1 +0,0 @@ -Telemetry data is only send for licensed users. diff --git a/pyproject.toml b/pyproject.toml index 49e929f32976..7bdacabda5b9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ exclude = "((.eggs | .git | .pytest_cache | build | dist))" [tool.poetry] name = "rasa" -version = "3.4.17" +version = "3.4.18" description = "Open source machine learning framework to automate text- and voice-based conversations: NLU, dialogue management, connect to Slack, Facebook, and more - Create chatbots and voice assistants" authors = [ "Rasa Technologies GmbH ",] maintainers = [ "Tom Bocklisch ",] diff --git a/rasa/version.py b/rasa/version.py index 881f805ea9aa..76f79cb93af5 100644 --- a/rasa/version.py +++ b/rasa/version.py @@ -1,3 +1,3 @@ # this file will automatically be changed, # do not add anything but the version number here! -__version__ = "3.4.17" +__version__ = "3.4.18"