Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"type": "patch",
"area": "improvement",
"workstream": "Chat",
"comment": "Chat SDK version update",
"packageName": "@azure/communication-react",
"email": "98852890+vhuseinova-msft@users.noreply.github.com",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"type": "patch",
"area": "improvement",
"workstream": "Chat",
"comment": "Chat SDK version update",
"packageName": "@azure/communication-react",
"email": "98852890+vhuseinova-msft@users.noreply.github.com",
"dependentChangeType": "patch"
}
2 changes: 0 additions & 2 deletions common/config/babel/features.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,6 @@ module.exports = {
"mention",
// Feature to show the total number of participants in a call (currently in beta in calling SDK, hence this must be conditionally compiled)
"total-participant-count",
// conditional-compile for new signaling beta
"signaling-beta",
// Image overlay theme
'image-overlay-theme',
// Feature for local recording notification for teams meetings
Expand Down
8 changes: 4 additions & 4 deletions common/config/rush/variants/stable/common-versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
// This is the version for stable build (please also update allowedAlternativeVersions below)
"@azure/communication-calling": "^1.37.1",
"@azure/communication-common": "2.4.0",
"@azure/communication-chat": "^1.5.4",
"@azure/communication-signaling": "1.0.0-beta.29",
"@azure/communication-chat": "^1.6.0",
"@azure/communication-signaling": "1.0.0-beta.34",
"@azure/communication-calling-effects": "^1.1.4"
},

Expand Down Expand Up @@ -60,8 +60,8 @@
// This is the version for stable build (please also update preferredVersions above)
"@azure/communication-calling": ["^1.37.1"],
"@azure/communication-common": ["2.4.0"],
"@azure/communication-chat": ["^1.5.4"],
"@azure/communication-signaling": ["1.0.0-beta.29"],
"@azure/communication-chat": ["^1.6.0"],
"@azure/communication-signaling": ["1.0.0-beta.34"],
"@azure/communication-calling-effects": ["^1.1.4"],
"typescript": [
// All projects should use this version by default
Expand Down
73 changes: 36 additions & 37 deletions common/config/rush/variants/stable/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion common/scripts/invalidate-build.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const fs = require('fs');
// Build file to be removed
const cachePath = './common/config/.rush';
fs.rmdirSync(cachePath, { recursive: true });
fs.rmSync(cachePath, { recursive: true });
2 changes: 1 addition & 1 deletion packages/chat-component-bindings/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"memoize-one": "^5.2.1"
},
"peerDependencies": {
"@azure/communication-chat": "1.6.0-beta.7 || >=1.5.4",
"@azure/communication-chat": "1.6.0-beta.7 || >=1.6.0",
"@types/react": ">=16.8.0 <19.0.0",
"react": ">=16.8.0 <19.0.0"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/chat-stateful-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@
"nanoid": "3.3.8"
},
"peerDependencies": {
"@azure/communication-chat": "1.6.0-beta.7 || >=1.5.4"
"@azure/communication-chat": "1.6.0-beta.7 || >=1.6.0"
},
"devDependencies": {
"@azure/communication-signaling": "1.0.0-beta.33 || 1.0.0-beta.29",
"@azure/communication-signaling": "1.0.0-beta.33 || 1.0.0-beta.34",
"@babel/cli": "^7.27.2",
"@babel/core": "^7.27.4",
"@types/jest": "^29.5.14",
Expand Down
2 changes: 1 addition & 1 deletion packages/chat-stateful-client/src/ChatClientState.ts
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ export type ChatErrorTarget =
| 'ChatThreadClient.sendReadReceipt'
| 'ChatThreadClient.sendTypingNotification'
| 'ChatThreadClient.updateMessage'
| /* @conditional-compile-remove(chat-beta-sdk) */ 'ChatThreadClient.updateProperties'
| 'ChatThreadClient.updateProperties'
| 'ChatThreadClient.updateTopic'
| /* @conditional-compile-remove(chat-beta-sdk) */ 'ChatThreadClient.uploadImage'
| /* @conditional-compile-remove(chat-beta-sdk) */ 'ChatThreadClient.deleteImage';
Loading
Loading