From 7a49f69bfa81e73806e554f463df12a7080a9e3c Mon Sep 17 00:00:00 2001 From: Federico Tedin Date: Fri, 22 Nov 2019 14:18:48 +0100 Subject: [PATCH] Prepare 1.5.0 release. --- CHANGELOG.rst | 34 ++++++++++++++++++---------------- rasa_sdk/version.py | 2 +- 2 files changed, 19 insertions(+), 17 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 035035b92..b2af3f80a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,35 +6,37 @@ This project adheres to `Semantic Versioning`_ starting with version 0.11.0. .. _master-release: -[Unreleased 1.5.0a1] - `master`_ + +[Unreleased 1.6.0a1] - `master`_ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ .. note:: This version is not yet released and is under active development. + +[1.5.0] - 2019-11-22 +^^^^^^^^^^^^^^^^^^^^ + Added ----- - Add support for multiple sanic workers (configurable with the - ``ACTION_SERVER_SANIC_WORKERS`` environment variable) -- Add support for async ``run`` methods in the ``Action`` class -- Return status code ``404`` in case requested action was not found + ``ACTION_SERVER_SANIC_WORKERS`` environment variable). +- Add support for async ``run`` methods in the ``Action`` class. +- Return status code ``404`` in case requested action was not found. - Return status code ``400`` in case an empty request body was sent to the ``/webhook`` - endpoint + endpoint. Changed ------- -- Replace ``flask`` server framework with ``sanic`` -- Replace ``flask_cors`` with ``sanic-cors`` -- ``CollectingDispatcher.utter_message`` can now do anything that other - dispatcher methods can do. -- The ``CollectingDispatcher`` methods ``utter_custom_message``, - ``utter_elements``, ``utter_button_message``, ``utter_attachment``, - ``utter_button_template``, ``utter_template``, ``utter_custom_json`` - and ``utter_image_url`` were deprecated in favor of ``utter_message``. +- Replace ``flask`` server framework with ``sanic``. +- Replace ``flask_cors`` with ``sanic-cors``. +- ``CollectingDispatcher.utter_message`` can now do anything that other dispatcher + methods can do. +- The ``CollectingDispatcher`` methods ``utter_custom_message``, ``utter_elements``, + ``utter_button_message``, ``utter_attachment``, ``utter_button_template``, + ``utter_template``, ``utter_custom_json`` and ``utter_image_url`` were deprecated in + favor of ``utter_message``. - Updated format strings to f-strings where appropriate. -Fixed ------ - Removed ------- - Remove ``requests`` dependency diff --git a/rasa_sdk/version.py b/rasa_sdk/version.py index 9eb4fd122..5b6018861 100644 --- a/rasa_sdk/version.py +++ b/rasa_sdk/version.py @@ -1 +1 @@ -__version__ = "1.5.0a1" +__version__ = "1.5.0"