matterbridge-example-dynamic-platform 1.2.5-dev-20250624-3a67316 → 1.2.5-dev-20250625-a228359

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,4 +1,17 @@
1
- # Changelog
1
+ # <img src="https://github.com/Luligu/matterbridge/blob/main/frontend/public/matterbridge%2064x64.png" alt="Matterbridge Logo" width="64px" height="64px">&nbsp;&nbsp;&nbsp;Matterbridge dynamic platform example plugin changelog
2
+
3
+ [![npm version](https://img.shields.io/npm/v/matterbridge-example-dynamic-platform.svg)](https://www.npmjs.com/package/matterbridge-example-dynamic-platform)
4
+ [![npm downloads](https://img.shields.io/npm/dt/matterbridge-example-dynamic-platform.svg)](https://www.npmjs.com/package/matterbridge-example-dynamic-platform)
5
+ [![Docker Version](https://img.shields.io/docker/v/luligu/matterbridge?label=docker%20version&sort=semver)](https://hub.docker.com/r/luligu/matterbridge)
6
+ [![Docker Pulls](https://img.shields.io/docker/pulls/luligu/matterbridge.svg)](https://hub.docker.com/r/luligu/matterbridge)
7
+ ![Node.js CI](https://github.com/Luligu/matterbridge-example-dynamic-platform/actions/workflows/build-matterbridge-plugin.yml/badge.svg)
8
+ ![CodeQL](https://github.com/Luligu/matterbridge-example-dynamic-platform/actions/workflows/codeql.yml/badge.svg)
9
+ [![codecov](https://codecov.io/gh/Luligu/matterbridge-example-dynamic-platform/branch/main/graph/badge.svg)](https://codecov.io/gh/Luligu/matterbridge-example-dynamic-platformr)
10
+
11
+ [![power by](https://img.shields.io/badge/powered%20by-matterbridge-blue)](https://www.npmjs.com/package/matterbridge)
12
+ [![power by](https://img.shields.io/badge/powered%20by-matter--history-blue)](https://www.npmjs.com/package/matter-history)
13
+ [![power by](https://img.shields.io/badge/powered%20by-node--ansi--logger-blue)](https://www.npmjs.com/package/node-ansi-logger)
14
+ [![power by](https://img.shields.io/badge/powered%20by-node--persist--manager-blue)](https://www.npmjs.com/package/node-persist-manager)
2
15
 
3
16
  All notable changes to this project will be documented in this file.
4
17
 
@@ -8,6 +21,32 @@ If you like this project and find it useful, please consider giving it a star on
8
21
  <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
9
22
  </a>
10
23
 
24
+ ## [1.2.5] - 2025-06-25
25
+
26
+ ### Added
27
+
28
+ - [DevContainer]: Added support for the **Matterbridge Dev Container** with an optimized named volume for `node_modules`.
29
+ - [GitHub]: Added GitHub issue templates for bug reports and feature requests.
30
+ - [ESLint]: Refactored the flat config.
31
+ - [ESLint]: Added the plugins `eslint-plugin-promise`, `eslint-plugin-jsdoc`, and `@vitest/eslint-plugin`.
32
+ - [Jest]: Refactored the flat config.
33
+ - [Vitest]: Added Vitest for TypeScript project testing. It will replace Jest, which does not work correctly with ESM module mocks.
34
+ - [JSDoc]: Added missing JSDoc comments, including `@param` and `@returns` tags.
35
+ - [CodeQL]: Added CodeQL badge in the readme.
36
+ - [Codecov]: Added Codecov badge in the readme.
37
+
38
+ ### Changed
39
+
40
+ - [package]: Require matterbridge 3.0.6.
41
+ - [package]: Updated package to Automator v. 2.0.1.
42
+ - [package]: Updated dependencies.
43
+ - [storage]: Bumped `node-storage-manager` to 2.0.0.
44
+ - [logger]: Bumped `node-ansi-logger` to 3.1.1.
45
+
46
+ <a href="https://www.buymeacoffee.com/luligugithub">
47
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
48
+ </a>
49
+
11
50
  ## [1.2.4] - 2025-06-13
12
51
 
13
52
  ### Added
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "matterbridge-example-dynamic-platform",
3
- "version": "1.2.5-dev-20250624-3a67316",
3
+ "version": "1.2.5-dev-20250625-a228359",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "matterbridge-example-dynamic-platform",
9
- "version": "1.2.5-dev-20250624-3a67316",
9
+ "version": "1.2.5-dev-20250625-a228359",
10
10
  "license": "Apache-2.0",
11
11
  "dependencies": {
12
- "node-ansi-logger": "^3.1.1",
13
- "node-persist-manager": "^2.0.0"
12
+ "node-ansi-logger": "3.1.1",
13
+ "node-persist-manager": "2.0.0"
14
14
  },
15
15
  "engines": {
16
16
  "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"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "matterbridge-example-dynamic-platform",
3
- "version": "1.2.5-dev-20250624-3a67316",
3
+ "version": "1.2.5-dev-20250625-a228359",
4
4
  "description": "Matterbridge dynamic plugin",
5
5
  "author": "https://github.com/Luligu",
6
6
  "license": "Apache-2.0",
@@ -34,7 +34,7 @@
34
34
  "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"
35
35
  },
36
36
  "dependencies": {
37
- "node-ansi-logger": "^3.1.1",
38
- "node-persist-manager": "^2.0.0"
37
+ "node-ansi-logger": "3.1.1",
38
+ "node-persist-manager": "2.0.0"
39
39
  }
40
40
  }
package/yellow-button.png DELETED
Binary file