Rasa: 1.9.5 Release

Release date:
April 2, 2020
Previous version:
1.9.4 (released March 30, 2020)
Magnitude:
1,025 Diff Delta
Contributors:
9 total committers
Data confidence:
Commits:

31 Commits in this Release

Ordered by the degree to which they evolved the repo in this version.

Authored March 31, 2020
Authored March 31, 2020
Authored April 1, 2020
Authored March 31, 2020
Authored April 1, 2020
Authored April 1, 2020
Authored March 31, 2020
Authored March 31, 2020
Authored March 31, 2020
Authored March 31, 2020
Authored March 31, 2020
Authored March 31, 2020
Authored March 31, 2020
Authored March 31, 2020
Authored March 31, 2020
Authored March 31, 2020
Authored March 31, 2020
Authored March 31, 2020
Authored April 1, 2020
Authored March 31, 2020
Authored March 31, 2020
Authored April 1, 2020
Authored April 1, 2020
Authored April 1, 2020
Authored April 1, 2020

Top Contributors in 1.9.5

ricwo
tabergma
indam23
erohmensing
hotzenklotz
alwx
eugenelin89
koaning
dakshvar22

Directory Browser for 1.9.5

All files are compared to previous version, 1.9.4. Click here to browse diffs between other versions.

Loading File Browser...

Release Notes Published

Improvements

  • #5533: Support for PostgreSQL schemas in sql-tracker-store. The SQLTrackerStore accesses schemas defined by the POSTGRESQL_SCHEMA environment variable if connected to a PostgreSQL database.

    The schema is added to the connection string option's -csearch_path key, e.g. -options=-csearch_path=<SCHEMA_NAME> (see https://www.postgresql.org/docs/11/contrib-dblink-connect.html for more details). As before, if no POSTGRESQL_SCHEMA is defined, Rasa uses the database's default schema (public).

    The schema has to exist in the database before connecting, i.e. it needs to have been created with

    CREATE SCHEMA schema_name;
    

Bugfixes

  • #5547: Fixed ambiguous logging in DIETClassifier by adding the name of the calling class to the log message.