diff --git a/CHANGELOG.mdx b/CHANGELOG.mdx index bb5e57de5c7f..bce523aa28c7 100644 --- a/CHANGELOG.mdx +++ b/CHANGELOG.mdx @@ -16,6 +16,14 @@ https://github.com/RasaHQ/rasa/tree/main/changelog/ . --> +## [3.5.11] - 2023-06-08 + +Rasa 3.5.11 (2023-06-08) +### Bugfixes +- [#12467](https://github.com/rasahq/rasa/issues/12467): Fix running custom form validation to update required slots at form activation when prefilled slots consist only of slots + that are not requested by the form. + + ## [3.5.10] - 2023-05-23 Rasa 3.5.10 (2023-05-23) diff --git a/changelog/12467.bugfix.md b/changelog/12467.bugfix.md deleted file mode 100644 index 0ff220c3cb82..000000000000 --- a/changelog/12467.bugfix.md +++ /dev/null @@ -1,2 +0,0 @@ -Fix running custom form validation to update required slots at form activation when prefilled slots consist only of slots -that are not requested by the form. diff --git a/pyproject.toml b/pyproject.toml index ceaae40fd00e..fb5f742f280f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ exclude = "((.eggs | .git | .pytest_cache | build | dist))" [tool.poetry] name = "rasa" -version = "3.5.10" +version = "3.5.11" 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 fa3717ac3229..60754d26bf48 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.5.10" +__version__ = "3.5.11"