Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
dgreif committed Nov 16, 2024
1 parent 1fe3043 commit cef247b
Show file tree
Hide file tree
Showing 7 changed files with 583 additions and 638 deletions.
6 changes: 6 additions & 0 deletions .changeset/friendly-boats-warn.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'homebridge-ring': patch
'ring-client-api': patch
---

Update dependencies
1,185 changes: 561 additions & 624 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"@swc-node/register": "^1.10.9",
"turbo": "^2.1.3"
"turbo": "^2.2.3"
},
"workspaces": [
"packages/*"
Expand Down
6 changes: 3 additions & 3 deletions packages/eslint-config-shared/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"private": true,
"main": "eslint-config-shared.js",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "8.8.1",
"@typescript-eslint/parser": "8.8.1",
"eslint": "9.12.0",
"@typescript-eslint/eslint-plugin": "8.12.2",
"@typescript-eslint/parser": "8.12.2",
"eslint": "9.14.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-jest": "28.8.3",
Expand Down
4 changes: 2 additions & 2 deletions packages/homebridge-ring/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
"@homebridge/camera-utils": "^2.2.6",
"@homebridge/plugin-ui-utils": "^1.0.3",
"ring-client-api": "13.1.0",
"werift": "0.19.4"
"werift": "0.20.1"
},
"devDependencies": {
"concurrently": "^9.0.1",
"eslint-config-shared": "*",
"homebridge": "1.8.4",
"homebridge": "1.8.5",
"tsconfig": "*",
"typescript": "5.6.3"
},
Expand Down
14 changes: 7 additions & 7 deletions packages/ring-client-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,29 +18,29 @@
"test:watch": "jest --watch"
},
"dependencies": {
"@eneris/push-receiver": "4.2.0",
"@eneris/push-receiver": "4.3.0",
"@homebridge/camera-utils": "^2.2.6",
"colors": "1.4.0",
"debug": "^4.3.7",
"json-bigint": "^1.0.0",
"rxjs": "^7.8.1",
"socket.io-client": "^2.5.0",
"systeminformation": "^5.23.5",
"uuid": "^10.0.0",
"werift": "0.19.4",
"uuid": "^11.0.2",
"werift": "0.20.1",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/debug": "4.1.12",
"@types/jest": "29.5.13",
"@types/jest": "29.5.14",
"@types/json-bigint": "^1.0.4",
"@types/node": "22.7.5",
"@types/node": "22.8.6",
"@types/socket.io-client": "1.4.36",
"@types/uuid": "10.0.0",
"@types/ws": "^8.5.12",
"@types/ws": "^8.5.13",
"eslint-config-shared": "*",
"jest": "29.7.0",
"msw": "^2.4.10",
"msw": "^2.6.0",
"ts-jest": "29.2.5",
"tsconfig": "*",
"typescript": "5.6.3"
Expand Down
4 changes: 3 additions & 1 deletion packages/ring-client-api/streaming/peer-connection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,9 @@ export class WeriftPeerConnection
})
})
this.pc.onIceCandidate.subscribe((iceCandidate) => {
this.onIceCandidate.next(iceCandidate)
if (iceCandidate) {
this.onIceCandidate.next(iceCandidate)
}
})

pc.iceConnectionStateChange.subscribe(() => {
Expand Down

0 comments on commit cef247b

Please sign in to comment.