From a9d2f86e416395b26763733d4ead0e2085be2df8 Mon Sep 17 00:00:00 2001 From: Tom Bocklisch Date: Tue, 30 Aug 2022 19:08:50 +0200 Subject: [PATCH] prepared release of version 2.8.10 --- CHANGELOG.mdx | 5 +++++ changelog/836.improvement.md | 1 - pyproject.toml | 2 +- rasa_sdk/version.py | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) delete mode 100644 changelog/836.improvement.md diff --git a/CHANGELOG.mdx b/CHANGELOG.mdx index eb8de3830..b3dc26c4e 100644 --- a/CHANGELOG.mdx +++ b/CHANGELOG.mdx @@ -17,6 +17,11 @@ https://github.com/RasaHQ/rasa/tree/main/changelog/ . --> +## [2.8.10] - 2022-08-30 +### Improvements +- [#836](https://github.com/rasahq/rasa-sdk/issues/836): Return a json response when encountering action execution exceptions. Log exceptions using logger rather than sanic default print. + + ## [2.8.9] - 2022-08-30 No significant changes. diff --git a/changelog/836.improvement.md b/changelog/836.improvement.md deleted file mode 100644 index f350b669a..000000000 --- a/changelog/836.improvement.md +++ /dev/null @@ -1 +0,0 @@ -Return a json response when encountering action execution exceptions. Log exceptions using logger rather than sanic default print. diff --git a/pyproject.toml b/pyproject.toml index 4ed0a5c25..6e5c510ad 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ exclude = "((.eggs | .git | .mypy_cache | .pytest_cache | build | dist))" [tool.poetry] name = "rasa-sdk" -version = "2.8.9" +version = "2.8.10" 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_sdk/version.py b/rasa_sdk/version.py index aec54bc9b..50813c564 100644 --- a/rasa_sdk/version.py +++ b/rasa_sdk/version.py @@ -1,3 +1,3 @@ # this file will automatically be changed, # do not add anything but the version number here! -__version__ = "2.8.9" +__version__ = "2.8.10"