zigbee-herdsman 3.5.1 → 3.5.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/.github/dependabot.yml +9 -3
- package/.release-please-manifest.json +1 -1
- package/CHANGELOG.md +8 -0
- package/package.json +5 -5
package/.github/dependabot.yml
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
version: 2
|
|
2
2
|
updates:
|
|
3
|
-
- package-ecosystem:
|
|
4
|
-
directory:
|
|
3
|
+
- package-ecosystem: npm
|
|
4
|
+
directory: /
|
|
5
5
|
schedule:
|
|
6
|
-
interval:
|
|
6
|
+
interval: weekly
|
|
7
|
+
groups:
|
|
8
|
+
minor-patch:
|
|
9
|
+
applies-to: version-updates
|
|
10
|
+
update-types:
|
|
11
|
+
- minor
|
|
12
|
+
- patch
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [3.5.2](https://github.com/Koenkk/zigbee-herdsman/compare/v3.5.1...v3.5.2) (2025-04-17)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **ignore:** update dependencies ([#1388](https://github.com/Koenkk/zigbee-herdsman/issues/1388)) ([8d2da3a](https://github.com/Koenkk/zigbee-herdsman/commit/8d2da3abe61f5870d738dbe8eb8cf1b779be62d2))
|
|
9
|
+
* **ignore:** Update ZoH to v0.1.11 ([#1392](https://github.com/Koenkk/zigbee-herdsman/issues/1392)) ([e9b6bc9](https://github.com/Koenkk/zigbee-herdsman/commit/e9b6bc94a2a61c2e6baada629e006a2aa0776ac0))
|
|
10
|
+
|
|
3
11
|
## [3.5.1](https://github.com/Koenkk/zigbee-herdsman/compare/v3.5.0...v3.5.1) (2025-04-06)
|
|
4
12
|
|
|
5
13
|
|
package/package.json
CHANGED
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"fast-deep-equal": "^3.1.3",
|
|
34
34
|
"mixin-deep": "^2.0.1",
|
|
35
35
|
"slip": "^1.0.2",
|
|
36
|
-
"zigbee-on-host": "^0.1.
|
|
36
|
+
"zigbee-on-host": "^0.1.11"
|
|
37
37
|
},
|
|
38
38
|
"deprecated": false,
|
|
39
39
|
"description": "An open source ZigBee gateway solution with node.js.",
|
|
@@ -43,14 +43,14 @@
|
|
|
43
43
|
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
|
|
44
44
|
"@serialport/binding-mock": "^10.2.2",
|
|
45
45
|
"@types/debounce": "^1.2.4",
|
|
46
|
-
"@types/node": "^22.14.
|
|
46
|
+
"@types/node": "^22.14.1",
|
|
47
47
|
"@vitest/coverage-v8": "^3.1.1",
|
|
48
48
|
"eslint": "^9.24.0",
|
|
49
|
-
"eslint-config-prettier": "^10.1.
|
|
49
|
+
"eslint-config-prettier": "^10.1.2",
|
|
50
50
|
"prettier": "^3.5.3",
|
|
51
51
|
"rimraf": "^6.0.1",
|
|
52
52
|
"typescript": "^5.8.3",
|
|
53
|
-
"typescript-eslint": "^8.29.
|
|
53
|
+
"typescript-eslint": "^8.29.1",
|
|
54
54
|
"vitest": "^3.1.1"
|
|
55
55
|
},
|
|
56
56
|
"homepage": "https://github.com/Koenkk/zigbee-herdsman",
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"type": "git",
|
|
70
70
|
"url": "git+https://github.com/Koenkk/zigbee-herdsman.git"
|
|
71
71
|
},
|
|
72
|
-
"version": "3.5.
|
|
72
|
+
"version": "3.5.2",
|
|
73
73
|
"scripts": {
|
|
74
74
|
"build": "tsc",
|
|
75
75
|
"build:watch": "tsc -w",
|