Remove ExperimentalTeamsQuotedReplies markers#470
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the Teams Python SDK to reflect that quoted replies are now generally available by removing the @experimental("ExperimentalTeamsQuotedReplies") decorators and the associated diagnostic docstring lines from the quoted-replies surface area.
Changes:
- Removed
@experimental("ExperimentalTeamsQuotedReplies")decorators from quoted-reply APIs and models. - Removed
Diagnostic: ExperimentalTeamsQuotedRepliesdocstring lines associated with the experimental marker. - Cleaned up related imports where the experimental decorator was no longer needed.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 6 comments.
| File | Description |
|---|---|
| packages/apps/src/microsoft_teams/apps/routing/activity_context.py | Removes the experimental decorator from ActivityContext.quote() and drops the unused experimental import. |
| packages/api/src/microsoft_teams/api/activities/message/message.py | Removes the experimental decorator and diagnostic docstring lines from quoted-reply helper APIs on MessageActivity. |
| packages/api/src/microsoft_teams/api/models/entity/quoted_reply_entity.py | Removes experimental decorators/imports and diagnostic docstring lines from quoted-reply entity models. |
heyitsaamir
approved these changes
Jun 16, 2026
corinagum
added a commit
to microsoft/teams-sdk
that referenced
this pull request
Jun 16, 2026
## Summary Documentation updates driven by customer feedback ([Discussion #2881](#2881), [Issue #2871](#2871)). Fixes #2871 ## SSO Documentation (new content) - **SSO with User-Assigned Managed Identity**: New section in `sso-setup.mdx` explaining how IDs map when the bot uses MI and a separate auth app registration - **Cross-Tenant Considerations**: New section covering tenant requirements for SSO to work silently - **`authrequestfailed` troubleshooting**: New section in `troubleshooting-sso.mdx` for cross-tenant SSO failures - **OAuth card fallback and magic code**: Documents when/why the magic code appears and the `signin()` + `app.event('signin')` pattern ## Preview Status Updates - Targeted messages: "coming soon in May 2026" -> "available in public preview" - Slash commands: same update - Quoted replies: removed "Coming Soon" callout (now GA) - Removed C# experimental note for quoted replies (`ExperimentalTeamsQuotedReplies` being removed in companion PRs) ## Companion PRs - microsoft/teams.ts#621 - microsoft/teams.py#470 - microsoft/teams.net#572 --------- Co-authored-by: Copilot <[email protected]>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Quoted replies are now GA. Removes all
@experimental("ExperimentalTeamsQuotedReplies")decorators and diagnostic docstring lines.Changes
packages/apps/src/microsoft_teams/apps/routing/activity_context.pypackages/api/src/microsoft_teams/api/activities/message/message.pypackages/api/src/microsoft_teams/api/models/entity/quoted_reply_entity.pyAll tests pass (625/625). Lint and type checks clean.