Skip to content

Releases: RasaHQ/rasa

2.0.0a4

03 Sep 10:33
5c314fd
Compare
Choose a tag to compare

Pre-release version

1.10.12

03 Sep 10:52
a1dbc58
Compare
Choose a tag to compare

Bugfixes

  • #6549: Fix slow training of CRFEntityExtractor when using Entity Roles and Groups.

2.0.0a3

31 Aug 17:37
25e3186
Compare
Choose a tag to compare

Pre-release version

1.10.11

21 Aug 15:00
2ea3535
Compare
Choose a tag to compare

Improvements

  • #6044: Do not deepcopy slots when instantiating trackers. This leads to a significant
    speedup when training on domains with a large number of slots.

  • #6226: Added more debugging logs to the lock-stores to simplify debugging in case of
    connection problems.

    Added a new parameter socket_timeout to the RedisLockStore. If Redis doesn't
    answer within socket_timeout seconds to requests from Rasa Open Source, an error
    is raised. This avoids seemingly infinitely blocking connections and exposes connection
    problems early.

Bugfixes

  • #5182: Fixed a bug where domain fields such as store_entities_as_slots were overridden
    with defaults and therefore ignored.
  • #6191: If two entities are separated by a comma (or any other symbol), extract them as two separate entities.
  • #6340: If two entities are separated by a single space and uses BILOU tagging,
    extract them as two separate entities based on their BILOU tags.

1.10.10

04 Aug 13:04
66db163
Compare
Choose a tag to compare

Bugfixes

  • #6280: Fixed TypeError: expected string or bytes-like object
    issue caused by integer, boolean, and null values in templates.

1.10.9

29 Jul 17:32
932bcb0
Compare
Choose a tag to compare

Improvements

  • #6255: Rasa Open Source will no longer add responses to the actions section of the
    domain when persisting the domain as a file. This addresses related problems in Rasa X
    when Integrated Version Control introduced big diffs due to the added utterances
    in the actions section.

Bugfixes

  • #6160: Consider entity roles/groups during interactive learning.

1.10.8

15 Jul 09:36
25ab70a
Compare
Choose a tag to compare

Bugfixes

  • #6075: Add 'Access-Control-Expose-Headers' for 'filename' header
  • #6137: Fixed a bug where an invalid language variable prevents rasa from finding training examples when importing Dialogflow data.

2.0.0a1

13 Jul 16:35
fab4c7c
Compare
Choose a tag to compare
2.0.0a1 Pre-release
Pre-release
Merge pull request #6193 from RasaHQ/prepare-release-2.0.0a1

Prepare release 2.0.0a1

1.10.7

07 Jul 17:21
638e114
Compare
Choose a tag to compare

Features

  • #6150: Add not_supported_language_list to component to be able to define languages that a component can NOT handle.

    WhitespaceTokenizer is not able to process languages which are not separated by whitespace. WhitespaceTokenizer
    will throw an error if it is used with Chinese, Japanese, and Thai.

Bugfixes

  • #6150: WhitespaceTokenizer only removes emoji if complete token matches emoji regex.

1.10.6

06 Jul 14:56
cfb6a19
Compare
Choose a tag to compare

Bugfixes

  • #6143: Prevent WhitespaceTokenizer from outputting empty list of tokens.