Skip to content

Commit 2419443

Browse files
authored
Bump versions for hotfix (#5903)
* bump versions * Cherry pick hot fix into release branch (#5904) * rtt * lint fix * change files
1 parent a7ddf2c commit 2419443

28 files changed

Lines changed: 173 additions & 80 deletions

File tree

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"type": "patch",
3+
"area": "feature",
4+
"workstream": "RTT and Captions",
5+
"comment": "Auto announce completed RTT and caption messages ",
6+
"packageName": "@azure/communication-react",
7+
"email": "96077406+carocao-msft@users.noreply.github.com",
8+
"dependentChangeType": "patch"
9+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"type": "prerelease",
3+
"area": "fix",
4+
"workstream": "Hotfix",
5+
"comment": "bump versions for hotfix",
6+
"packageName": "@azure/communication-react",
7+
"email": "96077406+carocao-msft@users.noreply.github.com",
8+
"dependentChangeType": "patch"
9+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"type": "patch",
3+
"area": "feature",
4+
"workstream": "RTT and Captions",
5+
"comment": "Auto announce completed RTT and caption messages ",
6+
"packageName": "@azure/communication-react",
7+
"email": "96077406+carocao-msft@users.noreply.github.com",
8+
"dependentChangeType": "patch"
9+
}

packages/acs-ui-common/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@internal/acs-ui-common",
3-
"version": "1.28.0-beta.1",
3+
"version": "1.28.0-beta.2",
44
"description": "Common types and utilities for all Azure Communication Serves UI libraries",
55
"module": "dist/dist-esm/index.js",
66
"main": "dist/dist-cjs/index.js",

packages/acs-ui-common/src/telemetryVersion.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44
// GENERATED FILE. DO NOT EDIT MANUALLY.
55

6-
module.exports = '1.28.0-beta.1';
6+
module.exports = '1.28.0-beta.2';

packages/acs-ui-javascript-loaders/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@internal/acs-ui-javascript-loaders",
3-
"version": "1.28.0-beta.1",
3+
"version": "1.28.0-beta.2",
44
"description": "Component bindings specific to components that integrate with the Azure Communication Services Calling JavaScript SDK",
55
"module": "dist/dist-esm/index.js",
66
"main": "dist/dist-cjs/index.js",
@@ -32,8 +32,8 @@
3232
"license": "ISC",
3333
"dependencies": {
3434
"@azure/communication-common": "^2.3.2-beta.1",
35-
"@internal/acs-ui-common": "1.28.0-beta.1",
36-
"@internal/react-composites": "1.28.0-beta.1",
35+
"@internal/acs-ui-common": "1.28.0-beta.2",
36+
"@internal/react-composites": "1.28.0-beta.2",
3737
"@fluentui/react": "^8.122.17",
3838
"@azure/logger": "^1.0.4"
3939
},

packages/calling-component-bindings/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@internal/calling-component-bindings",
3-
"version": "1.28.0-beta.1",
3+
"version": "1.28.0-beta.2",
44
"description": "Component bindings specific to components that integrate with the Azure Communication Services Calling JavaScript SDK",
55
"module": "dist/dist-esm/index.js",
66
"main": "dist/dist-cjs/index.js",
@@ -31,9 +31,9 @@
3131
},
3232
"license": "MIT",
3333
"dependencies": {
34-
"@internal/acs-ui-common": "1.28.0-beta.1",
35-
"@internal/calling-stateful-client": "1.28.0-beta.1",
36-
"@internal/react-components": "1.28.0-beta.1",
34+
"@internal/acs-ui-common": "1.28.0-beta.2",
35+
"@internal/calling-stateful-client": "1.28.0-beta.2",
36+
"@internal/react-components": "1.28.0-beta.2",
3737
"@azure/communication-common": "^2.3.2-beta.1",
3838
"memoize-one": "^5.2.1",
3939
"reselect": "^4.0.0"

packages/calling-component-bindings/src/captionsSelector.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,8 @@ export const captionsBannerSelector: CaptionsBannerSelector = reselect.createSel
158158
displayName: finalDisplayName ?? 'Unnamed Participant',
159159
captionText: c.captionText,
160160
userId,
161-
createdTimeStamp: c.timestamp
161+
createdTimeStamp: c.timestamp,
162+
isFinalized: c.resultType === 'Final'
162163
};
163164
});
164165

@@ -220,17 +221,14 @@ export const captionsBannerSelector: CaptionsBannerSelector = reselect.createSel
220221

221222
return {
222223
captions: captionsInfo ?? [],
223-
224224
realTimeTexts: {
225225
completedMessages: completedRealTimeTexts as RealTimeTextInformation[],
226226
currentInProgress: inProgressRealTimeTexts as RealTimeTextInformation[],
227227
myInProgress: myInProgress as RealTimeTextInformation
228228
},
229229
isCaptionsOn: isCaptionsFeatureActive ?? false,
230230
startCaptionsInProgress: startCaptionsInProgress ?? false,
231-
232231
isRealTimeTextOn: isRealTimeTextActive ?? false,
233-
234232
latestLocalRealTimeText: (myInProgress ?? latestLocalRealTimeText) as RealTimeTextInformation
235233
};
236234
}

packages/calling-stateful-client/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@internal/calling-stateful-client",
3-
"version": "1.28.0-beta.1",
3+
"version": "1.28.0-beta.2",
44
"description": "Stateful proxy over the Azure Communication Services Calling JavaScript SDK",
55
"module": "dist/dist-esm/index.js",
66
"main": "dist/dist-cjs/index.js",
@@ -32,7 +32,7 @@
3232
"dependencies": {
3333
"@azure/communication-common": "^2.3.2-beta.1",
3434
"@azure/logger": "^1.0.4",
35-
"@internal/acs-ui-common": "1.28.0-beta.1",
35+
"@internal/acs-ui-common": "1.28.0-beta.2",
3636
"@types/events": "^3.0.3",
3737
"events": "^3.3.0",
3838
"immer": "10.1.1"

packages/chat-component-bindings/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@internal/chat-component-bindings",
3-
"version": "1.28.0-beta.1",
3+
"version": "1.28.0-beta.2",
44
"description": "Component bindings specific to components that integrate with the Azure Communication Services Chat JavaScript SDK",
55
"module": "dist/dist-esm/index.js",
66
"main": "dist/dist-cjs/index.js",
@@ -32,9 +32,9 @@
3232
"dependencies": {
3333
"@azure/communication-common": "^2.3.2-beta.1",
3434
"@azure/core-paging": "^1.5.0",
35-
"@internal/acs-ui-common": "1.28.0-beta.1",
36-
"@internal/chat-stateful-client": "1.28.0-beta.1",
37-
"@internal/react-components": "1.28.0-beta.1",
35+
"@internal/acs-ui-common": "1.28.0-beta.2",
36+
"@internal/chat-stateful-client": "1.28.0-beta.2",
37+
"@internal/react-components": "1.28.0-beta.2",
3838
"reselect": "^4.0.0",
3939
"memoize-one": "^5.2.1"
4040
},

0 commit comments

Comments
 (0)