From 89e5639d9ecb3e620d63cf331488c2d9a28d2270 Mon Sep 17 00:00:00 2001 From: Ella Rohm-Ensing Date: Tue, 18 May 2021 10:57:55 +0200 Subject: [PATCH] prepared release of version 2.6.2 --- CHANGELOG.mdx | 24 ++++++++++++++++++++++++ changelog/8079.doc.md | 1 - changelog/8364.bugfix.md | 5 ----- changelog/8581.bugfix.md | 4 ---- changelog/8587.misc.md | 1 - changelog/8590.bugfix.md | 1 - changelog/8631.bugfix.md | 2 -- pyproject.toml | 2 +- rasa/version.py | 2 +- 9 files changed, 26 insertions(+), 16 deletions(-) delete mode 100644 changelog/8079.doc.md delete mode 100644 changelog/8364.bugfix.md delete mode 100644 changelog/8581.bugfix.md delete mode 100644 changelog/8587.misc.md delete mode 100644 changelog/8590.bugfix.md delete mode 100644 changelog/8631.bugfix.md diff --git a/CHANGELOG.mdx b/CHANGELOG.mdx index 4633bd734a50..1727eb265238 100644 --- a/CHANGELOG.mdx +++ b/CHANGELOG.mdx @@ -16,6 +16,30 @@ https://github.com/RasaHQ/rasa/tree/main/changelog/ . --> +## [2.6.2] - 2021-05-18 + + +### Bugfixes +- [#8364](https://github.com/rasahq/rasa/issues/8364): Fixed a bug where [`ListSlot`](domain.mdx#list-slot)s were filled with single items + in case only one matching entity was extracted for this slot. + + Values applied to [`ListSlot`](domain.mdx#list-slot)s will be converted to a `List` + in case they aren't one. +- [#8581](https://github.com/rasahq/rasa/issues/8581): Fix bug with false rule conflicts + + This essentially reverts [PR 8446](https://github.com/RasaHQ/rasa/pull/8446/files), except for the tests. + The PR is redundant due to [PR 8646](https://github.com/RasaHQ/rasa/pull/8646/files). +- [#8590](https://github.com/rasahq/rasa/issues/8590): Handle `AttributeError ` thrown by empty slot mappings in domain form through refactoring. +- [#8631](https://github.com/rasahq/rasa/issues/8631): Fixed incorrect `The action 'utter_' is used in the stories, but is not a valid utterance action` + error when running `rasa data validate` with response selector responses in the domain file. + +### Improved Documentation +- [#8079](https://github.com/rasahq/rasa/issues/8079): Added a note to clarify best practice for resetting all slots after form deactivation. + +### Miscellaneous internal changes +- [#8587](https://github.com/rasahq/rasa/issues/8587) + + ## [2.6.1] - 2021-05-11 diff --git a/changelog/8079.doc.md b/changelog/8079.doc.md deleted file mode 100644 index aff2a31833ba..000000000000 --- a/changelog/8079.doc.md +++ /dev/null @@ -1 +0,0 @@ -Added a note to clarify best practice for resetting all slots after form deactivation. diff --git a/changelog/8364.bugfix.md b/changelog/8364.bugfix.md deleted file mode 100644 index c53816db4d59..000000000000 --- a/changelog/8364.bugfix.md +++ /dev/null @@ -1,5 +0,0 @@ -Fixed a bug where [`ListSlot`](domain.mdx#list-slot)s were filled with single items -in case only one matching entity was extracted for this slot. - -Values applied to [`ListSlot`](domain.mdx#list-slot)s will be converted to a `List` -in case they aren't one. diff --git a/changelog/8581.bugfix.md b/changelog/8581.bugfix.md deleted file mode 100644 index 70ab6e49c1f4..000000000000 --- a/changelog/8581.bugfix.md +++ /dev/null @@ -1,4 +0,0 @@ -Fix bug with false rule conflicts - -This essentially reverts [PR 8446](https://github.com/RasaHQ/rasa/pull/8446/files), except for the tests. -The PR is redundant due to [PR 8646](https://github.com/RasaHQ/rasa/pull/8646/files). \ No newline at end of file diff --git a/changelog/8587.misc.md b/changelog/8587.misc.md deleted file mode 100644 index 5315711c3357..000000000000 --- a/changelog/8587.misc.md +++ /dev/null @@ -1 +0,0 @@ -Catch `AttributeError` when reading stories or rules in YAML format and raise warning when intent value is missing in stories or rules. diff --git a/changelog/8590.bugfix.md b/changelog/8590.bugfix.md deleted file mode 100644 index 63f3ec1afa1c..000000000000 --- a/changelog/8590.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Handle `AttributeError ` thrown by empty slot mappings in domain form through refactoring. diff --git a/changelog/8631.bugfix.md b/changelog/8631.bugfix.md deleted file mode 100644 index 5995be64b96b..000000000000 --- a/changelog/8631.bugfix.md +++ /dev/null @@ -1,2 +0,0 @@ -Fixed incorrect `The action 'utter_' is used in the stories, but is not a valid utterance action` -error when running `rasa data validate` with response selector responses in the domain file. diff --git a/pyproject.toml b/pyproject.toml index 9979080063c5..2828f328ff0a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ exclude = "((.eggs | .git | .pytest_cache | build | dist))" [tool.poetry] name = "rasa" -version = "2.6.1" +version = "2.6.2" 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 4f662b2d707b..1b33ad448867 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__ = "2.6.1" +__version__ = "2.6.2"