From 5b70048d145fec2f50e409a3295eda9938b9c2c6 Mon Sep 17 00:00:00 2001 From: Daksh Date: Fri, 27 Mar 2020 16:01:26 +0530 Subject: [PATCH 1/2] prepared release of version 1.8.3 --- CHANGELOG.rst | 15 +++++++++++++++ changelog/5302.doc.rst | 1 - changelog/5405.bugfix.rst | 2 -- changelog/5444.bugfix.rst | 1 - changelog/5506.bugfix.rst | 1 - pyproject.toml | 2 +- rasa/version.py | 2 +- 7 files changed, 17 insertions(+), 7 deletions(-) delete mode 100644 changelog/5302.doc.rst delete mode 100644 changelog/5405.bugfix.rst delete mode 100644 changelog/5444.bugfix.rst delete mode 100644 changelog/5506.bugfix.rst diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 90821382542c..df60cfb20e3f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -17,6 +17,21 @@ This project adheres to `Semantic Versioning`_ starting with version 1.0. .. towncrier release notes start +[1.8.3] - 2020-03-27 +^^^^^^^^^^^^^^^^^^^^ + +Bugfixes +-------- +- `#5405 `_: Fixes issue where model always gets retrained if multiple NLU/story files are in a + directory, by sorting the list of files. +- `#5444 `_: Fixed ambiguous logging in `DIETClassifier` by adding the name of the calling class to the log message. +- `#5506 `_: Set default value for ``weight_sparsity`` in ``ResponseSelector`` to ``0``. + +Improved Documentation +---------------------- +- `#5302 `_: Improved documentation on how to build and deploy an action server image for use on other servers such as Rasa X deployments. + + [1.8.2] - 2020-03-19 ^^^^^^^^^^^^^^^^^^^^ diff --git a/changelog/5302.doc.rst b/changelog/5302.doc.rst deleted file mode 100644 index 53e9816dd85b..000000000000 --- a/changelog/5302.doc.rst +++ /dev/null @@ -1 +0,0 @@ -Improved documentation on how to build and deploy an action server image for use on other servers such as Rasa X deployments. diff --git a/changelog/5405.bugfix.rst b/changelog/5405.bugfix.rst deleted file mode 100644 index 0ef3ad6e9c87..000000000000 --- a/changelog/5405.bugfix.rst +++ /dev/null @@ -1,2 +0,0 @@ -Fixes issue where model always gets retrained if multiple NLU/story files are in a -directory, by sorting the list of files. diff --git a/changelog/5444.bugfix.rst b/changelog/5444.bugfix.rst deleted file mode 100644 index 86ddd9a4bc79..000000000000 --- a/changelog/5444.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fixed ambiguous logging in `DIETClassifier` by adding the name of the calling class to the log message. diff --git a/changelog/5506.bugfix.rst b/changelog/5506.bugfix.rst deleted file mode 100644 index 78b30174cb8e..000000000000 --- a/changelog/5506.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Set default value for ``weight_sparsity`` in ``ResponseSelector`` to ``0``. \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 178e7d0b314e..62064fe27dcd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ exclude = "((.eggs | .git | .pytype | .pytest_cache | build | dist))" [tool.poetry] name = "rasa" -version = "1.8.2" +version = "1.8.3" 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 841a3e4c049d..8efeaf0022b7 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__ = "1.8.2" +__version__ = "1.8.3" From 6c6d8f59ef83c86dc158ef2e7699991a283a75fd Mon Sep 17 00:00:00 2001 From: Daksh Date: Fri, 27 Mar 2020 16:58:57 +0530 Subject: [PATCH 2/2] more verbose changelog --- CHANGELOG.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index df60cfb20e3f..c35e4956da04 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -26,6 +26,8 @@ Bugfixes directory, by sorting the list of files. - `#5444 `_: Fixed ambiguous logging in `DIETClassifier` by adding the name of the calling class to the log message. - `#5506 `_: Set default value for ``weight_sparsity`` in ``ResponseSelector`` to ``0``. + This fixes a bug in the default behaviour of ``ResponseSelector`` which was accidentally introduced in ``rasa==1.8.0``. + Users should update to this version or ``rasa>=1.9.3`` and re-train their models if ``ResponseSelector`` was used in their pipeline. Improved Documentation ----------------------