@homebridge-plugins/homebridge-ecovacs 8.0.2-beta.1 → 8.0.2-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,7 @@ All notable changes to `@homebridge-plugins/homebridge-ecovacs` will be document
|
|
|
8
8
|
|
|
9
9
|
- fix: give each vacuum its own client resource so multiple devices no longer mix up status updates (#81)
|
|
10
10
|
- chore(github): update the setup-node action to v7
|
|
11
|
+
- chore(deps): update dependencies
|
|
11
12
|
|
|
12
13
|
## v8.0.1 (2026-07-12)
|
|
13
14
|
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"displayName": "Homebridge Ecovacs",
|
|
4
4
|
"alias": "Deebot",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"version": "8.0.2-beta.
|
|
6
|
+
"version": "8.0.2-beta.2",
|
|
7
7
|
"description": "Homebridge plugin to integrate Ecovacs Deebot/Yeedi devices into HomeKit.",
|
|
8
8
|
"author": {
|
|
9
9
|
"name": "bwp91",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
70
|
"@homebridge/plugin-ui-utils": "^2.2.5",
|
|
71
|
-
"ecovacs-deebot": "^0.
|
|
71
|
+
"ecovacs-deebot": "^1.0.0-alpha.22",
|
|
72
72
|
"patch-package": "^8.0.1"
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
@@ -81,25 +81,9 @@
|
|
|
81
81
|
"typescript": "^6.0.3"
|
|
82
82
|
},
|
|
83
83
|
"overrides": {
|
|
84
|
-
"ecovacs-deebot": {
|
|
85
|
-
"@xmldom/xmldom": "^0.9.10",
|
|
86
|
-
"axios": "^1.18.1",
|
|
87
|
-
"canvas": {
|
|
88
|
-
".": "^2.11.2",
|
|
89
|
-
"@mapbox/node-pre-gyp": {
|
|
90
|
-
"tar": "^7.5.20"
|
|
91
|
-
}
|
|
92
|
-
},
|
|
93
|
-
"simple-xmpp": {
|
|
94
|
-
"node-xmpp-client": {
|
|
95
|
-
".": "^3.1.11",
|
|
96
|
-
"request": {
|
|
97
|
-
"form-data": "^2.5.6",
|
|
98
|
-
"qs": "^6.15.3"
|
|
99
|
-
}
|
|
100
|
-
}
|
|
101
|
-
}
|
|
102
|
-
},
|
|
103
84
|
"reconnect-core": "0.0.1"
|
|
85
|
+
},
|
|
86
|
+
"allowScripts": {
|
|
87
|
+
"fsevents@2.3.3": true
|
|
104
88
|
}
|
|
105
89
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
diff --git a/node_modules/ecovacs-deebot/library/tools.js b/node_modules/ecovacs-deebot/library/tools.js
|
|
2
|
-
index
|
|
2
|
+
index 61d32f5..1f80271 100644
|
|
3
3
|
--- a/node_modules/ecovacs-deebot/library/tools.js
|
|
4
4
|
+++ b/node_modules/ecovacs-deebot/library/tools.js
|
|
5
|
-
@@ -
|
|
5
|
+
@@ -550,11 +550,13 @@ function envLogRaw(message) {
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
function logEvent(event, value) {
|