matterbridge-example-accessory-platform 3.0.2 → 3.0.3

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
@@ -29,6 +29,24 @@ If you like this project and find it useful, please consider giving it a star on
29
29
 
30
30
  <a href="https://www.buymeacoffee.com/luligugithub"><img src="https://matterbridge.io/assets/bmc-button.svg" alt="Buy me a coffee" width="120"></a>
31
31
 
32
+ ## [3.0.3] - 2026-08-30
33
+
34
+ ### Added
35
+
36
+ - [devcontainer]: Upgrade the `Dev Container` to v.2.0.0, using the Node.js and Bun stack.
37
+
38
+ ### Changed
39
+
40
+ - [package]: Upgrade package.
41
+ - [package]: Bump `oxfmt` to v.0.65.0.
42
+ - [package]: Bump `oxlint` to v.1.80.0.
43
+ - [package]: Bump `vitest` to v.4.1.11.
44
+ - [package]: Bump `@types/node` to v.26.4.0.
45
+ - [package]: Bump `node-ansi-logger` to v.3.3.1.
46
+ - [package]: Bump `node-persist-manager` to v.2.1.1.
47
+
48
+ <a href="https://www.buymeacoffee.com/luligugithub"><img src="https://matterbridge.io/assets/bmc-button.svg" alt="Buy me a coffee" width="80"></a>
49
+
32
50
  ## [3.0.2] - 2026-08-14
33
51
 
34
52
  ### Breaking changes
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "matterbridge-example-accessory-platform",
3
- "version": "3.0.2",
3
+ "version": "3.0.3",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "matterbridge-example-accessory-platform",
9
- "version": "3.0.2",
9
+ "version": "3.0.3",
10
10
  "license": "Apache-2.0",
11
11
  "dependencies": {
12
- "node-ansi-logger": "3.3.0",
13
- "node-persist-manager": "2.1.0"
12
+ "node-ansi-logger": "3.3.1",
13
+ "node-persist-manager": "2.1.1"
14
14
  },
15
15
  "engines": {
16
16
  "node": ">=20.19.0 <21.0.0 || >=22.13.0 <23.0.0 || >=24.0.0 <25.0.0 || >=26.0.0 <27.0.0"
@@ -21,9 +21,9 @@
21
21
  }
22
22
  },
23
23
  "node_modules/node-ansi-logger": {
24
- "version": "3.3.0",
25
- "resolved": "https://registry.npmjs.org/node-ansi-logger/-/node-ansi-logger-3.3.0.tgz",
26
- "integrity": "sha512-ZW77lbZkA8h3r2HA2rcE5RjTIcwRDNB072RkZVyimGQpmEorJT8ajZ7UDhkHGoh0JRrCJL0iUKBE8q4oU8MHMg==",
24
+ "version": "3.3.1",
25
+ "resolved": "https://registry.npmjs.org/node-ansi-logger/-/node-ansi-logger-3.3.1.tgz",
26
+ "integrity": "sha512-JjkQHtVKgyd5Ua4AkYCFsZZiUYMrPsj/S9k2VY8/FjYuFJFRjDawsuxMwaThhWu4oU7zwuqvDG2uoDnjUyApVw==",
27
27
  "hasShrinkwrap": true,
28
28
  "license": "Apache-2.0",
29
29
  "engines": {
@@ -35,9 +35,9 @@
35
35
  }
36
36
  },
37
37
  "node_modules/node-persist-manager": {
38
- "version": "2.1.0",
39
- "resolved": "https://registry.npmjs.org/node-persist-manager/-/node-persist-manager-2.1.0.tgz",
40
- "integrity": "sha512-LJze/Fcd8LijM4OMPnp0AQ+Z1e9mFMkjOEDw08xHA2HSRd2+N5s0uyH5ogYmXPC68f0sc4GrdKMpAcsHuO3PKA==",
38
+ "version": "2.1.1",
39
+ "resolved": "https://registry.npmjs.org/node-persist-manager/-/node-persist-manager-2.1.1.tgz",
40
+ "integrity": "sha512-cAqF2spTnzDSAQeORHy/OYdD1VROGZ6UiLjmq/gVxQ4EglB0Ro0QX83U+xHEh2G6b7HTvGFqjS/R9LTOGkcayw==",
41
41
  "hasShrinkwrap": true,
42
42
  "license": "Apache-2.0",
43
43
  "dependencies": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "matterbridge-example-accessory-platform",
3
- "version": "3.0.2",
3
+ "version": "3.0.3",
4
4
  "description": "Matterbridge accessory plugin",
5
5
  "author": "https://github.com/Luligu",
6
6
  "license": "Apache-2.0",
@@ -64,7 +64,7 @@
64
64
  "*.schema.json"
65
65
  ],
66
66
  "dependencies": {
67
- "node-ansi-logger": "3.3.0",
68
- "node-persist-manager": "2.1.0"
67
+ "node-ansi-logger": "3.3.1",
68
+ "node-persist-manager": "2.1.1"
69
69
  }
70
70
  }