diff --git a/examples/package.json b/examples/package.json index efee4bfadd..fc78aa492b 100644 --- a/examples/package.json +++ b/examples/package.json @@ -110,7 +110,7 @@ "spaces-member-location-react": "yarn workspace spaces-member-location-react dev" }, "dependencies": { - "@ably/chat": "~1.1.0", + "@ably/chat": "~1.3.1", "@ably/chat-react-ui-kit": "~0.3.0", "@ably/spaces": "~0.4.0", "ably": "~2.21.0", diff --git a/examples/yarn.lock b/examples/yarn.lock index 5a877d2f7e..cd01b95f09 100644 --- a/examples/yarn.lock +++ b/examples/yarn.lock @@ -9,10 +9,10 @@ dependencies: clsx "^2.1.1" -"@ably/chat@~1.1.0": - version "1.1.1" - resolved "https://registry.yarnpkg.com/@ably/chat/-/chat-1.1.1.tgz#b0bf5f3affa129186a7718661e80d8540f78d146" - integrity sha512-TmWpGBCp46KfKztC+c+5ofKLZyZ1Iz5uNGhW44ebnSjA2BuVAx+aDXeAQ3qHbh37yusWWAKt6VrvGGSmAJcOKg== +"@ably/chat@~1.3.1": + version "1.3.1" + resolved "https://registry.yarnpkg.com/@ably/chat/-/chat-1.3.1.tgz#b27ea6d8d236e62f98668d31f7424c17a52b986a" + integrity sha512-dbhsIz9g2cDzAWv7TvTpEZlKD+xGh+SedZw74QwhmaNjZA/ieB4401ScN/poWLAaGahkXzB2hP2DzeSl4qkDOA== dependencies: async-mutex "^0.5.0" dequal "^2.0.3" @@ -495,9 +495,9 @@ integrity sha512-W2Psnbh1J8ZJw0xKAd8zdNgF9HRLkdWwwdWqubSVk0pUuQkoHnv7rx4GiF9rT4t5DIZGAsConRE3AxCdJ4m8rg== "@rollup/rollup-darwin-arm64@^4.18": - version "4.52.4" - resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.52.4.tgz#4ee37078bccd725ae3c5f30ef92efc8e1bf886f3" - integrity sha512-QRWSW+bVccAvZF6cbNZBJwAehmvG9NwfWHwMy4GbWi/BQIA/laTIktebT2ipVjNncqE6GLPxOok5hsECgAxGZg== + version "4.60.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.60.0.tgz#bb200269069acf5c1c4d79ad142524f77e8b8236" + integrity sha512-qEF7CsKKzSRc20Ciu2Zw1wRrBz4g56F7r/vRwY430UPp/nt1x21Q/fpJ9N5l47WWvJlkNCPJz3QRVw008fi7yA== "@rollup/rollup-darwin-x64@4.59.0": version "4.59.0" @@ -575,9 +575,9 @@ integrity sha512-3AHmtQq/ppNuUspKAlvA8HtLybkDflkMuLK4DPo77DfthRb71V84/c4MlWJXixZz4uruIH4uaa07IqoAkG64fg== "@rollup/rollup-linux-x64-gnu@^4.18": - version "4.52.4" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.52.4.tgz#aa9d5b307c08f05d3454225bb0a2b4cc87eeb2e1" - integrity sha512-Wi6AXf0k0L7E2gteNsNHUs7UMwCIhsCTs6+tqQ5GPwVRWMaflqGec4Sd8n6+FNFDw9vGcReqk2KzBDhCa1DLYg== + version "4.60.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.60.0.tgz#5e5139e11819fa38a052368da79422cb4afcf466" + integrity sha512-EtylprDtQPdS5rXvAayrNDYoJhIz1/vzN2fEubo3yLE7tfAw+948dO0g4M0vkTVFhKojnF+n6C8bDNe+gDRdTg== "@rollup/rollup-linux-x64-musl@4.59.0": version "4.59.0" diff --git a/src/components/Examples/ExamplesRenderer.tsx b/src/components/Examples/ExamplesRenderer.tsx index 5518d6eb3f..8ccadbc0e3 100644 --- a/src/components/Examples/ExamplesRenderer.tsx +++ b/src/components/Examples/ExamplesRenderer.tsx @@ -48,7 +48,7 @@ const getDependencies = (id: string, products: string[], activeLanguage: Languag 'franken-ui': '^2.0.0', ...(products.includes('auth') ? { cors: '^2.8.5' } : {}), ...(products.includes('chat') - ? { '@ably/chat': '~1.1.0', '@ably/chat-react-ui-kit': '~0.3.0', clsx: '^2.1.1' } + ? { '@ably/chat': '~1.3.1', '@ably/chat-react-ui-kit': '~0.3.0', clsx: '^2.1.1' } : {}), ...(products.includes('spaces') ? { '@ably/spaces': '~0.4.0' } : {}), ...(id === 'spaces-component-locking' ? { 'usehooks-ts': '^3.1.0' } : {}),