From 8528a2024ddeb27aea3055561774f483522e8bce Mon Sep 17 00:00:00 2001 From: sancharigr Date: Wed, 3 Apr 2024 10:34:07 +0200 Subject: [PATCH] prepared release of version 3.8.0 --- CHANGELOG.mdx | 16 ++++++++++++++++ changelog/1054.bugfix.md | 1 - changelog/1072.improvement.md | 1 - changelog/1073.improvement.md | 1 - changelog/1074.improvement.md | 1 - changelog/1075.improvement.md | 1 - changelog/1076.improvement.md | 1 - changelog/1077.improvement.md | 1 - changelog/1078.improvement.md | 1 - pyproject.toml | 2 +- rasa_sdk/version.py | 2 +- 11 files changed, 18 insertions(+), 10 deletions(-) delete mode 100644 changelog/1054.bugfix.md delete mode 100644 changelog/1072.improvement.md delete mode 100644 changelog/1073.improvement.md delete mode 100644 changelog/1074.improvement.md delete mode 100644 changelog/1075.improvement.md delete mode 100644 changelog/1076.improvement.md delete mode 100644 changelog/1077.improvement.md delete mode 100644 changelog/1078.improvement.md diff --git a/CHANGELOG.mdx b/CHANGELOG.mdx index a126d645d..835338cf2 100644 --- a/CHANGELOG.mdx +++ b/CHANGELOG.mdx @@ -17,6 +17,22 @@ https://github.com/RasaHQ/rasa/tree/main/changelog/ . --> +## [3.8.0] - 2024-04-03 + +Rasa_Sdk 3.8.0 (2024-04-03) +### Improvements +- [#1072](https://github.com/rasahq/rasa-sdk/issues/1072): Add an `--endpoint` flag to the rasa_sdk CLI to enable tracing configuration. +- [#1073](https://github.com/rasahq/rasa-sdk/issues/1073): Instrument `ActionExecutor.run` method. +- [#1074](https://github.com/rasahq/rasa-sdk/issues/1074): Instrument `ValidationAction.run` method and extract attributes `class_name`, `sender_id`, `action_name` and `slots_to_validate`. +- [#1075](https://github.com/rasahq/rasa-sdk/issues/1075): Implement functionality that enables creating additional spans within custom actions. +- [#1076](https://github.com/rasahq/rasa-sdk/issues/1076): Instrument `ActionExecutor._create_api_response` and extract `slots`, `events`, `utters` and `message_count` attributes. +- [#1077](https://github.com/rasahq/rasa-sdk/issues/1077): Instrument `ValidationAction._extract_validation_events` and `FormValidationAction._extract_validation_events` and extract `validated_events` and `slots` attributes. +- [#1078](https://github.com/rasahq/rasa-sdk/issues/1078): Add a `stack` property to the `Tracker` class which corresponds to the dialogue stack. + +### Bugfixes +- [#1054](https://github.com/rasahq/rasa-sdk/issues/1054): Upgrade `Certifi` to fix Improper Following of a Certificate's Chain of Trust. + + ## [3.7.0] - 2023-11-22 Rasa_Sdk 3.7.0 (2023-11-22) diff --git a/changelog/1054.bugfix.md b/changelog/1054.bugfix.md deleted file mode 100644 index 221adf48a..000000000 --- a/changelog/1054.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Upgrade `Certifi` to fix Improper Following of a Certificate's Chain of Trust. \ No newline at end of file diff --git a/changelog/1072.improvement.md b/changelog/1072.improvement.md deleted file mode 100644 index 96ccac73d..000000000 --- a/changelog/1072.improvement.md +++ /dev/null @@ -1 +0,0 @@ -Add an `--endpoint` flag to the rasa_sdk CLI to enable tracing configuration. \ No newline at end of file diff --git a/changelog/1073.improvement.md b/changelog/1073.improvement.md deleted file mode 100644 index 50549763a..000000000 --- a/changelog/1073.improvement.md +++ /dev/null @@ -1 +0,0 @@ -Instrument `ActionExecutor.run` method. \ No newline at end of file diff --git a/changelog/1074.improvement.md b/changelog/1074.improvement.md deleted file mode 100644 index 278f6601d..000000000 --- a/changelog/1074.improvement.md +++ /dev/null @@ -1 +0,0 @@ -Instrument `ValidationAction.run` method and extract attributes `class_name`, `sender_id`, `action_name` and `slots_to_validate`. \ No newline at end of file diff --git a/changelog/1075.improvement.md b/changelog/1075.improvement.md deleted file mode 100644 index c254fe74c..000000000 --- a/changelog/1075.improvement.md +++ /dev/null @@ -1 +0,0 @@ -Implement functionality that enables creating additional spans within custom actions. \ No newline at end of file diff --git a/changelog/1076.improvement.md b/changelog/1076.improvement.md deleted file mode 100644 index 1e3250832..000000000 --- a/changelog/1076.improvement.md +++ /dev/null @@ -1 +0,0 @@ -Instrument `ActionExecutor._create_api_response` and extract `slots`, `events`, `utters` and `message_count` attributes. \ No newline at end of file diff --git a/changelog/1077.improvement.md b/changelog/1077.improvement.md deleted file mode 100644 index bea999c4f..000000000 --- a/changelog/1077.improvement.md +++ /dev/null @@ -1 +0,0 @@ -Instrument `ValidationAction._extract_validation_events` and `FormValidationAction._extract_validation_events` and extract `validated_events` and `slots` attributes. \ No newline at end of file diff --git a/changelog/1078.improvement.md b/changelog/1078.improvement.md deleted file mode 100644 index 9c03daa59..000000000 --- a/changelog/1078.improvement.md +++ /dev/null @@ -1 +0,0 @@ -Add a `stack` property to the `Tracker` class which corresponds to the dialogue stack. \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index d34be3991..7e0fbadd2 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 = "3.8.0rc2" +version = "3.8.0" 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 96ac44378..e4b840f9e 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__ = "3.8.0rc2" +__version__ = "3.8.0"