matterbridge-example-dynamic-platform 2.0.16-dev-20260426-db34f05 → 2.0.16-dev-20260430-e0675d4

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
@@ -32,10 +32,10 @@ If you like this project and find it useful, please consider giving it a star on
32
32
 
33
33
  - [package]: Preliminary compatibility update to `matterbridge 3.8.0`, matter 1.5.1 and matter.js 0.17.0.
34
34
  - [package]: Update dependencies.
35
- - [package]: Bump package to `automator` v.3.1.6.
35
+ - [package]: Bump package to `automator` v.3.1.7.
36
36
  - [package]: Bump `typescript` to v.6.0.3.
37
37
  - [package]: Bump `eslint` to v.10.2.1.
38
- - [package]: Bump `typescript-eslint` to v.8.59.0.
38
+ - [package]: Bump `typescript-eslint` to v.8.59.1.
39
39
  - [package]: Add `.vscode\tasks.json`.
40
40
  - [package]: Add `.vscode\settings.json`.
41
41
  - [devcontainer]: Add `Claude Code for VS Code extension` to Dev Container.
@@ -43,6 +43,9 @@ If you like this project and find it useful, please consider giving it a star on
43
43
  - [agent]: Add `.claude\CLAUDE.md` for claude.
44
44
  - [agent]: Add agent custom instructions (`testing`) for copilot and claude.
45
45
  - [agent]: Add agent custom instructions (`matterbridge`) for copilot and claude.
46
+ - [eslint]: Remove `eslint-plugin-promise` (not actively maintained) and add optional @typescript-eslint promise rules.
47
+ - [package]: Remove `overrides` that was necessary for eslint-plugin-promise.
48
+ - [eslint]: Add `eslint` v.2.0.0 config.
46
49
 
47
50
  ## [2.0.15] - 2026-04-08
48
51
 
package/dist/module.js CHANGED
@@ -106,7 +106,7 @@ export class ExampleMatterbridgeDynamicPlatform extends MatterbridgeDynamicPlatf
106
106
  constructor(matterbridge, log, config) {
107
107
  super(matterbridge, log, config);
108
108
  this.config = config;
109
- if (this.verifyMatterbridgeVersion === undefined || typeof this.verifyMatterbridgeVersion !== 'function' || !this.verifyMatterbridgeVersion('3.7.2')) {
109
+ if (typeof this.verifyMatterbridgeVersion !== 'function' || !this.verifyMatterbridgeVersion('3.7.2')) {
110
110
  throw new Error(`This plugin requires Matterbridge version >= "3.7.2". Please update Matterbridge from ${this.matterbridge.matterbridgeVersion} to the latest version in the frontend.`);
111
111
  }
112
112
  this.log.info('Initializing platform:', this.config.name);
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "matterbridge-example-dynamic-platform",
3
- "version": "2.0.16-dev-20260426-db34f05",
3
+ "version": "2.0.16-dev-20260430-e0675d4",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "matterbridge-example-dynamic-platform",
9
- "version": "2.0.16-dev-20260426-db34f05",
9
+ "version": "2.0.16-dev-20260430-e0675d4",
10
10
  "license": "Apache-2.0",
11
11
  "dependencies": {
12
12
  "node-ansi-logger": "3.2.1",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "matterbridge-example-dynamic-platform",
3
- "version": "2.0.16-dev-20260426-db34f05",
3
+ "version": "2.0.16-dev-20260430-e0675d4",
4
4
  "description": "Matterbridge dynamic plugin",
5
5
  "author": "https://github.com/Luligu",
6
6
  "license": "Apache-2.0",
@@ -69,9 +69,5 @@
69
69
  "dependencies": {
70
70
  "node-ansi-logger": "3.2.1",
71
71
  "node-persist-manager": "2.0.2"
72
- },
73
- "overrides": {
74
- "eslint": "10.2.1",
75
- "@eslint/js": "10.0.1"
76
72
  }
77
73
  }