From 1e9cc10da4554d843a71b599bd0ed12ba585855e Mon Sep 17 00:00:00 2001 From: tracyboehrer Date: Wed, 3 Nov 2021 11:53:19 -0500 Subject: [PATCH 1/2] OAuthPrompt was constructing InvokeResponse incorrectly in some cases. (#1798) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Axel Suárez --- .../botbuilder/dialogs/prompts/oauth_prompt.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libraries/botbuilder-dialogs/botbuilder/dialogs/prompts/oauth_prompt.py b/libraries/botbuilder-dialogs/botbuilder/dialogs/prompts/oauth_prompt.py index 67a3e8ff5..55fae561f 100644 --- a/libraries/botbuilder-dialogs/botbuilder/dialogs/prompts/oauth_prompt.py +++ b/libraries/botbuilder-dialogs/botbuilder/dialogs/prompts/oauth_prompt.py @@ -429,21 +429,21 @@ async def _recognize_token( await context.send_activity( Activity( type="invokeResponse", - value=InvokeResponse(int(HTTPStatus.OK)), + value=InvokeResponse(status=HTTPStatus.OK), ) ) else: await context.send_activity( Activity( type="invokeResponse", - value=InvokeResponse(int(HTTPStatus.NOT_FOUND)), + value=InvokeResponse(status=HTTPStatus.NOT_FOUND), ) ) except Exception: await context.send_activity( Activity( type="invokeResponse", - value=InvokeResponse(int(HTTPStatus.INTERNAL_SERVER_ERROR)), + value=InvokeResponse(status=HTTPStatus.INTERNAL_SERVER_ERROR), ) ) elif self._is_token_exchange_request_invoke(context): From 60e61b12c97e3313964756b9ee155ca3d07bfc2d Mon Sep 17 00:00:00 2001 From: tracyboehrer Date: Tue, 4 Jan 2022 09:23:15 -0600 Subject: [PATCH 2/2] Bump to 4.14.1 --- .../botbuilder/adapters/slack/about.py | 2 +- libraries/botbuilder-adapters-slack/requirements.txt | 2 +- libraries/botbuilder-adapters-slack/setup.py | 6 +++--- libraries/botbuilder-ai/botbuilder/ai/about.py | 2 +- libraries/botbuilder-ai/requirements.txt | 4 ++-- libraries/botbuilder-ai/setup.py | 4 ++-- .../botbuilder/applicationinsights/about.py | 2 +- libraries/botbuilder-applicationinsights/requirements.txt | 2 +- libraries/botbuilder-applicationinsights/setup.py | 6 +++--- libraries/botbuilder-azure/botbuilder/azure/about.py | 2 +- libraries/botbuilder-azure/setup.py | 4 ++-- libraries/botbuilder-core/botbuilder/core/about.py | 2 +- libraries/botbuilder-core/requirements.txt | 6 +++--- libraries/botbuilder-core/setup.py | 8 ++++---- libraries/botbuilder-dialogs/botbuilder/dialogs/about.py | 2 +- libraries/botbuilder-dialogs/requirements.txt | 6 +++--- libraries/botbuilder-dialogs/setup.py | 6 +++--- .../botbuilder/integration/aiohttp/about.py | 2 +- libraries/botbuilder-integration-aiohttp/requirements.txt | 4 ++-- libraries/botbuilder-integration-aiohttp/setup.py | 8 ++++---- .../integration/applicationinsights/aiohttp/about.py | 2 +- .../setup.py | 8 ++++---- libraries/botbuilder-schema/setup.py | 2 +- libraries/botbuilder-testing/botbuilder/testing/about.py | 2 +- libraries/botbuilder-testing/requirements.txt | 6 +++--- libraries/botbuilder-testing/setup.py | 8 ++++---- .../botframework/connector/about.py | 2 +- libraries/botframework-connector/requirements.txt | 2 +- libraries/botframework-connector/setup.py | 4 ++-- .../botframework/streaming/about.py | 2 +- libraries/botframework-streaming/requirements.txt | 4 ++-- libraries/botframework-streaming/setup.py | 2 +- 32 files changed, 62 insertions(+), 62 deletions(-) diff --git a/libraries/botbuilder-adapters-slack/botbuilder/adapters/slack/about.py b/libraries/botbuilder-adapters-slack/botbuilder/adapters/slack/about.py index de861b694..5b03d8dfb 100644 --- a/libraries/botbuilder-adapters-slack/botbuilder/adapters/slack/about.py +++ b/libraries/botbuilder-adapters-slack/botbuilder/adapters/slack/about.py @@ -5,7 +5,7 @@ __title__ = "botbuilder-adapters-slack" __version__ = ( - os.environ["packageVersion"] if "packageVersion" in os.environ else "4.14.0" + os.environ["packageVersion"] if "packageVersion" in os.environ else "4.14.1" ) __uri__ = "https://www.github.com/Microsoft/botbuilder-python" __author__ = "Microsoft" diff --git a/libraries/botbuilder-adapters-slack/requirements.txt b/libraries/botbuilder-adapters-slack/requirements.txt index ab2b8e8c5..26a7ffdb0 100644 --- a/libraries/botbuilder-adapters-slack/requirements.txt +++ b/libraries/botbuilder-adapters-slack/requirements.txt @@ -1,4 +1,4 @@ aiohttp==3.7.4 pyslack -botbuilder-core==4.14.0 +botbuilder-core==4.14.1 slackclient \ No newline at end of file diff --git a/libraries/botbuilder-adapters-slack/setup.py b/libraries/botbuilder-adapters-slack/setup.py index b334ce772..4364fe720 100644 --- a/libraries/botbuilder-adapters-slack/setup.py +++ b/libraries/botbuilder-adapters-slack/setup.py @@ -5,9 +5,9 @@ from setuptools import setup REQUIRES = [ - "botbuilder-schema==4.14.0", - "botframework-connector==4.14.0", - "botbuilder-core==4.14.0", + "botbuilder-schema==4.14.1", + "botframework-connector==4.14.1", + "botbuilder-core==4.14.1", "pyslack", "slackclient", ] diff --git a/libraries/botbuilder-ai/botbuilder/ai/about.py b/libraries/botbuilder-ai/botbuilder/ai/about.py index 7a0b00daf..c43b4faa9 100644 --- a/libraries/botbuilder-ai/botbuilder/ai/about.py +++ b/libraries/botbuilder-ai/botbuilder/ai/about.py @@ -5,7 +5,7 @@ __title__ = "botbuilder-ai" __version__ = ( - os.environ["packageVersion"] if "packageVersion" in os.environ else "4.14.0" + os.environ["packageVersion"] if "packageVersion" in os.environ else "4.14.1" ) __uri__ = "https://www.github.com/Microsoft/botbuilder-python" __author__ = "Microsoft" diff --git a/libraries/botbuilder-ai/requirements.txt b/libraries/botbuilder-ai/requirements.txt index 824ffc6e6..61afae96e 100644 --- a/libraries/botbuilder-ai/requirements.txt +++ b/libraries/botbuilder-ai/requirements.txt @@ -1,6 +1,6 @@ msrest==0.6.10 -botbuilder-schema==4.14.0 -botbuilder-core==4.14.0 +botbuilder-schema==4.14.1 +botbuilder-core==4.14.1 requests==2.23.0 aiounittest==1.3.0 azure-cognitiveservices-language-luis==0.2.0 \ No newline at end of file diff --git a/libraries/botbuilder-ai/setup.py b/libraries/botbuilder-ai/setup.py index 64bb0297a..baef4a8ea 100644 --- a/libraries/botbuilder-ai/setup.py +++ b/libraries/botbuilder-ai/setup.py @@ -6,8 +6,8 @@ REQUIRES = [ "azure-cognitiveservices-language-luis==0.2.0", - "botbuilder-schema==4.14.0", - "botbuilder-core==4.14.0", + "botbuilder-schema==4.14.1", + "botbuilder-core==4.14.1", "aiohttp>=3.6.2,<3.8.0", ] diff --git a/libraries/botbuilder-applicationinsights/botbuilder/applicationinsights/about.py b/libraries/botbuilder-applicationinsights/botbuilder/applicationinsights/about.py index 727bc4347..0a30ca324 100644 --- a/libraries/botbuilder-applicationinsights/botbuilder/applicationinsights/about.py +++ b/libraries/botbuilder-applicationinsights/botbuilder/applicationinsights/about.py @@ -6,7 +6,7 @@ __title__ = "botbuilder-applicationinsights" __version__ = ( - os.environ["packageVersion"] if "packageVersion" in os.environ else "4.14.0" + os.environ["packageVersion"] if "packageVersion" in os.environ else "4.14.1" ) __uri__ = "https://www.github.com/Microsoft/botbuilder-python" __author__ = "Microsoft" diff --git a/libraries/botbuilder-applicationinsights/requirements.txt b/libraries/botbuilder-applicationinsights/requirements.txt index 8cf713ca2..ea05d4144 100644 --- a/libraries/botbuilder-applicationinsights/requirements.txt +++ b/libraries/botbuilder-applicationinsights/requirements.txt @@ -1,3 +1,3 @@ msrest==0.6.10 -botbuilder-core==4.14.0 +botbuilder-core==4.14.1 aiounittest==1.3.0 \ No newline at end of file diff --git a/libraries/botbuilder-applicationinsights/setup.py b/libraries/botbuilder-applicationinsights/setup.py index 6b5d8ebdd..75da7ca2a 100644 --- a/libraries/botbuilder-applicationinsights/setup.py +++ b/libraries/botbuilder-applicationinsights/setup.py @@ -6,9 +6,9 @@ REQUIRES = [ "applicationinsights==0.11.9", - "botbuilder-schema==4.14.0", - "botframework-connector==4.14.0", - "botbuilder-core==4.14.0", + "botbuilder-schema==4.14.1", + "botframework-connector==4.14.1", + "botbuilder-core==4.14.1", ] TESTS_REQUIRES = [ "aiounittest==1.3.0", diff --git a/libraries/botbuilder-azure/botbuilder/azure/about.py b/libraries/botbuilder-azure/botbuilder/azure/about.py index b84412e7f..3d6d4b1a3 100644 --- a/libraries/botbuilder-azure/botbuilder/azure/about.py +++ b/libraries/botbuilder-azure/botbuilder/azure/about.py @@ -5,7 +5,7 @@ __title__ = "botbuilder-azure" __version__ = ( - os.environ["packageVersion"] if "packageVersion" in os.environ else "4.14.0" + os.environ["packageVersion"] if "packageVersion" in os.environ else "4.14.1" ) __uri__ = "https://www.github.com/Microsoft/botbuilder-python" __author__ = "Microsoft" diff --git a/libraries/botbuilder-azure/setup.py b/libraries/botbuilder-azure/setup.py index 3ba356fab..9b94b65ba 100644 --- a/libraries/botbuilder-azure/setup.py +++ b/libraries/botbuilder-azure/setup.py @@ -8,8 +8,8 @@ "azure-cosmos==3.2.0", "azure-storage-blob==12.7.0", "azure-storage-queue==12.1.5", - "botbuilder-schema==4.14.0", - "botframework-connector==4.14.0", + "botbuilder-schema==4.14.1", + "botframework-connector==4.14.1", "jsonpickle>=1.2,<1.5", ] TEST_REQUIRES = ["aiounittest==1.3.0"] diff --git a/libraries/botbuilder-core/botbuilder/core/about.py b/libraries/botbuilder-core/botbuilder/core/about.py index 9ee11acd1..b23c11c9f 100644 --- a/libraries/botbuilder-core/botbuilder/core/about.py +++ b/libraries/botbuilder-core/botbuilder/core/about.py @@ -5,7 +5,7 @@ __title__ = "botbuilder-core" __version__ = ( - os.environ["packageVersion"] if "packageVersion" in os.environ else "4.14.0" + os.environ["packageVersion"] if "packageVersion" in os.environ else "4.14.1" ) __uri__ = "https://www.github.com/Microsoft/botbuilder-python" __author__ = "Microsoft" diff --git a/libraries/botbuilder-core/requirements.txt b/libraries/botbuilder-core/requirements.txt index 3a7947f70..2776732d7 100644 --- a/libraries/botbuilder-core/requirements.txt +++ b/libraries/botbuilder-core/requirements.txt @@ -1,7 +1,7 @@ msrest==0.6.10 -botframework-connector==4.14.0 -botbuilder-schema==4.14.0 -botframework-streaming==4.14.0 +botframework-connector==4.14.1 +botbuilder-schema==4.14.1 +botframework-streaming==4.14.1 requests==2.23.0 PyJWT==1.5.3 cryptography==3.3.2 diff --git a/libraries/botbuilder-core/setup.py b/libraries/botbuilder-core/setup.py index 18abee638..613eb19d3 100644 --- a/libraries/botbuilder-core/setup.py +++ b/libraries/botbuilder-core/setup.py @@ -4,11 +4,11 @@ import os from setuptools import setup -VERSION = os.environ["packageVersion"] if "packageVersion" in os.environ else "4.14.0" +VERSION = os.environ["packageVersion"] if "packageVersion" in os.environ else "4.14.1" REQUIRES = [ - "botbuilder-schema==4.14.0", - "botframework-connector==4.14.0", - "botframework-streaming==4.14.0", + "botbuilder-schema==4.14.1", + "botframework-connector==4.14.1", + "botframework-streaming==4.14.1", "jsonpickle>=1.2,<1.5", ] diff --git a/libraries/botbuilder-dialogs/botbuilder/dialogs/about.py b/libraries/botbuilder-dialogs/botbuilder/dialogs/about.py index d2a3b3c35..1fa5bd192 100644 --- a/libraries/botbuilder-dialogs/botbuilder/dialogs/about.py +++ b/libraries/botbuilder-dialogs/botbuilder/dialogs/about.py @@ -5,7 +5,7 @@ __title__ = "botbuilder-dialogs" __version__ = ( - os.environ["packageVersion"] if "packageVersion" in os.environ else "4.14.0" + os.environ["packageVersion"] if "packageVersion" in os.environ else "4.14.1" ) __uri__ = "https://www.github.com/Microsoft/botbuilder-python" __author__ = "Microsoft" diff --git a/libraries/botbuilder-dialogs/requirements.txt b/libraries/botbuilder-dialogs/requirements.txt index 4b4aaabc8..bcb516b75 100644 --- a/libraries/botbuilder-dialogs/requirements.txt +++ b/libraries/botbuilder-dialogs/requirements.txt @@ -1,7 +1,7 @@ msrest==0.6.10 -botframework-connector==4.14.0 -botbuilder-schema==4.14.0 -botbuilder-core==4.14.0 +botframework-connector==4.14.1 +botbuilder-schema==4.14.1 +botbuilder-core==4.14.1 requests==2.23.0 PyJWT==1.5.3 cryptography==3.3.2 diff --git a/libraries/botbuilder-dialogs/setup.py b/libraries/botbuilder-dialogs/setup.py index 8890439cd..6f208e718 100644 --- a/libraries/botbuilder-dialogs/setup.py +++ b/libraries/botbuilder-dialogs/setup.py @@ -12,9 +12,9 @@ "recognizers-text>=1.0.2a1", "recognizers-text-choice>=1.0.2a1", "babel==2.7.0", - "botbuilder-schema==4.14.0", - "botframework-connector==4.14.0", - "botbuilder-core==4.14.0", + "botbuilder-schema==4.14.1", + "botframework-connector==4.14.1", + "botbuilder-core==4.14.1", ] TEST_REQUIRES = ["aiounittest==1.3.0"] diff --git a/libraries/botbuilder-integration-aiohttp/botbuilder/integration/aiohttp/about.py b/libraries/botbuilder-integration-aiohttp/botbuilder/integration/aiohttp/about.py index 5a5370a30..01e1ff942 100644 --- a/libraries/botbuilder-integration-aiohttp/botbuilder/integration/aiohttp/about.py +++ b/libraries/botbuilder-integration-aiohttp/botbuilder/integration/aiohttp/about.py @@ -5,7 +5,7 @@ __title__ = "botbuilder-integration-aiohttp" __version__ = ( - os.environ["packageVersion"] if "packageVersion" in os.environ else "4.14.0" + os.environ["packageVersion"] if "packageVersion" in os.environ else "4.14.1" ) __uri__ = "https://www.github.com/Microsoft/botbuilder-python" __author__ = "Microsoft" diff --git a/libraries/botbuilder-integration-aiohttp/requirements.txt b/libraries/botbuilder-integration-aiohttp/requirements.txt index 8898a86aa..68a77ae48 100644 --- a/libraries/botbuilder-integration-aiohttp/requirements.txt +++ b/libraries/botbuilder-integration-aiohttp/requirements.txt @@ -1,4 +1,4 @@ msrest==0.6.10 -botframework-connector==4.14.0 -botbuilder-schema==4.14.0 +botframework-connector==4.14.1 +botbuilder-schema==4.14.1 aiohttp==3.7.4 diff --git a/libraries/botbuilder-integration-aiohttp/setup.py b/libraries/botbuilder-integration-aiohttp/setup.py index 1d6b34204..4a6b74d18 100644 --- a/libraries/botbuilder-integration-aiohttp/setup.py +++ b/libraries/botbuilder-integration-aiohttp/setup.py @@ -4,11 +4,11 @@ import os from setuptools import setup -VERSION = os.environ["packageVersion"] if "packageVersion" in os.environ else "4.14.0" +VERSION = os.environ["packageVersion"] if "packageVersion" in os.environ else "4.14.1" REQUIRES = [ - "botbuilder-schema==4.14.0", - "botframework-connector==4.14.0", - "botbuilder-core==4.14.0", + "botbuilder-schema==4.14.1", + "botframework-connector==4.14.1", + "botbuilder-core==4.14.1", "yarl<=1.4.2", "aiohttp>=3.6.2,<3.8.0", ] diff --git a/libraries/botbuilder-integration-applicationinsights-aiohttp/botbuilder/integration/applicationinsights/aiohttp/about.py b/libraries/botbuilder-integration-applicationinsights-aiohttp/botbuilder/integration/applicationinsights/aiohttp/about.py index e718dad20..a798cb26e 100644 --- a/libraries/botbuilder-integration-applicationinsights-aiohttp/botbuilder/integration/applicationinsights/aiohttp/about.py +++ b/libraries/botbuilder-integration-applicationinsights-aiohttp/botbuilder/integration/applicationinsights/aiohttp/about.py @@ -6,7 +6,7 @@ __title__ = "botbuilder-integration-applicationinsights-aiohttp" __version__ = ( - os.environ["packageVersion"] if "packageVersion" in os.environ else "4.14.0" + os.environ["packageVersion"] if "packageVersion" in os.environ else "4.14.1" ) __uri__ = "https://www.github.com/Microsoft/botbuilder-python" __author__ = "Microsoft" diff --git a/libraries/botbuilder-integration-applicationinsights-aiohttp/setup.py b/libraries/botbuilder-integration-applicationinsights-aiohttp/setup.py index 06a509fd3..33aa0057f 100644 --- a/libraries/botbuilder-integration-applicationinsights-aiohttp/setup.py +++ b/libraries/botbuilder-integration-applicationinsights-aiohttp/setup.py @@ -7,10 +7,10 @@ REQUIRES = [ "applicationinsights>=0.11.9", "aiohttp>=3.6.2,<3.8.0", - "botbuilder-schema==4.14.0", - "botframework-connector==4.14.0", - "botbuilder-core==4.14.0", - "botbuilder-applicationinsights==4.14.0", + "botbuilder-schema==4.14.1", + "botframework-connector==4.14.1", + "botbuilder-core==4.14.1", + "botbuilder-applicationinsights==4.14.1", ] TESTS_REQUIRES = [ "aiounittest==1.3.0", diff --git a/libraries/botbuilder-schema/setup.py b/libraries/botbuilder-schema/setup.py index e52027451..a0b23ba5b 100644 --- a/libraries/botbuilder-schema/setup.py +++ b/libraries/botbuilder-schema/setup.py @@ -5,7 +5,7 @@ from setuptools import setup NAME = "botbuilder-schema" -VERSION = os.environ["packageVersion"] if "packageVersion" in os.environ else "4.14.0" +VERSION = os.environ["packageVersion"] if "packageVersion" in os.environ else "4.14.1" REQUIRES = ["msrest==0.6.10"] root = os.path.abspath(os.path.dirname(__file__)) diff --git a/libraries/botbuilder-testing/botbuilder/testing/about.py b/libraries/botbuilder-testing/botbuilder/testing/about.py index 677893266..0ce53819a 100644 --- a/libraries/botbuilder-testing/botbuilder/testing/about.py +++ b/libraries/botbuilder-testing/botbuilder/testing/about.py @@ -6,7 +6,7 @@ __title__ = "botbuilder-testing" __version__ = ( - os.environ["packageVersion"] if "packageVersion" in os.environ else "4.14.0" + os.environ["packageVersion"] if "packageVersion" in os.environ else "4.14.1" ) __uri__ = "https://www.github.com/Microsoft/botbuilder-python" __author__ = "Microsoft" diff --git a/libraries/botbuilder-testing/requirements.txt b/libraries/botbuilder-testing/requirements.txt index 89ca8a2b9..4096a4945 100644 --- a/libraries/botbuilder-testing/requirements.txt +++ b/libraries/botbuilder-testing/requirements.txt @@ -1,4 +1,4 @@ -botbuilder-schema==4.14.0 -botbuilder-core==4.14.0 -botbuilder-dialogs==4.14.0 +botbuilder-schema==4.14.1 +botbuilder-core==4.14.1 +botbuilder-dialogs==4.14.1 aiounittest==1.4.0 diff --git a/libraries/botbuilder-testing/setup.py b/libraries/botbuilder-testing/setup.py index 6d5d236d5..611ccc9dd 100644 --- a/libraries/botbuilder-testing/setup.py +++ b/libraries/botbuilder-testing/setup.py @@ -5,10 +5,10 @@ from setuptools import setup REQUIRES = [ - "botbuilder-schema==4.14.0", - "botbuilder-core==4.14.0", - "botbuilder-dialogs==4.14.0", - "botbuilder-azure==4.14.0", + "botbuilder-schema==4.14.1", + "botbuilder-core==4.14.1", + "botbuilder-dialogs==4.14.1", + "botbuilder-azure==4.14.1", "pytest~=6.2.3", ] diff --git a/libraries/botframework-connector/botframework/connector/about.py b/libraries/botframework-connector/botframework/connector/about.py index 86722da0f..deaa3b228 100644 --- a/libraries/botframework-connector/botframework/connector/about.py +++ b/libraries/botframework-connector/botframework/connector/about.py @@ -5,7 +5,7 @@ __title__ = "botframework-connector" __version__ = ( - os.environ["packageVersion"] if "packageVersion" in os.environ else "4.14.0" + os.environ["packageVersion"] if "packageVersion" in os.environ else "4.14.1" ) __uri__ = "https://www.github.com/Microsoft/botbuilder-python" __author__ = "Microsoft" diff --git a/libraries/botframework-connector/requirements.txt b/libraries/botframework-connector/requirements.txt index 277baedbf..f2798be14 100644 --- a/libraries/botframework-connector/requirements.txt +++ b/libraries/botframework-connector/requirements.txt @@ -1,5 +1,5 @@ msrest==0.6.10 -botbuilder-schema==4.14.0 +botbuilder-schema==4.14.1 requests==2.23.0 PyJWT==1.5.3 cryptography==3.3.2 diff --git a/libraries/botframework-connector/setup.py b/libraries/botframework-connector/setup.py index 6d6a1790f..d3de57ba3 100644 --- a/libraries/botframework-connector/setup.py +++ b/libraries/botframework-connector/setup.py @@ -5,12 +5,12 @@ from setuptools import setup NAME = "botframework-connector" -VERSION = os.environ["packageVersion"] if "packageVersion" in os.environ else "4.14.0" +VERSION = os.environ["packageVersion"] if "packageVersion" in os.environ else "4.14.1" REQUIRES = [ "msrest==0.6.10", "requests>=2.23.0,<2.26", "PyJWT>=1.5.3,<2.0.0", - "botbuilder-schema==4.14.0", + "botbuilder-schema==4.14.1", "msal==1.6.0", ] diff --git a/libraries/botframework-streaming/botframework/streaming/about.py b/libraries/botframework-streaming/botframework/streaming/about.py index 9048bf6e5..c8f75a988 100644 --- a/libraries/botframework-streaming/botframework/streaming/about.py +++ b/libraries/botframework-streaming/botframework/streaming/about.py @@ -5,7 +5,7 @@ __title__ = "botframework-streaming" __version__ = ( - os.environ["packageVersion"] if "packageVersion" in os.environ else "4.14.0" + os.environ["packageVersion"] if "packageVersion" in os.environ else "4.14.1" ) __uri__ = "https://www.github.com/Microsoft/botbuilder-python" __author__ = "Microsoft" diff --git a/libraries/botframework-streaming/requirements.txt b/libraries/botframework-streaming/requirements.txt index 7f973ed8c..38e7309c1 100644 --- a/libraries/botframework-streaming/requirements.txt +++ b/libraries/botframework-streaming/requirements.txt @@ -1,3 +1,3 @@ msrest==0.6.10 -botframework-connector>=4.14.0 -botbuilder-schema>=4.14.0 \ No newline at end of file +botframework-connector>=4.14.1 +botbuilder-schema>=4.14.1 \ No newline at end of file diff --git a/libraries/botframework-streaming/setup.py b/libraries/botframework-streaming/setup.py index 0384dfd48..b6aa67cf5 100644 --- a/libraries/botframework-streaming/setup.py +++ b/libraries/botframework-streaming/setup.py @@ -4,7 +4,7 @@ import os from setuptools import setup -VERSION = os.environ["packageVersion"] if "packageVersion" in os.environ else "4.14.0" +VERSION = os.environ["packageVersion"] if "packageVersion" in os.environ else "4.14.1" REQUIRES = [ "botbuilder-schema>=4.12.0", "botframework-connector>=4.12.0",