Skip to content

Commit

Permalink
Release 2.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Luligu committed Feb 11, 2025
1 parent 41be055 commit a20618a
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 9 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ matterbridge-zigbee2mqtt v. 2.4.4
matterbridge-somfy-tahoma v. 1.2.3
matterbridge-hass v. 0.0.8

## [2.1.5] - 2025-02-10
## [2.1.5] - 2025-02-11

### Added

Expand All @@ -42,15 +42,17 @@ matterbridge-hass v. 0.0.8
- [frontend]: Added cpuUsed, rss and heapUsed to SystemInformation.
- [frontend]: Added UiProvider.
- [frontend]: Added wssSendCpuUpdate, wssSendMemoryUpdate and wssSendSnackbarMessage.
- [docker]: Added health check to docker images. See README-DOCKER.md with the updated configuration.

### Changed

- [matterbridge]: Calls getNpmPackageVersion() instead of npm to get latest version.
- [matterbridge]: Calls getNpmPackageVersion() instead of npm to get latest version to optimize memory and cpu usage.
- [matterbridge]: Memory optimization on MatterbridgeEndpoint.

### Fixed

- [matterbridge]: Refactor shutdown sequences for reset and factory reset.
- [matterbridge]: Refactor reset devices adding a wait of 1 sec to allow matter to deliver all messages before shutting down.

<a href="https://www.buymeacoffee.com/luligugithub">
<img src="./yellow-button.png" alt="Buy me a coffee" width="120">
Expand Down
6 changes: 6 additions & 0 deletions README-DOCKER.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,12 @@ services:
volumes:
- "/home/<USER>/Matterbridge:/root/Matterbridge" # Mounts the Matterbridge plugin directory
- "/home/<USER>/.matterbridge:/root/.matterbridge" # Mounts the Matterbridge storage directory
healthcheck:
test: curl --fail localhost:8283/health || exit 1
interval: 60s
retries: 5
start_period: 60s
timeout: 10s
```

Replace USER with your user name (i.e. ubuntu or pi).
Expand Down
10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "matterbridge",
"version": "2.1.5-dev.8",
"version": "2.1.5",
"description": "Matterbridge plugin manager for Matter",
"author": "https://github.com/Luligu",
"license": "Apache-2.0",
Expand Down Expand Up @@ -174,4 +174,4 @@
"typescript": "5.7.3",
"typescript-eslint": "8.23.0"
}
}
}

0 comments on commit a20618a

Please sign in to comment.