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
* Fix issue in APIView feedback
* Remove credential policy
* Make ChatError & AddChatParticipantsResult Immutable, add retryPolicy for builder
* Update addEventHandler to return listener id
* Add @throw annotations, make communicationTokenCredential mandatory in builder, put authorizationPolicy after retryPolicy in builder
* Fix unit test with mock android.util.Base64
* Add copyright
* fix comment & README.md
* Update mock class license
* Update signaling client initialization process
* Update ChatEvent getThreadId to getChatThreadId
* Update addEventHandler behavior
* Update release date
Copy file name to clipboardExpand all lines: sdk/communication/azure-communication-chat/CHANGELOG.md
+78-61Lines changed: 78 additions & 61 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,80 +1,97 @@
1
1
# Release History
2
-
## 1.0.0 (2021-06-09)
2
+
## 1.0.0 (2021-06-15)
3
3
### New Features
4
4
- Added `ChatServiceVersion` and the ability to set it on `ChatClientBuilder` and `ChatThreadClientBuilder`.
5
5
6
6
### Breaking Changes
7
+
- ChatClientBuilder:
8
+
- Added `retryPolicy`.
9
+
- Removed `credentialPolicy`.
10
+
- Removed `realtimeNotificationParams`.
11
+
- ChatThreadClientBuilder:
12
+
- Added `retryPolicy`.
13
+
- Removed `credentialPolicy`.
14
+
- Removed `realtimeNotificationParams`.
7
15
- ChatClient:
8
-
- Added `listChatThreads`
9
-
- Removed `getChatThreadsFirstPage`
10
-
- Removed `getChatThreadsFirstPageWithResponse`
11
-
- Removed `getChatThreadsNextPage`
12
-
- Removed `getChatThreadsNextPageWithResponse`
13
-
- Replaced `azure.core.util.Context` in the APIs with `azure.core.util.RequestContext`
16
+
- Added `listChatThreads`.
17
+
- Changed `startRealtimeNotifications` with adding parameter `String skypeUserToken` and `Context context`.
18
+
- Removed `getChatThreadsFirstPage`.
19
+
- Removed `getChatThreadsFirstPageWithResponse`.
20
+
- Removed `getChatThreadsNextPage`.
21
+
- Removed `getChatThreadsNextPageWithResponse`.
22
+
- Replaced `azure.core.util.Context` in the APIs with `azure.core.util.RequestContext`.
23
+
- Replaced `on` with `addEventHandler`.
24
+
- Replaced `off` with `removeEventHandler`.
14
25
- ChatAsyncClient:
15
-
- Added `listChatThreads`
16
-
- Removed `getChatThreadsFirstPage`
17
-
- Removed `getChatThreadsFirstPageWithResponse`
18
-
- Removed `getChatThreadsNextPage`
19
-
- Removed `getChatThreadsNextPageWithResponse`
20
-
- Replaced `azure.core.util.Context` in the APIs with `azure.core.util.RequestContext`
26
+
- Added `listChatThreads`.
27
+
- Changed `startRealtimeNotifications` with adding parameter `String skypeUserToken` and `Context context`.
28
+
- Removed `getChatThreadsFirstPage`.
29
+
- Removed `getChatThreadsFirstPageWithResponse`.
30
+
- Removed `getChatThreadsNextPage`.
31
+
- Removed `getChatThreadsNextPageWithResponse`.
32
+
- Replaced `azure.core.util.Context` in the APIs with `azure.core.util.RequestContext`.
33
+
- Replaced `on` with `addEventHandler`.
34
+
- Replaced `off` with `removeEventHandler`.
21
35
- ChatThreadClient:
22
-
- Added `listParticipants`
23
-
- Added `listMessages`
24
-
- Added `listReadReceipts`
25
-
- Changed returning `AddChatParticipantsResult` instead of `void` for `addParticipants`
26
-
- Changed taking parameter `Iterable<ChatParticipant> participants` instead of `AddChatParticipantsOptions options` for `addParticipants` and `addParticipantsWithResponse`
27
-
- Removed `getParticipantsFirstPage`
28
-
- Removed `getParticipantsFirstPageWithResponse`
29
-
- Removed `getParticipantsNextPage`
30
-
- Removed `getParticipantsNextPageWithResponse`
31
-
- Removed `getMessagesFirstPage`
32
-
- Removed `getMessagesFirstPageWithResponse`
33
-
- Removed `getMessagesNextPage`
34
-
- Removed `getMessagesNextPageWithResponse`
35
-
- Removed `getReadReceiptsFirstPage`
36
-
- Removed `getReadReceiptsFirstPageWithResponse`
37
-
- Removed `getReadReceiptsNextPage`
38
-
- Removed `getReadReceiptsNextPageWithResponse`
39
-
- Replaced `azure.core.util.Context` in the APIs with `azure.core.util.RequestContext`
36
+
- Added `listParticipants`.
37
+
- Added `listMessages`.
38
+
- Added `listReadReceipts`.
39
+
- Changed returning `AddChatParticipantsResult` instead of `void` for `addParticipants`.
40
+
- Changed taking parameter `Iterable<ChatParticipant> participants` instead of `AddChatParticipantsOptions options` for `addParticipants` and `addParticipantsWithResponse`.
41
+
- Removed `getParticipantsFirstPage`.
42
+
- Removed `getParticipantsFirstPageWithResponse`.
43
+
- Removed `getParticipantsNextPage`.
44
+
- Removed `getParticipantsNextPageWithResponse`.
45
+
- Removed `getMessagesFirstPage`.
46
+
- Removed `getMessagesFirstPageWithResponse`.
47
+
- Removed `getMessagesNextPage`.
48
+
- Removed `getMessagesNextPageWithResponse`.
49
+
- Removed `getReadReceiptsFirstPage`.
50
+
- Removed `getReadReceiptsFirstPageWithResponse`.
51
+
- Removed `getReadReceiptsNextPage`.
52
+
- Removed `getReadReceiptsNextPageWithResponse`.
53
+
- Replaced `azure.core.util.Context` in the APIs with `azure.core.util.RequestContext`.
40
54
- ChatThreadAsyncClient:
41
-
- Added `listParticipants`
42
-
- Added `listMessages`
43
-
- Added `listReadReceipts`
44
-
- Changed returning `CompletableFuture<AddChatParticipantsResult>` instead of `CompletableFuture<Void>` for `addParticipants`
45
-
- Changed taking parameter `Iterable<ChatParticipant> participants` instead of `AddChatParticipantsOptions options` for `addParticipants` and `addParticipantsWithResponse`
46
-
- Removed `getParticipantsFirstPage`
47
-
- Removed `getParticipantsFirstPageWithResponse`
48
-
- Removed `getParticipantsNextPage`
49
-
- Removed `getParticipantsNextPageWithResponse`
50
-
- Removed `getMessagesFirstPage`
51
-
- Removed `getMessagesFirstPageWithResponse`
52
-
- Removed `getMessagesNextPage`
53
-
- Removed `getMessagesNextPageWithResponse`
54
-
- Removed `getReadReceiptsFirstPage`
55
-
- Removed `getReadReceiptsFirstPageWithResponse`
56
-
- Removed `getReadReceiptsNextPage`
57
-
- Removed `getReadReceiptsNextPageWithResponse`
58
-
- Replaced `azure.core.util.Context` in the APIs with `azure.core.util.RequestContext`
55
+
- Added `listParticipants`.
56
+
- Added `listMessages`.
57
+
- Added `listReadReceipts`.
58
+
- Changed returning `CompletableFuture<AddChatParticipantsResult>` instead of `CompletableFuture<Void>` for `addParticipants`.
59
+
- Changed taking parameter `Iterable<ChatParticipant> participants` instead of `AddChatParticipantsOptions options` for `addParticipants` and `addParticipantsWithResponse`.
60
+
- Removed `getParticipantsFirstPage`.
61
+
- Removed `getParticipantsFirstPageWithResponse`.
62
+
- Removed `getParticipantsNextPage`.
63
+
- Removed `getParticipantsNextPageWithResponse`.
64
+
- Removed `getMessagesFirstPage`.
65
+
- Removed `getMessagesFirstPageWithResponse`.
66
+
- Removed `getMessagesNextPage`.
67
+
- Removed `getMessagesNextPageWithResponse`.
68
+
- Removed `getReadReceiptsFirstPage`.
69
+
- Removed `getReadReceiptsFirstPageWithResponse`.
70
+
- Removed `getReadReceiptsNextPage`.
71
+
- Removed `getReadReceiptsNextPageWithResponse`.
72
+
- Replaced `azure.core.util.Context` in the APIs with `azure.core.util.RequestContext`.
0 commit comments