Skip to content

Commit

Permalink
Update LK version to avoid breaking changes in Chrome v124 dropping A…
Browse files Browse the repository at this point in the history
…pril 16. (#243)
  • Loading branch information
mdepinet authored Mar 29, 2024
1 parent 88a3b7b commit 1a36645
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 5 deletions.
6 changes: 6 additions & 0 deletions packages/fixie-web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# fixie-web

## 1.0.18

### Patch Changes

- Update livekit version to avoid breaking changes in Chrome v124.

## 1.0.15

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/fixie-web/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "fixie-web",
"description": "Browser-based SDK for the Fixie platform.",
"version": "1.0.17",
"version": "1.0.18",
"license": "MIT",
"repository": {
"type": "git",
Expand All @@ -27,7 +27,7 @@
"dependencies": {
"@fixieai/fixie-common": "^1.0.14",
"base64-arraybuffer": "^1.0.2",
"livekit-client": "^1.15.2",
"livekit-client": "^2.0.10",
"type-fest": "^4.3.1"
},
"devDependencies": {
Expand Down
3 changes: 1 addition & 2 deletions packages/fixie-web/src/voice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import { AgentId, ConversationId } from '@fixieai/fixie-common';
import {
createLocalTracks,
ConnectionState,
DataPacket_Kind,
LocalAudioTrack,
RemoteAudioTrack,
RemoteTrack,
Expand Down Expand Up @@ -239,7 +238,7 @@ export class VoiceSession {
}

private sendData(obj: any) {
this.room?.localParticipant.publishData(this.textEncoder.encode(JSON.stringify(obj)), DataPacket_Kind.RELIABLE);
this.room?.localParticipant.publishData(this.textEncoder.encode(JSON.stringify(obj)), { reliable: true });
}

private handleSocketOpen() {
Expand Down
34 changes: 33 additions & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -466,6 +466,13 @@ __metadata:
languageName: node
linkType: hard

"@bufbuild/protobuf@npm:^1.7.2":
version: 1.8.0
resolution: "@bufbuild/protobuf@npm:1.8.0"
checksum: 148755fce3cc28891a42c35a375596a3817710e2e8f4a452f034ffd988bbec1c9154135865b0b846f5f56765c93eb88cacc2f42af053925fb14f09b6a2b8c295
languageName: node
linkType: hard

"@changesets/apply-release-plan@npm:^7.0.0":
version: 7.0.0
resolution: "@changesets/apply-release-plan@npm:7.0.0"
Expand Down Expand Up @@ -1137,6 +1144,15 @@ __metadata:
languageName: node
linkType: hard

"@livekit/protocol@npm:1.10.4":
version: 1.10.4
resolution: "@livekit/protocol@npm:1.10.4"
dependencies:
"@bufbuild/protobuf": ^1.7.2
checksum: 05372bed04f35c3718fb36cd7e06466d1256911446e15769e36b2c5fa4cdf3ecd95fb4298362fe18a426a40b61a8d27cd34b92ed0e925f7412a24b7af6ae12bf
languageName: node
linkType: hard

"@manypkg/find-root@npm:^1.1.0":
version: 1.1.0
resolution: "@manypkg/find-root@npm:1.1.0"
Expand Down Expand Up @@ -4039,7 +4055,7 @@ __metadata:
base64-arraybuffer: ^1.0.2
eslint: ^8.40.0
eslint-config-nth: ^2.0.1
livekit-client: ^1.15.2
livekit-client: ^2.0.10
prettier: ^3.0.0
type-fest: ^4.3.1
typescript: 5.1.3
Expand Down Expand Up @@ -5943,6 +5959,22 @@ __metadata:
languageName: node
linkType: hard

"livekit-client@npm:^2.0.10":
version: 2.0.10
resolution: "livekit-client@npm:2.0.10"
dependencies:
"@livekit/protocol": 1.10.4
events: ^3.3.0
loglevel: ^1.8.0
sdp-transform: ^2.14.1
ts-debounce: ^4.0.0
tslib: 2.6.2
typed-emitter: ^2.1.0
webrtc-adapter: ^8.1.1
checksum: 44655f8c625ac8969311ca6aeef4b3e0c3feaeebdc68d067e057d24a4db05faa7e85069ade3386856c6a31b813be98856f12a29e87f45cc78b94a0ab9625e0a2
languageName: node
linkType: hard

"load-yaml-file@npm:^0.2.0":
version: 0.2.0
resolution: "load-yaml-file@npm:0.2.0"
Expand Down

0 comments on commit 1a36645

Please sign in to comment.