Skip to content

Commit

Permalink
Merge pull request #5558 from RasaHQ/prepare-release-1.9.5
Browse files Browse the repository at this point in the history
prepared release of version 1.9.5
  • Loading branch information
ricwo authored Apr 2, 2020
2 parents e817aac + 09b5f5f commit 8063f79
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 21 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,35 @@ This project adheres to `Semantic Versioning`_ starting with version 1.0.

.. towncrier release notes start
[1.9.5] - 2020-04-01
^^^^^^^^^^^^^^^^^^^^

Improvements
------------
- `#5533 <https://github.com/rasahq/rasa/issues/5533>`_: Support for
`PostgreSQL schemas <https://www.postgresql.org/docs/11/ddl-schemas.html>`_ in
:ref:`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

.. code-block:: postgresql
CREATE SCHEMA schema_name;
Bugfixes
--------
- `#5547 <https://github.com/rasahq/rasa/issues/5547>`_: Fixed ambiguous logging in ``DIETClassifier`` by adding the name of the calling class to the log message.


[1.9.4] - 2020-03-30
^^^^^^^^^^^^^^^^^^^^

Expand Down
18 changes: 0 additions & 18 deletions changelog/5533.improvement.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog/5547.bugfix.rst

This file was deleted.

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 | .pytype | .pytest_cache | build | dist))"

[tool.poetry]
name = "rasa"
version = "1.9.4"
version = "1.9.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__ = "1.9.4"
__version__ = "1.9.5"

0 comments on commit 8063f79

Please sign in to comment.