Skip to content

Commit

Permalink
prepared release of version 3.5.5 (#12300)
Browse files Browse the repository at this point in the history
* prepared release of version 3.5.5

* update rasa-sdk version to 3.5.1
  • Loading branch information
ancalita committed Apr 20, 2023
1 parent 52c4285 commit 952ec46
Show file tree
Hide file tree
Showing 12 changed files with 26 additions and 15 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,26 @@ https://github.com/RasaHQ/rasa/tree/main/changelog/ . -->

<!-- TOWNCRIER -->

## [3.5.5] - 2023-04-20

Rasa 3.5.5 (2023-04-20)
### Bugfixes
- [#12268](https://github.com/rasahq/rasa/issues/12268): Allow slot mapping parameter `intent` to accept a list of intent names (as strings), in addition to accepting an intent name as a single string.
- [#12271](https://github.com/rasahq/rasa/issues/12271): Fix `BlockingIOError` when running `rasa shell` on utterances with more than 5KB of text.
- [#12286](https://github.com/rasahq/rasa/issues/12286): Use `ruamel.yaml` round-trip loader in order to preserve all comments after appending `assistant_id` to `config.yml`.
- [#12295](https://github.com/rasahq/rasa/issues/12295): Fix `AttributeError: 'NoneType' object has no attribute 'send_response'` caused by retrieving tracker via `GET /conversations/{conversation_id}/tracker` endpoint when `action_session_start` is customized in a custom action.
This was addressed by passing an instance of `CollectingOutputChannel` to the method retrieving the tracker from the `MessageProcessor`.

### Improved Documentation
- [#12272](https://github.com/rasahq/rasa/issues/12272): Updated AWS model loading documentation to indicate what should `AWS_ENDPOINT_URL` environment variable be set to.
Added integration test for AWS model loading.
- [#12279](https://github.com/rasahq/rasa/issues/12279): Updated Rasa Pro Services documentation to add `KAFKA_SSL_CA_LOCATION` environment variable. Allows connections over SSL to Kafka
- [#12290](https://github.com/rasahq/rasa/issues/12290): Added note to CLI documentation to address encoding and color issues on certain Windows terminals

### Miscellaneous internal changes
- [#12267](https://github.com/rasahq/rasa/issues/12267)


## [3.5.4] - 2023-04-05

Rasa 3.5.4 (2023-04-05)
Expand Down
1 change: 0 additions & 1 deletion changelog/12267.misc.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog/12268.bugfix.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog/12271.bugfix.md

This file was deleted.

2 changes: 0 additions & 2 deletions changelog/12272.doc.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog/12279.doc.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog/12286.bugfix.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog/12290.doc.md

This file was deleted.

2 changes: 0 additions & 2 deletions changelog/12295.bugfix.md

This file was deleted.

7 changes: 4 additions & 3 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ exclude = "((.eggs | .git | .pytest_cache | build | dist))"

[tool.poetry]
name = "rasa"
version = "3.5.4"
version = "3.5.5"
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 <hi@rasa.com>",]
maintainers = [ "Tom Bocklisch <tom@rasa.com>",]
Expand Down
2 changes: 1 addition & 1 deletion rasa/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# this file will automatically be changed,
# do not add anything but the version number here!
__version__ = "3.5.4"
__version__ = "3.5.5"

0 comments on commit 952ec46

Please sign in to comment.