From 6ac3546a10ec9adf66c8cbb142f0c048f0032c2a Mon Sep 17 00:00:00 2001 From: Mark Backman Date: Fri, 15 May 2026 16:44:16 -0400 Subject: [PATCH] Bump client SDK versions --- CHANGELOG.md | 8 +++++--- .../templates/client/react-nextjs/package.json.jinja2 | 8 ++++---- .../templates/client/react-vite/package.json.jinja2 | 8 ++++---- .../templates/client/vanilla-js-vite/package.json.jinja2 | 6 +++--- 4 files changed, 16 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ad11246..37eb586 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,13 +19,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 3.11. - Bumped client template dependencies: - - `@pipecat-ai/client-js` to 1.8.0 across the vanilla-js-vite, react-vite, + - `@pipecat-ai/client-js` to 1.9.0 across the vanilla-js-vite, react-vite, and react-nextjs templates. - - `@pipecat-ai/client-react` to 1.4.0 across the react-vite and react-nextjs + - `@pipecat-ai/client-react` to 1.5.0 across the react-vite and react-nextjs templates. - `@pipecat-ai/voice-ui-kit` to 0.11.0 in the react-vite and react-nextjs templates. - - `"@pipecat-ai/small-webrtc-transport"` to 1.10.1 across the vanilla-js-vite, + - `"@pipecat-ai/daily-transport"` to 1.6.4 across the vanilla-js-vite, + react-vite, and react-nextjs templates. + - `"@pipecat-ai/small-webrtc-transport"` to 1.10.2 across the vanilla-js-vite, react-vite, and react-nextjs templates. ## [1.1.0] - 2026-04-29 diff --git a/src/pipecat_cli/templates/client/react-nextjs/package.json.jinja2 b/src/pipecat_cli/templates/client/react-nextjs/package.json.jinja2 index 67f406d..b9401ea 100644 --- a/src/pipecat_cli/templates/client/react-nextjs/package.json.jinja2 +++ b/src/pipecat_cli/templates/client/react-nextjs/package.json.jinja2 @@ -9,13 +9,13 @@ "lint": "eslint" }, "dependencies": { - "@pipecat-ai/client-js": "^1.8.0", - "@pipecat-ai/client-react": "^1.4.0", + "@pipecat-ai/client-js": "^1.9.0", + "@pipecat-ai/client-react": "^1.5.0", {%- for transport in transports %} {%- if transport.value == 'daily' %} - "@pipecat-ai/daily-transport": "^1.6.3", + "@pipecat-ai/daily-transport": "^1.6.4", {%- elif transport.value == 'smallwebrtc' %} - "@pipecat-ai/small-webrtc-transport": "^1.10.1", + "@pipecat-ai/small-webrtc-transport": "^1.10.2", {%- endif %} {%- endfor %} "@pipecat-ai/voice-ui-kit": "^0.11.0", diff --git a/src/pipecat_cli/templates/client/react-vite/package.json.jinja2 b/src/pipecat_cli/templates/client/react-vite/package.json.jinja2 index 2c5a737..0835fb9 100644 --- a/src/pipecat_cli/templates/client/react-vite/package.json.jinja2 +++ b/src/pipecat_cli/templates/client/react-vite/package.json.jinja2 @@ -10,13 +10,13 @@ "preview": "vite preview" }, "dependencies": { - "@pipecat-ai/client-js": "^1.8.0", - "@pipecat-ai/client-react": "^1.4.0", + "@pipecat-ai/client-js": "^1.9.0", + "@pipecat-ai/client-react": "^1.5.0", {%- for transport in transports %} {%- if transport.value == 'daily' %} - "@pipecat-ai/daily-transport": "^1.6.3", + "@pipecat-ai/daily-transport": "^1.6.4", {%- elif transport.value == 'smallwebrtc' %} - "@pipecat-ai/small-webrtc-transport": "^1.10.1", + "@pipecat-ai/small-webrtc-transport": "^1.10.2", {%- endif %} {%- endfor %} "@pipecat-ai/voice-ui-kit": "^0.11.0", diff --git a/src/pipecat_cli/templates/client/vanilla-js-vite/package.json.jinja2 b/src/pipecat_cli/templates/client/vanilla-js-vite/package.json.jinja2 index 38eb2d1..491bb24 100644 --- a/src/pipecat_cli/templates/client/vanilla-js-vite/package.json.jinja2 +++ b/src/pipecat_cli/templates/client/vanilla-js-vite/package.json.jinja2 @@ -9,12 +9,12 @@ "preview": "vite preview" }, "dependencies": { - "@pipecat-ai/client-js": "^1.8.0" + "@pipecat-ai/client-js": "^1.9.0" {%- for transport in transports -%} {%- if transport.value == 'daily' %}, - "@pipecat-ai/daily-transport": "^1.6.3" + "@pipecat-ai/daily-transport": "^1.6.4" {%- elif transport.value == 'smallwebrtc' %}, - "@pipecat-ai/small-webrtc-transport": "^1.10.1" + "@pipecat-ai/small-webrtc-transport": "^1.10.2" {%- endif %} {%- endfor %} },