matterbridge 3.5.3-dev-20260201-7fb9ced → 3.5.3-dev-20260202-e19e9b6
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
|
@@ -51,6 +51,9 @@ Advantages:
|
|
|
51
51
|
### Added
|
|
52
52
|
|
|
53
53
|
- [docker]: Added workflow, scripts and dockerfile to build the s6-rc-base base image used by the Matterbridge Home Assistant Application.
|
|
54
|
+
- [frontend]: Added title render to the config editor and allow ui properties in 'oneOf', 'anyOf', 'allOf'. Thanks RinDevJunior (https://github.com/Luligu/matterbridge/pull/495).
|
|
55
|
+
- [frontend]: Added SearchPluginsDialog in Install plugins panel on the home page.
|
|
56
|
+
- [publish]: Migrate to trusted publishing / OIDC.
|
|
54
57
|
|
|
55
58
|
### Changed
|
|
56
59
|
|
|
@@ -61,7 +64,6 @@ Advantages:
|
|
|
61
64
|
- [matter.js]: Bump to matter.j v. 0.16.8.
|
|
62
65
|
- [frontend]: Bumped `frontend` version to v. 3.4.4.
|
|
63
66
|
- [frontend]: Updated `frontend` dependencies.
|
|
64
|
-
- [config]: Added title render to the config editor and allow ui properties in 'oneOf', 'anyOf', 'allOf'. Thanks RinDevJunior (https://github.com/Luligu/matterbridge/pull/495).
|
|
65
67
|
|
|
66
68
|
### Fixed
|
|
67
69
|
|
|
@@ -247,7 +247,7 @@ export async function createMatterbridgeEnvironment(name) {
|
|
|
247
247
|
matterbridge = await Matterbridge.loadInstance(false);
|
|
248
248
|
expect(matterbridge).toBeDefined();
|
|
249
249
|
expect(matterbridge).toBeInstanceOf(Matterbridge);
|
|
250
|
-
matterbridge.matterbridgeVersion = '3.5.
|
|
250
|
+
matterbridge.matterbridgeVersion = '3.5.3';
|
|
251
251
|
matterbridge.bridgeMode = 'bridge';
|
|
252
252
|
matterbridge.rootDirectory = path.join('jest', name);
|
|
253
253
|
matterbridge.homeDirectory = path.join('jest', name);
|