From adb4bf69ff4ffb613a2d8f2a2bbeff5438fccbd1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sun, 6 Aug 2023 21:09:44 +0000 Subject: [PATCH] Version Packages --- .changeset/large-donuts-nail.md | 12 ------------ .changeset/moody-apples-collect.md | 6 ------ packages/examples/CHANGELOG.md | 7 +++++++ packages/examples/package.json | 2 +- packages/homebridge-ring/CHANGELOG.md | 11 +++++++++++ packages/homebridge-ring/package.json | 4 ++-- packages/ring-client-api/CHANGELOG.md | 15 +++++++++++++++ packages/ring-client-api/package.json | 2 +- 8 files changed, 37 insertions(+), 22 deletions(-) delete mode 100644 .changeset/large-donuts-nail.md delete mode 100644 .changeset/moody-apples-collect.md diff --git a/.changeset/large-donuts-nail.md b/.changeset/large-donuts-nail.md deleted file mode 100644 index 3278d953..00000000 --- a/.changeset/large-donuts-nail.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -'ring-client-api': major ---- - -Video streaming has been condensed to use a single API, rather than a separate setup between Ring Cloud and Ring Edge streaming. This should allow all cameras to stream, including those using HEVC which were unable to be put into Legacy Mode. - -Huge shoutout to @tsightler for figuring out this new API and getting the client updated! - -### Breaking Changes - -* The `StreamingConnectionBase` class has been removed, with all of the methods and properties moved to the `WebrtcConnection`` class. -* Implementations of the `BasicPeerConnection` class no longer need to implement the `createAnswer` method. diff --git a/.changeset/moody-apples-collect.md b/.changeset/moody-apples-collect.md deleted file mode 100644 index 1ab1d8bc..00000000 --- a/.changeset/moody-apples-collect.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'homebridge-ring': major -'ring-client-api': major ---- - -Drop Node 16 support. Node 18 is the current LTS, so please upgrade to Node 18 or Node 20. Note, Node 16 may still work after this update, but will likely break without warning in future updates. diff --git a/packages/examples/CHANGELOG.md b/packages/examples/CHANGELOG.md index a0c3ddf2..92346fdd 100644 --- a/packages/examples/CHANGELOG.md +++ b/packages/examples/CHANGELOG.md @@ -4,6 +4,13 @@ ### Patch Changes +- Updated dependencies [[`fa6d3b9`](https://github.com/dgreif/ring/commit/fa6d3b996592f2b22219fb9f5610c957bbce1423), [`9e4f04a`](https://github.com/dgreif/ring/commit/9e4f04ae88b6fa53700bf75bc670e78553f78419)]: + - ring-client-api@12.0.0 + +## null + +### Patch Changes + - Updated dependencies [[`b39157e`](https://github.com/dgreif/ring/commit/b39157ee8e079d053946f87b737e1264e3ab92b2)]: - ring-client-api@11.8.1 diff --git a/packages/examples/package.json b/packages/examples/package.json index 15232e7b..fc7c3f79 100644 --- a/packages/examples/package.json +++ b/packages/examples/package.json @@ -8,7 +8,7 @@ "dotenv": "16.3.1", "eslint-config-shared": "*", "express": "4.18.2", - "ring-client-api": "11.8.1", + "ring-client-api": "12.0.0", "tsconfig": "*" }, "version": null diff --git a/packages/homebridge-ring/CHANGELOG.md b/packages/homebridge-ring/CHANGELOG.md index b2adfa78..4e71b460 100644 --- a/packages/homebridge-ring/CHANGELOG.md +++ b/packages/homebridge-ring/CHANGELOG.md @@ -1,5 +1,16 @@ # homebridge-ring +## 12.0.0 + +### Major Changes + +- [`9e4f04a`](https://github.com/dgreif/ring/commit/9e4f04ae88b6fa53700bf75bc670e78553f78419) Thanks [@dgreif](https://github.com/dgreif)! - Drop Node 16 support. Node 18 is the current LTS, so please upgrade to Node 18 or Node 20. Note, Node 16 may still work after this update, but will likely break without warning in future updates. + +### Patch Changes + +- Updated dependencies [[`fa6d3b9`](https://github.com/dgreif/ring/commit/fa6d3b996592f2b22219fb9f5610c957bbce1423), [`9e4f04a`](https://github.com/dgreif/ring/commit/9e4f04ae88b6fa53700bf75bc670e78553f78419)]: + - ring-client-api@12.0.0 + ## 11.8.1 ### Patch Changes diff --git a/packages/homebridge-ring/package.json b/packages/homebridge-ring/package.json index de344302..c9171c6b 100644 --- a/packages/homebridge-ring/package.json +++ b/packages/homebridge-ring/package.json @@ -1,6 +1,6 @@ { "name": "homebridge-ring", - "version": "11.8.1", + "version": "12.0.0", "description": "Homebridge plugin for Ring doorbells, cameras, security alarm system and smart lighting", "main": "lib/index.js", "scripts": { @@ -13,7 +13,7 @@ "dependencies": { "@homebridge/camera-utils": "^2.2.0", "@homebridge/plugin-ui-utils": "^0.0.19", - "ring-client-api": "11.8.1", + "ring-client-api": "12.0.0", "werift": "0.18.5" }, "devDependencies": { diff --git a/packages/ring-client-api/CHANGELOG.md b/packages/ring-client-api/CHANGELOG.md index 58eff1d9..762852d0 100644 --- a/packages/ring-client-api/CHANGELOG.md +++ b/packages/ring-client-api/CHANGELOG.md @@ -1,5 +1,20 @@ # ring-client-api +## 12.0.0 + +### Major Changes + +- [`fa6d3b9`](https://github.com/dgreif/ring/commit/fa6d3b996592f2b22219fb9f5610c957bbce1423) Thanks [@dgreif](https://github.com/dgreif)! - Video streaming has been condensed to use a single API, rather than a separate setup between Ring Cloud and Ring Edge streaming. This should allow all cameras to stream, including those using HEVC which were unable to be put into Legacy Mode. + + Huge shoutout to @tsightler for figuring out this new API and getting the client updated! + + ### Breaking Changes + + - The `StreamingConnectionBase` class has been removed, with all of the methods and properties moved to the `WebrtcConnection`` class. + - Implementations of the `BasicPeerConnection` class no longer need to implement the `createAnswer` method. + +- [`9e4f04a`](https://github.com/dgreif/ring/commit/9e4f04ae88b6fa53700bf75bc670e78553f78419) Thanks [@dgreif](https://github.com/dgreif)! - Drop Node 16 support. Node 18 is the current LTS, so please upgrade to Node 18 or Node 20. Note, Node 16 may still work after this update, but will likely break without warning in future updates. + ## 11.8.1 ### Patch Changes diff --git a/packages/ring-client-api/package.json b/packages/ring-client-api/package.json index 50607f24..0d8578f4 100644 --- a/packages/ring-client-api/package.json +++ b/packages/ring-client-api/package.json @@ -1,6 +1,6 @@ { "name": "ring-client-api", - "version": "11.8.1", + "version": "12.0.0", "description": "Unofficial API for Ring doorbells, cameras, security alarm system and smart lighting", "main": "lib/index.js", "exports": {