matterbridge-zigbee2mqtt 3.0.5 → 3.0.6
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 +12 -0
- package/npm-shrinkwrap.json +10 -10
- package/package.json +8 -2
package/CHANGELOG.md
CHANGED
|
@@ -26,6 +26,18 @@ If you like this project and find it useful, please consider giving it a star on
|
|
|
26
26
|
|
|
27
27
|
<a href="https://www.buymeacoffee.com/luligugithub"><img src="https://matterbridge.io/assets/bmc-button.svg" alt="Buy me a coffee" width="120"></a>
|
|
28
28
|
|
|
29
|
+
## [3.0.6] - 2026-02-07
|
|
30
|
+
|
|
31
|
+
### Changed
|
|
32
|
+
|
|
33
|
+
- [package]: Updated dependencies.
|
|
34
|
+
- [package]: Bumped package to automator v.3.0.6.
|
|
35
|
+
- [package]: Bumped node-ansi-logger to v.3.2.0.
|
|
36
|
+
- [vite]: Added cache under .cache/vite.
|
|
37
|
+
- [workflow]: Migrated to trusted publishing / OIDC. Since you can authorize only one workflow with OIDC, publish.yml now does both the publishing with tag latest (on release) and with tag dev (on schedule or manual trigger).
|
|
38
|
+
|
|
39
|
+
<a href="https://www.buymeacoffee.com/luligugithub"><img src="https://matterbridge.io/assets/bmc-button.svg" alt="Buy me a coffee" width="80"></a>
|
|
40
|
+
|
|
29
41
|
## [3.0.5] - 2026-02-04
|
|
30
42
|
|
|
31
43
|
### Added
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge-zigbee2mqtt",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.6",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "matterbridge-zigbee2mqtt",
|
|
9
|
-
"version": "3.0.
|
|
9
|
+
"version": "3.0.6",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"moment": "2.30.1",
|
|
13
13
|
"mqtt": "5.15.0",
|
|
14
|
-
"node-ansi-logger": "3.
|
|
14
|
+
"node-ansi-logger": "3.2.0",
|
|
15
15
|
"node-persist-manager": "2.0.0"
|
|
16
16
|
},
|
|
17
17
|
"engines": {
|
|
@@ -32,9 +32,9 @@
|
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
34
|
"node_modules/@types/node": {
|
|
35
|
-
"version": "25.2.
|
|
36
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-25.2.
|
|
37
|
-
"integrity": "sha512-
|
|
35
|
+
"version": "25.2.1",
|
|
36
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-25.2.1.tgz",
|
|
37
|
+
"integrity": "sha512-CPrnr8voK8vC6eEtyRzvMpgp3VyVRhgclonE7qYi6P9sXwYb59ucfrnmFBTaP0yUi8Gk4yZg/LlTJULGxvTNsg==",
|
|
38
38
|
"license": "MIT",
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"undici-types": "~7.16.0"
|
|
@@ -352,13 +352,13 @@
|
|
|
352
352
|
"license": "MIT"
|
|
353
353
|
},
|
|
354
354
|
"node_modules/node-ansi-logger": {
|
|
355
|
-
"version": "3.
|
|
356
|
-
"resolved": "https://registry.npmjs.org/node-ansi-logger/-/node-ansi-logger-3.
|
|
357
|
-
"integrity": "sha512-
|
|
355
|
+
"version": "3.2.0",
|
|
356
|
+
"resolved": "https://registry.npmjs.org/node-ansi-logger/-/node-ansi-logger-3.2.0.tgz",
|
|
357
|
+
"integrity": "sha512-HvKsTZpMSrEkO2x2egSvTpjgWkVpYO0xsXNxmCG+7vi0Ohs5yy9EdTKbTPYbNwzXY70g7nqsE10yE+Tsw5MA8w==",
|
|
358
358
|
"hasShrinkwrap": true,
|
|
359
359
|
"license": "Apache-2.0",
|
|
360
360
|
"engines": {
|
|
361
|
-
"node": ">=
|
|
361
|
+
"node": ">=20.0.0 <21.0.0 || >=22.0.0 <23.0.0 || >=24.0.0 <25.0.0"
|
|
362
362
|
},
|
|
363
363
|
"funding": {
|
|
364
364
|
"type": "buymeacoffee",
|
package/package.json
CHANGED
|
@@ -1,12 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge-zigbee2mqtt",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.6",
|
|
4
4
|
"description": "Matterbridge zigbee2mqtt plugin",
|
|
5
5
|
"author": "https://github.com/Luligu",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "dist/module.js",
|
|
9
9
|
"types": "dist/module.d.ts",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"import": "./dist/module.js",
|
|
13
|
+
"types": "./dist/module.d.ts"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
10
16
|
"homepage": "https://www.npmjs.com/package/matterbridge-zigbee2mqtt",
|
|
11
17
|
"repository": {
|
|
12
18
|
"type": "git",
|
|
@@ -61,7 +67,7 @@
|
|
|
61
67
|
"dependencies": {
|
|
62
68
|
"moment": "2.30.1",
|
|
63
69
|
"mqtt": "5.15.0",
|
|
64
|
-
"node-ansi-logger": "3.
|
|
70
|
+
"node-ansi-logger": "3.2.0",
|
|
65
71
|
"node-persist-manager": "2.0.0"
|
|
66
72
|
}
|
|
67
73
|
}
|