diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 93fc0ee95e12..d616b686446d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -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 ^^^^^^^^^^^^^^^^^^^^ @@ -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 ^^^^^^^^^^^^^^^^^^^^ diff --git a/rasa/cli/x.py b/rasa/cli/x.py index d124dedcb260..eb4b8376b68b 100644 --- a/rasa/cli/x.py +++ b/rasa/cli/x.py @@ -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, ) diff --git a/rasa/nlu/featurizers/regex_featurizer.py b/rasa/nlu/featurizers/regex_featurizer.py index efdf7516a703..5e8f6c635cb6 100644 --- a/rasa/nlu/featurizers/regex_featurizer.py +++ b/rasa/nlu/featurizers/regex_featurizer.py @@ -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 {}"