You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sdk/communication/azure-communication-common/CHANGELOG.md
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,14 @@
1
1
# Release History
2
2
3
-
## 1.3.0-beta.2 (Unreleased)
3
+
## 2.0.0-beta.1 (Unreleased)
4
4
5
-
### Bug Fixes
5
+
### Features Added
6
+
- Added support for a new communication identifier `MicrosoftBotIdentifier`.
6
7
7
-
### Other Changes
8
+
### Breaking Changes
9
+
- Introduction of `MicrosoftBotIdentifier` is a breaking change. It will affect code that relied on using `UnknownIdentifier` with a rawID starting with `28:`
Copy file name to clipboardExpand all lines: sdk/communication/azure-communication-common/src/main/java/com/azure/communication/common/CommunicationIdentifier.java
* @param botId botId The unique Microsoft app ID for the bot as registered with the Bot Framework.
22
+
* @param cloudEnvironment the cloud environment in which this identifier is created.
23
+
* @param isResourceAccountConfigured set this to true if the bot is tenantized. It is false if the bot is global and no resource account is configured.
24
+
* @throws IllegalArgumentException thrown if botId parameter fail the validation.
* @param isResourceAccountConfigured set this to true if the bot is tenantized. It is false if the bot is global and no resource account is configured.
51
+
* @throws IllegalArgumentException thrown if botId parameter fail the validation.
Copy file name to clipboardExpand all lines: sdk/communication/azure-communication-common/src/test/java/com/azure/communication/common/CommunicationIdentifierTests.java
+45-2Lines changed: 45 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,23 @@ public void defaultCloudIsPublicForMicrosoftTeamsUserIdentifier() {
0 commit comments