Skip to content

Commit 7ab9fe4

Browse files
authored
Merge pull request #3301 from ably/chore/update-chat-sdk-1.3.1
chore: update @ably/chat to v1.3.1
2 parents 58b7280 + 68e5c67 commit 7ab9fe4

3 files changed

Lines changed: 12 additions & 12 deletions

File tree

examples/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110
"spaces-member-location-react": "yarn workspace spaces-member-location-react dev"
111111
},
112112
"dependencies": {
113-
"@ably/chat": "~1.1.0",
113+
"@ably/chat": "~1.3.1",
114114
"@ably/chat-react-ui-kit": "~0.3.0",
115115
"@ably/spaces": "~0.4.0",
116116
"ably": "~2.21.0",

examples/yarn.lock

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
dependencies:
1010
clsx "^2.1.1"
1111

12-
"@ably/chat@~1.1.0":
13-
version "1.1.1"
14-
resolved "https://registry.yarnpkg.com/@ably/chat/-/chat-1.1.1.tgz#b0bf5f3affa129186a7718661e80d8540f78d146"
15-
integrity sha512-TmWpGBCp46KfKztC+c+5ofKLZyZ1Iz5uNGhW44ebnSjA2BuVAx+aDXeAQ3qHbh37yusWWAKt6VrvGGSmAJcOKg==
12+
"@ably/chat@~1.3.1":
13+
version "1.3.1"
14+
resolved "https://registry.yarnpkg.com/@ably/chat/-/chat-1.3.1.tgz#b27ea6d8d236e62f98668d31f7424c17a52b986a"
15+
integrity sha512-dbhsIz9g2cDzAWv7TvTpEZlKD+xGh+SedZw74QwhmaNjZA/ieB4401ScN/poWLAaGahkXzB2hP2DzeSl4qkDOA==
1616
dependencies:
1717
async-mutex "^0.5.0"
1818
dequal "^2.0.3"
@@ -495,9 +495,9 @@
495495
integrity sha512-W2Psnbh1J8ZJw0xKAd8zdNgF9HRLkdWwwdWqubSVk0pUuQkoHnv7rx4GiF9rT4t5DIZGAsConRE3AxCdJ4m8rg==
496496

497497
"@rollup/rollup-darwin-arm64@^4.18":
498-
version "4.52.4"
499-
resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.52.4.tgz#4ee37078bccd725ae3c5f30ef92efc8e1bf886f3"
500-
integrity sha512-QRWSW+bVccAvZF6cbNZBJwAehmvG9NwfWHwMy4GbWi/BQIA/laTIktebT2ipVjNncqE6GLPxOok5hsECgAxGZg==
498+
version "4.60.0"
499+
resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.60.0.tgz#bb200269069acf5c1c4d79ad142524f77e8b8236"
500+
integrity sha512-qEF7CsKKzSRc20Ciu2Zw1wRrBz4g56F7r/vRwY430UPp/nt1x21Q/fpJ9N5l47WWvJlkNCPJz3QRVw008fi7yA==
501501

502502
"@rollup/rollup-darwin-x64@4.59.0":
503503
version "4.59.0"
@@ -575,9 +575,9 @@
575575
integrity sha512-3AHmtQq/ppNuUspKAlvA8HtLybkDflkMuLK4DPo77DfthRb71V84/c4MlWJXixZz4uruIH4uaa07IqoAkG64fg==
576576

577577
"@rollup/rollup-linux-x64-gnu@^4.18":
578-
version "4.52.4"
579-
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.52.4.tgz#aa9d5b307c08f05d3454225bb0a2b4cc87eeb2e1"
580-
integrity sha512-Wi6AXf0k0L7E2gteNsNHUs7UMwCIhsCTs6+tqQ5GPwVRWMaflqGec4Sd8n6+FNFDw9vGcReqk2KzBDhCa1DLYg==
578+
version "4.60.0"
579+
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.60.0.tgz#5e5139e11819fa38a052368da79422cb4afcf466"
580+
integrity sha512-EtylprDtQPdS5rXvAayrNDYoJhIz1/vzN2fEubo3yLE7tfAw+948dO0g4M0vkTVFhKojnF+n6C8bDNe+gDRdTg==
581581

582582
"@rollup/rollup-linux-x64-musl@4.59.0":
583583
version "4.59.0"

src/components/Examples/ExamplesRenderer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const getDependencies = (id: string, products: string[], activeLanguage: Languag
4848
'franken-ui': '^2.0.0',
4949
...(products.includes('auth') ? { cors: '^2.8.5' } : {}),
5050
...(products.includes('chat')
51-
? { '@ably/chat': '~1.1.0', '@ably/chat-react-ui-kit': '~0.3.0', clsx: '^2.1.1' }
51+
? { '@ably/chat': '~1.3.1', '@ably/chat-react-ui-kit': '~0.3.0', clsx: '^2.1.1' }
5252
: {}),
5353
...(products.includes('spaces') ? { '@ably/spaces': '~0.4.0' } : {}),
5454
...(id === 'spaces-component-locking' ? { 'usehooks-ts': '^3.1.0' } : {}),

0 commit comments

Comments
 (0)