mirror of
https://github.com/tsightler/ring-mqtt.git
synced 2025-09-26 21:01:12 +08:00
Merge pull request #994 from tsightler/socket-fix
## v5.8.1 **Bugs Fixed** Update ring-client-api to address a recent Ring API change which caused socket connections to fail and crash the ring-mqtt process. **Dependency Updates** - chalk 5.4.1 - mqtt 5.13.0 - ring-client-api 14.0.0-beta.2 - rxjs 7.8.2 - werift 0.22.1 - NodeJS 22.12.0 - S6 Overlay 3.2.1.0 - Bashio 0.17.0
This commit is contained in:
@@ -9,8 +9,8 @@ ENV LANG="C.UTF-8" \
|
||||
TERM="xterm-256color"
|
||||
|
||||
COPY . /app/ring-mqtt
|
||||
RUN S6_VERSION="v3.2.0.2" && \
|
||||
BASHIO_VERSION="v0.16.2" && \
|
||||
RUN S6_VERSION="v3.2.1.0" && \
|
||||
BASHIO_VERSION="v0.17.0" && \
|
||||
GO2RTC_VERSION="v1.9.4" && \
|
||||
APK_ARCH="$(apk --print-arch)" && \
|
||||
apk add --no-cache tar xz git bash curl jq tzdata mosquitto-clients && \
|
||||
|
@@ -1,3 +1,17 @@
|
||||
## v5.8.1
|
||||
**Bugs Fixed**
|
||||
Update ring-client-api to address a recent Ring API change which caused socket connections to fail and crash the ring-mqtt process.
|
||||
|
||||
**Dependency Updates**
|
||||
- chalk 5.4.1
|
||||
- mqtt 5.13.0
|
||||
- ring-client-api 14.0.0-beta.2
|
||||
- rxjs 7.8.2
|
||||
- werift 0.22.1
|
||||
- NodeJS 22.12.0
|
||||
- S6 Overlay 3.2.1.0
|
||||
- Bashio 0.17.0
|
||||
|
||||
## v5.8.0
|
||||
The 5.8.x branch is focused primarily on cleaning up various portions of the code to improve long-term maintainability, there are no major features planned for this branch.
|
||||
|
||||
|
2266
package-lock.json
generated
2266
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
12
package.json
12
package.json
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "ring-mqtt",
|
||||
"version": "5.8.0",
|
||||
"version": "5.8.1",
|
||||
"type": "module",
|
||||
"description": "Ring Devices via MQTT",
|
||||
"main": "ring-mqtt.js",
|
||||
@@ -8,17 +8,17 @@
|
||||
"@homebridge/camera-utils": "^2.2.7",
|
||||
"aedes": "^0.51.3",
|
||||
"body-parser": "^1.20.3",
|
||||
"chalk": "^5.3.0",
|
||||
"chalk": "^5.4.1",
|
||||
"date-fns": "^4.1.0",
|
||||
"debug": "^4.4.0",
|
||||
"express": "^4.21.2",
|
||||
"is-online": "^11.0.0",
|
||||
"js-yaml": "^4.1.0",
|
||||
"minimist": "^1.2.8",
|
||||
"mqtt": "^5.10.3",
|
||||
"ring-client-api": "^13.2.1",
|
||||
"rxjs": "^7.8.1",
|
||||
"werift": "^0.20.1",
|
||||
"mqtt": "^5.13.0",
|
||||
"ring-client-api": "^14.0.0-beta.2",
|
||||
"rxjs": "^7.8.2",
|
||||
"werift": "^0.22.1",
|
||||
"write-file-atomic": "^6.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
Reference in New Issue
Block a user