Skip to content
This repository was archived by the owner on Jun 8, 2026. It is now read-only.

Commit 3217529

Browse files
Fix incompatibility between String and CommunicationUserIdentifier when serialization [1.0.0-beta.6] (#605)
* Fix incompatibility between String and CommunicationUserIdentifier when serialization * version number update on root folder * Remove the test app * Fix link in README.md Add one example to README.md * Update CHANGELOG.md Co-authored-by: Marc Ma <marcma@microsoft.com>
1 parent 5bf8ff1 commit 3217529

8 files changed

Lines changed: 64 additions & 586 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The following libraries are currently in **beta**:
2626

2727
#### Azure Communication Services
2828
- [azure-communication-calling](https://search.maven.org/artifact/com.azure.android/azure-communication-calling): 1.0.0-beta.2
29-
- [azure-communication-chat](https://github.com/Azure/azure-sdk-for-android/blob/master/sdk/communication/azure-communication-chat): 1.0.0-beta.5
29+
- [azure-communication-chat](https://github.com/Azure/azure-sdk-for-android/blob/master/sdk/communication/azure-communication-chat): 1.0.0-beta.6
3030
- [azure-communication-common](https://github.com/Azure/azure-sdk-for-android/blob/master/sdk/communication/azure-communication-common): 1.0.0-beta.5
3131

3232
> Note: The SDK is currently in **beta**. The API surface and feature sets are subject to change at any time before they become generally available. We do not currently recommend them for production use.
@@ -45,13 +45,13 @@ For each library you wish to use, add an `implementation` configuration to the `
4545
// build.gradle
4646
dependencies {
4747
...
48-
implementation "com.azure.android:azure-communication-chat:1.0.0-beta.5"
48+
implementation "com.azure.android:azure-communication-chat:1.0.0-beta.6"
4949
}
5050
5151
// build.gradle.kts
5252
dependencies {
5353
...
54-
implementation("com.azure.android:azure-communication-chat:1.0.0-beta.5")
54+
implementation("com.azure.android:azure-communication-chat:1.0.0-beta.6")
5555
}
5656
```
5757

@@ -62,7 +62,7 @@ To import one or more client libraries into your project using the [Maven](https
6262
<dependency>
6363
<groupId>com.azure.android</groupId>
6464
<artifactId>azure-communication-chat</artifactId>
65-
<version>1.0.0-beta.5</version>
65+
<version>1.0.0-beta.6</version>
6666
</dependency>
6767
```
6868

sdk/communication/azure-communication-chat/CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Release History
22

3-
## 1.0.0-beta.6 (Unreleased)
3+
## 1.0.0-beta.6 (2021-02-26)
4+
### Breaking Changes
5+
- Change ChatParticipant id type from CommunicationUserIdentifier to String
6+
- Change ChatThread createdBy type from CommunicationUserIdentifier to String
7+
- Change ChatMessage senderId type from CommunicationUserIdentifier to String
8+
- Change ChatMessageContent initiator type from CommunicationUserIdentifier to String
9+
- Change ChangeMessageReadReceipt senderId type from CommunicationUserIdentifier to String
410

511
## 1.0.0-beta.5 (2021-02-08)
612
### Added

0 commit comments

Comments
 (0)