matterbridge-example-dynamic-platform 2.0.8 → 2.0.9

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
@@ -1,5 +1,3 @@
1
- <!-- markdownlint-disable MD024 MD033 -->
2
-
3
1
  # <img src="https://matterbridge.io/assets/matterbridge.svg" alt="Matterbridge Logo" width="64px" height="64px">&nbsp;&nbsp;&nbsp;Matterbridge dynamic platform example plugin changelog
4
2
 
5
3
  [![npm version](https://img.shields.io/npm/v/matterbridge-example-dynamic-platform.svg)](https://www.npmjs.com/package/matterbridge-example-dynamic-platform)
@@ -28,6 +26,18 @@ If you like this project and find it useful, please consider giving it a star on
28
26
 
29
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>
30
28
 
29
+ ## [2.0.9] - 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
+
31
41
  ## [2.0.8] - 2026-02-04
32
42
 
33
43
  ### Changed
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "matterbridge-example-dynamic-platform",
3
- "version": "2.0.8",
3
+ "version": "2.0.9",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "matterbridge-example-dynamic-platform",
9
- "version": "2.0.8",
9
+ "version": "2.0.9",
10
10
  "license": "Apache-2.0",
11
11
  "dependencies": {
12
- "node-ansi-logger": "3.1.1",
12
+ "node-ansi-logger": "3.2.0",
13
13
  "node-persist-manager": "2.0.0"
14
14
  },
15
15
  "engines": {
@@ -21,13 +21,13 @@
21
21
  }
22
22
  },
23
23
  "node_modules/node-ansi-logger": {
24
- "version": "3.1.1",
25
- "resolved": "https://registry.npmjs.org/node-ansi-logger/-/node-ansi-logger-3.1.1.tgz",
26
- "integrity": "sha512-tFeCSxwiRg5XaNda5nC27alzraZP76nLtUk1JDZqb9byhW4WYaSGL7/lmxFHEI16gypQDMEYljuF+wcG+cPPHw==",
24
+ "version": "3.2.0",
25
+ "resolved": "https://registry.npmjs.org/node-ansi-logger/-/node-ansi-logger-3.2.0.tgz",
26
+ "integrity": "sha512-HvKsTZpMSrEkO2x2egSvTpjgWkVpYO0xsXNxmCG+7vi0Ohs5yy9EdTKbTPYbNwzXY70g7nqsE10yE+Tsw5MA8w==",
27
27
  "hasShrinkwrap": true,
28
28
  "license": "Apache-2.0",
29
29
  "engines": {
30
- "node": ">=18.0.0 <19.0.0 || >=20.0.0 <21.0.0 || >=22.0.0 <23.0.0 || >=24.0.0 <25.0.0"
30
+ "node": ">=20.0.0 <21.0.0 || >=22.0.0 <23.0.0 || >=24.0.0 <25.0.0"
31
31
  },
32
32
  "funding": {
33
33
  "type": "buymeacoffee",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "matterbridge-example-dynamic-platform",
3
- "version": "2.0.8",
3
+ "version": "2.0.9",
4
4
  "description": "Matterbridge dynamic plugin",
5
5
  "author": "https://github.com/Luligu",
6
6
  "license": "Apache-2.0",
@@ -8,6 +8,12 @@
8
8
  "type": "module",
9
9
  "main": "dist/module.js",
10
10
  "types": "dist/module.d.ts",
11
+ "exports": {
12
+ ".": {
13
+ "import": "./dist/module.js",
14
+ "types": "./dist/module.d.ts"
15
+ }
16
+ },
11
17
  "repository": {
12
18
  "type": "git",
13
19
  "url": "git+https://github.com/Luligu/matterbridge-example-dynamic-platform.git"
@@ -61,7 +67,7 @@
61
67
  "*.schema.json"
62
68
  ],
63
69
  "dependencies": {
64
- "node-ansi-logger": "3.1.1",
70
+ "node-ansi-logger": "3.2.0",
65
71
  "node-persist-manager": "2.0.0"
66
72
  }
67
73
  }