Skip to content

Commit 6c1a7a5

Browse files
committed
Merge branch '1.10.x' into release-script-alpha
2 parents 4e8717d + 13df49b commit 6c1a7a5

21 files changed

+226
-55
lines changed

CHANGELOG.rst

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,30 @@ This project adheres to `Semantic Versioning`_ starting with version 1.0.
1717

1818
.. towncrier release notes start
1919
20+
[1.10.1] - 2020-05-15
21+
^^^^^^^^^^^^^^^^^^^^^
22+
23+
Improvements
24+
------------
25+
- `#5794 <https://github.com/rasahq/rasa/issues/5794>`_: Creating a ``Domain`` using ``Domain.fromDict`` can no longer alter the input dictionary.
26+
Previously, there could be problems when the input dictionary was re-used for other
27+
things after creating the ``Domain`` from it.
28+
29+
Bugfixes
30+
--------
31+
- `#5617 <https://github.com/rasahq/rasa/issues/5617>`_: Don't create TensorBoard log files during prediction.
32+
- `#5638 <https://github.com/rasahq/rasa/issues/5638>`_: Fix: DIET breaks with empty spaCy model
33+
- `#5755 <https://github.com/rasahq/rasa/issues/5755>`_: Remove ``clean_up_entities`` from extractors that extract pre-defined entities.
34+
Just keep the clean up method for entity extractors that extract custom entities.
35+
- `#5792 <https://github.com/rasahq/rasa/issues/5792>`_: Fixed issue where the ``DucklingHTTPExtractor`` component would
36+
not work if its `url` contained a trailing slash.
37+
- `#5825 <https://github.com/rasahq/rasa/issues/5825>`_: Fix list index out of range error in ``ensure_consistent_bilou_tagging``.
38+
39+
Miscellaneous internal changes
40+
------------------------------
41+
- #5788
42+
43+
2044
[1.10.0] - 2020-04-28
2145
^^^^^^^^^^^^^^^^^^^^^
2246

changelog/5617.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/5638.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/5755.bugfix.rst

Lines changed: 0 additions & 2 deletions
This file was deleted.

changelog/5758.bugfix.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Fixed a bug in
2+
`rasa export <https://rasa.com/docs/rasa-x/installation-and-setup/existing-deployment/#migrate-conversations>`_
3+
(:ref:`section_export`) which caused Rasa Open Source to only migrate conversation
4+
events from the last :ref:`session_config`.

changelog/5788.misc.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/5792.bugfix.rst

Lines changed: 0 additions & 2 deletions
This file was deleted.

docs/conf.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,21 @@
6666
# The full version, including alpha/beta/rc tags.
6767
release = __version__
6868

69+
# Variables (formatted as `|variable|`) to be replaced in the text
70+
# Sphinx replaces `|release|` and `|version|` by default,
71+
# but we have to add an `rst_epilog` to replace our own variables
72+
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
73+
# https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-rst_epilog
74+
from rasa_sdk import __version__ as rasa_sdk_version
75+
76+
# type : Dict[Text, Text]
77+
variables_to_replace = {"rasa_sdk_version": rasa_sdk_version}
78+
79+
rst_epilog = ""
80+
for name, value in variables_to_replace.items():
81+
rst_epilog += f".. |{name}| replace:: {value}\n"
82+
83+
6984
# The language for content autogenerated by Sphinx. Refer to documentation
7085
# for a list of supported languages.
7186
#

docs/user-guide/docker/building-in-docker.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ You can then run the actions with the following command:
222222

223223
.. parsed-literal::
224224
225-
docker run -d -v $(pwd)/actions:/app/actions --net my-project --name action-server rasa/rasa-sdk:\ |version|.0
225+
docker run -d -v $(pwd)/actions:/app/actions --net my-project --name action-server rasa/rasa-sdk:\ |rasa_sdk_version|
226226
227227
228228
Here's what's happening in that command:
@@ -232,7 +232,7 @@ Here's what's happening in that command:
232232
container so that the action server can run the code in the ``actions`` folder
233233
- ``net my-project``: Run the server on a specific network so that the rasa container can find it
234234
- ``--name action-server``: Gives the server a specific name for the rasa server to reference
235-
- rasa/rasa-sdk:|version|.0 : Uses the Rasa SDK image with the tag |version|.0
235+
- rasa/rasa-sdk:|rasa_sdk_version| : Uses the Rasa SDK image with the tag |rasa_sdk_version|
236236

237237

238238
Because the action server is running in detached mode, if you want to stop the container,

docs/user-guide/how-to-deploy.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ To create your image:
128128
.. parsed-literal::
129129
130130
# Extend the official Rasa SDK image
131-
FROM rasa/rasa-sdk:\ |version|.0
131+
FROM rasa/rasa-sdk:|rasa_sdk_version|
132132
133133
# Use subdirectory as working directory
134134
WORKDIR /app

0 commit comments

Comments
 (0)