Rasa

Latest version: v3.6.21

Safety actively analyzes 724206 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 13 of 51

3.4.16

Not secure
Bugfixes
- [12640](https://github.com/rasahq/rasa/issues/12640): Fix the issue with the most recent model not being selected if the owner or permissions where modified on the model file.

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

3.4.15

Not secure
Bugfixes
- [12566](https://github.com/rasahq/rasa/issues/12566): Introduce a validation step in `rasa data validate` command to identify non-existent paths and empty domains.
- [12568](https://github.com/rasahq/rasa/issues/12568): Rich responses containing buttons with parentheses characters are now correctly parsed.
Previously any characters found between the first identified pair of `()` in response button took precedence.

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

3.4.14

Not secure
Bugfixes
- [12467](https://github.com/rasahq/rasa/issues/12467): Fix running custom form validation to update required slots at form activation when prefilled slots consist only of slots
that are not requested by the form.

3.4.13

Not secure
No significant changes.

3.4.12

Not secure
Bugfixes
- [12361](https://github.com/rasahq/rasa/issues/12361): Explicitly handled `BufferError exception - Local: Queue full` in Kafka producer.

3.4.11

Not secure
Bugfixes
- [12325](https://github.com/rasahq/rasa/issues/12325): Fix parsing of RabbitMQ URL provided in `endpoints.yml` file to include vhost path and query parameters.
Re-allows inclusion of credentials in the URL as a regression fix (this was supported in 2.x).
- [12364](https://github.com/rasahq/rasa/issues/12364): `SlotSet` events will be emitted when the value set by the custom action is the same as the existing value of the slot. This was fixed for `AugmentedMemoizationPolicy` to work properly with truncated trackers.

To restore the previous behaviour, the custom action can return a SlotSet only if the slot value has changed. For example,


class CustomAction(Action):
def name(self) -> Text:
return "custom_action"

def run(self, dispatcher: CollectingDispatcher,
tracker: Tracker,
domain: Dict[Text, Any]) -> List[Dict[Text, Any]]:
current value of the slot
slot_value = tracker.get_slot('my_slot')

value of the entity
this is parsed from the user utterance
entity_value = next(tracker.get_latest_entity_values("entity_name"), None)

if slot_value != entity_value:
return[SlotSet("my_slot", entity_value)]


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

Page 13 of 51

Links

Releases

Has known vulnerabilities

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.