Skip to content

Commit

Permalink
prepared release of version 1.10.11
Browse files Browse the repository at this point in the history
  • Loading branch information
wochinge committed Aug 21, 2020
1 parent 81319cc commit c023d17
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 16 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,30 @@ This project adheres to `Semantic Versioning`_ starting with version 1.0.

.. towncrier release notes start
[1.10.11] - 2020-08-21
^^^^^^^^^^^^^^^^^^^^^^

Improvements
------------
- `#6044 <https://github.com/rasahq/rasa/issues/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 <https://github.com/rasahq/rasa/issues/6226>`_: Added more debugging logs to the :ref:`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 <https://github.com/rasahq/rasa/issues/5182>`_: Fixed a bug where domain fields such as ``store_entities_as_slots`` were overridden
with defaults and therefore ignored.
- `#6191 <https://github.com/rasahq/rasa/issues/6191>`_: If two entities are separated by a comma (or any other symbol), extract them as two separate entities.
- `#6340 <https://github.com/rasahq/rasa/issues/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] - 2020-08-04
^^^^^^^^^^^^^^^^^^^^^^

Expand Down
2 changes: 0 additions & 2 deletions changelog/5182.bugfix.rst

This file was deleted.

2 changes: 0 additions & 2 deletions changelog/6044.improvement.rst

This file was deleted.

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

This file was deleted.

7 changes: 0 additions & 7 deletions changelog/6226.improvement.rst

This file was deleted.

2 changes: 0 additions & 2 deletions changelog/6340.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.10.10"
version = "1.10.11"
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.10.10"
__version__ = "1.10.11"

0 comments on commit c023d17

Please sign in to comment.