matterbridge-example-dynamic-platform 3.0.0-dev-20260617-5ba7ac1 → 3.0.0
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 +14 -16
- package/README.md +31 -1
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
<!-- eslint-disable markdown/no-missing-label-refs -->
|
|
2
|
-
|
|
3
1
|
# <img src="https://matterbridge.io/assets/matterbridge.svg" alt="Matterbridge Logo" width="64px" height="64px"> Matterbridge dynamic platform example plugin changelog
|
|
4
2
|
|
|
5
3
|
[](https://www.npmjs.com/package/matterbridge-example-dynamic-platform)
|
|
@@ -30,30 +28,30 @@ If you like this project and find it useful, please consider giving it a star on
|
|
|
30
28
|
|
|
31
29
|
<a href="https://www.buymeacoffee.com/luligugithub"><img src="https://matterbridge.io/assets/bmc-button.svg" alt="Buy me a coffee" width="120"></a>
|
|
32
30
|
|
|
33
|
-
##
|
|
34
|
-
|
|
35
|
-
> **Note:** This repository uses a new toolchain. It replaces the traditional TypeScript / ESLint / Prettier / Jest stack with a faster, lighter setup.
|
|
31
|
+
## [3.0.0] - 2026-06-19
|
|
36
32
|
|
|
37
|
-
|
|
38
|
-
- **No ESLint, no Prettier** — replaced by the [oxc](https://oxc.rs) stack: [oxlint](https://oxc.rs/docs/guide/usage/linter.html) for linting and [oxfmt](https://oxc.rs/docs/guide/usage/formatter.html) for formatting.
|
|
39
|
-
- **No Jest** — replaced by [Vitest](https://vitest.dev), which is much faster and natively supports ESM without extra configuration.
|
|
40
|
-
- **Far fewer development dependencies** — the number of installed packages drops from **~600** to **~100**. A clean install is much faster.
|
|
41
|
-
- **Much faster linting and formatting** — oxlint and oxfmt run in a fraction of the time required by the ESLint / Prettier pipeline.
|
|
42
|
-
- **Much faster builds** — tsgo compiles the project in a fraction of the time required by the standard `tsc` build.
|
|
43
|
-
- **Editor support** — use the VS Code extensions for tsgo and oxc to get the same experience in the editor.
|
|
33
|
+
### Breaking changes
|
|
44
34
|
|
|
45
|
-
|
|
35
|
+
- [matterbridge]: Require matterbridge v.3.9.0 with matter v.1.5.1 and matter.js v.0.17.1.
|
|
46
36
|
|
|
47
37
|
### Added
|
|
48
38
|
|
|
49
39
|
- [fan]: Set FanControl.fanMode on remote FanControl.percentSetting changes. Thanks Ludovic BOUÉ (https://github.com/Luligu/matterbridge-example-dynamic-platform/issues/55).
|
|
40
|
+
- [codex]: Add `AGENTS.md` for Codex.
|
|
41
|
+
- [codex]: Add `.codex\config.toml` configuration for Codex.
|
|
42
|
+
- [codex]: Add `.codex\rules\default.rules` rules (sandbox) for Codex.
|
|
50
43
|
|
|
51
44
|
### Changed
|
|
52
45
|
|
|
53
46
|
- [package]: Update dependencies.
|
|
54
|
-
- [package]: Bump
|
|
55
|
-
- [
|
|
56
|
-
- [
|
|
47
|
+
- [package]: Bump package to `automator` v.3.1.12 and the [new toolchain](README.md#repository-setup).
|
|
48
|
+
- [workflow]: Bump `.github\workflows\build.yml` config to v.2.0.5.
|
|
49
|
+
- [workflow]: Bump `.github\workflows\codecov.yml` config to v.2.0.6.
|
|
50
|
+
- [workflow]: Bump `.github\workflows\publish.yml` config to v.2.0.5.
|
|
51
|
+
- [oxlint]: Bump `oxlint` config to v.1.0.13.
|
|
52
|
+
- [oxfmt]: Bump `oxfmt` config to v.1.0.3.
|
|
53
|
+
- [devcontainer]: Bump `.devcontainer/devcontainer.json` config to v.1.0.4.
|
|
54
|
+
- [package]: Bump `.vscode/extensions.json` config to v.1.0.4.
|
|
57
55
|
|
|
58
56
|
<a href="https://www.buymeacoffee.com/luligugithub"><img src="https://matterbridge.io/assets/bmc-button.svg" alt="Buy me a coffee" width="80"></a>
|
|
59
57
|
|
package/README.md
CHANGED
|
@@ -118,7 +118,7 @@ See the guidelines on [Matterbridge](https://github.com/Luligu/matterbridge/blob
|
|
|
118
118
|
- **No `typescript` package** — replaced by [TypeScript Native](https://github.com/microsoft/typescript-go). The `typescript` package is kept only as a publish-time dependency while tsgo is still in preview.
|
|
119
119
|
- **No ESLint, no Prettier** — replaced by the [oxc](https://oxc.rs) stack: [oxlint](https://oxc.rs/docs/guide/usage/linter.html) for linting and [oxfmt](https://oxc.rs/docs/guide/usage/formatter.html) for formatting.
|
|
120
120
|
- **No Jest** — replaced by [Vitest](https://vitest.dev), which is much faster and natively supports ESM without extra configuration.
|
|
121
|
-
- **Far fewer development dependencies** — the number of installed packages drops from **~600** to **~
|
|
121
|
+
- **Far fewer development dependencies** — the number of installed packages drops from **~600** to **~75**. A clean install is much faster.
|
|
122
122
|
- **Much faster linting and formatting** — oxlint and oxfmt run in a fraction of the time required by the ESLint / Prettier pipeline.
|
|
123
123
|
- **Much faster builds** — tsgo compiles the project in a fraction of the time required by the standard `tsc` build.
|
|
124
124
|
- **Editor support** — use the VS Code extensions for tsgo and oxc to get the same experience in the editor.
|
|
@@ -126,3 +126,33 @@ See the guidelines on [Matterbridge](https://github.com/Luligu/matterbridge/blob
|
|
|
126
126
|
## Style guide
|
|
127
127
|
|
|
128
128
|
See also the [Style Guide](./STYLEGUIDE.md) for JSDoc, naming, and logging conventions used in this repository.
|
|
129
|
+
|
|
130
|
+
## Copilot instructions
|
|
131
|
+
|
|
132
|
+
| File | Notes |
|
|
133
|
+
| ---------------------------------------------------------------- | ---------------------------------------------------------------- |
|
|
134
|
+
| `.github/copilot-instructions.md` | Main project instructions — always loaded |
|
|
135
|
+
| `.github/instructions/matterbridge/matterbridge.instructions.md` | Matterbridge endpoint guide — dedicated Copilot instruction file |
|
|
136
|
+
| `.github/instructions/testing/unit-tests.instructions.md` | Testing standards — scoped to `**/*.test.ts` |
|
|
137
|
+
|
|
138
|
+
## Claude instructions
|
|
139
|
+
|
|
140
|
+
| File | Notes |
|
|
141
|
+
| --------------------------------------------------------- | ----------------------------------------------------- |
|
|
142
|
+
| `CLAUDE.md` | Main project instructions — always loaded |
|
|
143
|
+
| `.claude/rules/matterbridge/matterbridge.instructions.md` | Matterbridge endpoint guide — loaded for all contexts |
|
|
144
|
+
| `.claude/rules/testing/unit-tests.instructions.md` | Testing standards — scoped to `**/*.test.ts` |
|
|
145
|
+
|
|
146
|
+
## Codex/Agents instructions
|
|
147
|
+
|
|
148
|
+
| File | Notes |
|
|
149
|
+
| ---------------------------- | ------------------------------------------------- |
|
|
150
|
+
| `AGENTS.md` | Main project instructions |
|
|
151
|
+
| `.codex/config.toml` | Codex project permissions, approvals, and profile |
|
|
152
|
+
| `.codex/rules/default.rules` | Codex command allow, prompt, and deny rules |
|
|
153
|
+
|
|
154
|
+
## Documentation
|
|
155
|
+
|
|
156
|
+
Refer to the Matterbridge [documentation](https://matterbridge.io) for other guidelines.
|
|
157
|
+
|
|
158
|
+
---
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge-example-dynamic-platform",
|
|
3
|
-
"version": "3.0.0
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "matterbridge-example-dynamic-platform",
|
|
9
|
-
"version": "3.0.0
|
|
9
|
+
"version": "3.0.0",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"node-ansi-logger": "3.2.1",
|