Skip to content

Commit

Permalink
Merge b67f56b into c41144c
Browse files Browse the repository at this point in the history
  • Loading branch information
akelad committed Sep 19, 2019
2 parents c41144c + b67f56b commit 4f5b162
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 2 deletions.
19 changes: 18 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ Fixed
``Doc``-objects. The resulting lists are merged with their preserved order and
properly returned.


[1.3.3] - 2019-09-13
^^^^^^^^^^^^^^^^^^^^

Expand Down Expand Up @@ -145,6 +144,24 @@ Removed
-------
- Removed ``--report`` argument from ``rasa test nlu``. All output files are stored in the ``--out`` directory.


[1.2.9] - 2019-09-17
^^^^^^^^^^^^^^^^^^^^

Fixed
-----
- Correctly pass SSL flag values to x CLI command


[1.2.8] - 2019-09-10
^^^^^^^^^^^^^^^^^^^^

Fixed
-----
- SQL tracker events are retrieved ordered by timestamps. This fixes interactive
learning events being shown in the wrong order.


[1.2.7] - 2019-09-02
^^^^^^^^^^^^^^^^^^^^

Expand Down
3 changes: 3 additions & 0 deletions rasa/cli/x.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,9 @@ def _rasa_service(
enable_api=True,
jwt_secret=args.jwt_secret,
jwt_method=args.jwt_method,
ssl_certificate=args.ssl_certificate,
ssl_keyfile=args.ssl_keyfile,
ssl_password=args.ssl_password,
)


Expand Down
2 changes: 1 addition & 1 deletion rasa/nlu/featurizers/regex_featurizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def _generate_lookup_regex(self, lookup_table):
else:

try:
f = io.open(lookup_elements, "r", encoding="utf-8")
f = open(lookup_elements, "r", encoding="utf-8")
except IOError:
raise ValueError(
"Could not load lookup table {}"
Expand Down

0 comments on commit 4f5b162

Please sign in to comment.