From e9e9e8af691ad7d6ea00965895d6a6515999daa7 Mon Sep 17 00:00:00 2001 From: Rodrigo Brandao Date: Mon, 3 Aug 2026 13:12:35 -0700 Subject: [PATCH 1/3] Obsolete warning for hosting-teams --- .../microsoft_agents/hosting/teams/__init__.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/libraries/microsoft-agents-hosting-teams/microsoft_agents/hosting/teams/__init__.py b/libraries/microsoft-agents-hosting-teams/microsoft_agents/hosting/teams/__init__.py index 2723ff54..4f5f2443 100644 --- a/libraries/microsoft-agents-hosting-teams/microsoft_agents/hosting/teams/__init__.py +++ b/libraries/microsoft-agents-hosting-teams/microsoft_agents/hosting/teams/__init__.py @@ -1,3 +1,16 @@ +""" +Copyright (c) Microsoft Corporation. All rights reserved. +Licensed under the MIT License. +""" + +import logging + +logging.warning( + "The `microsoft-agents-hosting-teams` package is obsolete. " + "Please start using the `microsoft_agents.hosting.msteams` package " + "for better support and future updates. " +) + from .teams_activity_handler import TeamsActivityHandler from .teams_agent_extension import ( TeamsAgentExtension, From d8b653c2f69cf6d0595f49d976ca9954a062cceb Mon Sep 17 00:00:00 2001 From: Rodrigo Brandao Date: Mon, 3 Aug 2026 13:12:49 -0700 Subject: [PATCH 2/3] Update --- .../microsoft_agents/hosting/teams/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/microsoft-agents-hosting-teams/microsoft_agents/hosting/teams/__init__.py b/libraries/microsoft-agents-hosting-teams/microsoft_agents/hosting/teams/__init__.py index 4f5f2443..2d42dd0a 100644 --- a/libraries/microsoft-agents-hosting-teams/microsoft_agents/hosting/teams/__init__.py +++ b/libraries/microsoft-agents-hosting-teams/microsoft_agents/hosting/teams/__init__.py @@ -7,7 +7,7 @@ logging.warning( "The `microsoft-agents-hosting-teams` package is obsolete. " - "Please start using the `microsoft_agents.hosting.msteams` package " + "Please start using the `microsoft-agents-hosting-msteams` package " "for better support and future updates. " ) From bf306cfe3511ff7563b9eb77ce7e4bea219b8a43 Mon Sep 17 00:00:00 2001 From: Rodrigo Brandao Date: Mon, 3 Aug 2026 13:14:05 -0700 Subject: [PATCH 3/3] Update --- .../microsoft_agents/hosting/teams/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/microsoft-agents-hosting-teams/microsoft_agents/hosting/teams/__init__.py b/libraries/microsoft-agents-hosting-teams/microsoft_agents/hosting/teams/__init__.py index 2d42dd0a..23be5226 100644 --- a/libraries/microsoft-agents-hosting-teams/microsoft_agents/hosting/teams/__init__.py +++ b/libraries/microsoft-agents-hosting-teams/microsoft_agents/hosting/teams/__init__.py @@ -6,7 +6,7 @@ import logging logging.warning( - "The `microsoft-agents-hosting-teams` package is obsolete. " + "The `microsoft-agents-hosting-teams` package is deprecated. " "Please start using the `microsoft-agents-hosting-msteams` package " "for better support and future updates. " )