From 582d3774a40a1948bfb85854627d75a4e913f6bd Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Tue, 17 Sep 2024 19:41:07 +0200 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F(frontend)=20fix=20persistent?= =?UTF-8?q?=20choices=20nesting=20issue?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Upgraded to livekit/components-react v2.5.4, fixing a bug in v2.5.3 that caused repeated nesting of persistent user choices, exhausting the quota. Thanks to Lukas for the quick fix. --- src/frontend/package-lock.json | 31 ++++++++++++++++--------------- src/frontend/package.json | 2 +- 2 files changed, 17 insertions(+), 16 deletions(-) diff --git a/src/frontend/package-lock.json b/src/frontend/package-lock.json index 4e2eb5bd..c1906071 100644 --- a/src/frontend/package-lock.json +++ b/src/frontend/package-lock.json @@ -8,7 +8,7 @@ "name": "meet", "version": "0.1.5", "dependencies": { - "@livekit/components-react": "2.5.3", + "@livekit/components-react": "2.5.4", "@livekit/components-styles": "1.1.2", "@pandacss/preset-panda": "0.46.0", "@react-aria/toast": "3.0.0-beta.15", @@ -407,6 +407,7 @@ }, "node_modules/@clack/prompts/node_modules/is-unicode-supported": { "version": "1.3.0", + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -949,12 +950,12 @@ } }, "node_modules/@floating-ui/dom": { - "version": "1.6.8", - "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.6.8.tgz", - "integrity": "sha512-kx62rP19VZ767Q653wsP1XZCGIirkE09E0QUGNYTM/ttbbQHqcGPdSfWFxUyyNLc/W6aoJRBajOSXhP6GXjC0Q==", + "version": "1.6.11", + "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.6.11.tgz", + "integrity": "sha512-qkMCxSR24v2vGkhYDo/UzxfJN3D4syqSjyuTFz6C7XcpU1pASPRieNI0Kj5VP3/503mOfYiGY891ugBX1GlABQ==", "dependencies": { "@floating-ui/core": "^1.6.0", - "@floating-ui/utils": "^0.2.5" + "@floating-ui/utils": "^0.2.8" } }, "node_modules/@floating-ui/utils": { @@ -1156,11 +1157,11 @@ } }, "node_modules/@livekit/components-core": { - "version": "0.11.4", - "resolved": "https://registry.npmjs.org/@livekit/components-core/-/components-core-0.11.4.tgz", - "integrity": "sha512-8Dr/9WCEov5AW42KrTnLTuoEIK1yWHcdvvJl8znxx59uUVlE8o6IvsFnofNlfRJ2fCADSnw0K2yEpLQjwLel2Q==", + "version": "0.11.5", + "resolved": "https://registry.npmjs.org/@livekit/components-core/-/components-core-0.11.5.tgz", + "integrity": "sha512-aaWPQJEfbY5tUND+diB7sW/6dRWN/H9lwqVy7L3nt15MszN1lX7ZlM9gA4ODquv+wUyFhxYfjRm7jVuV/g234g==", "dependencies": { - "@floating-ui/dom": "1.6.8", + "@floating-ui/dom": "1.6.11", "loglevel": "1.9.1", "rxjs": "7.8.1" }, @@ -1168,17 +1169,17 @@ "node": ">=18" }, "peerDependencies": { - "@livekit/protocol": "^1.16.0", + "@livekit/protocol": "^1.20.1", "livekit-client": "^2.4.0", "tslib": "^2.6.2" } }, "node_modules/@livekit/components-react": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@livekit/components-react/-/components-react-2.5.3.tgz", - "integrity": "sha512-RKqi2KDltsqTdw5xx0ahEfHtuFvQoTjmJ/M1pukqU7Eczcuwga4AuEESxWkq6ct7Zenabru4eYjFbScc60L3og==", + "version": "2.5.4", + "resolved": "https://registry.npmjs.org/@livekit/components-react/-/components-react-2.5.4.tgz", + "integrity": "sha512-uog/fZMOABFNX2HS8R4zYr2F+m14vS4mifAnRWDux+4wjMvBminX57pRqf/YN9wHc0cmiPlq0Nd8JLWnqJd2fg==", "dependencies": { - "@livekit/components-core": "0.11.4", + "@livekit/components-core": "0.11.5", "clsx": "2.1.1", "usehooks-ts": "3.1.0" }, @@ -1186,7 +1187,7 @@ "node": ">=18" }, "peerDependencies": { - "@livekit/protocol": "^1.16.0", + "@livekit/protocol": "^1.20.1", "livekit-client": "^2.4.0", "react": ">=18", "react-dom": ">=18", diff --git a/src/frontend/package.json b/src/frontend/package.json index 60c89d0d..fa56681e 100644 --- a/src/frontend/package.json +++ b/src/frontend/package.json @@ -13,7 +13,7 @@ "check": "prettier --check ./src" }, "dependencies": { - "@livekit/components-react": "2.5.3", + "@livekit/components-react": "2.5.4", "@livekit/components-styles": "1.1.2", "@pandacss/preset-panda": "0.46.0", "@react-aria/toast": "3.0.0-beta.15",