Skip to content

Commit

Permalink
Merge pull request #69 from Luligu/dev
Browse files Browse the repository at this point in the history
Release 2.1.17
  • Loading branch information
Luligu authored Sep 21, 2024
2 parents 54f5b8a + 6a7a267 commit 79f6d92
Show file tree
Hide file tree
Showing 9 changed files with 264 additions and 141 deletions.
19 changes: 7 additions & 12 deletions .github/workflows/build-matterbridge-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ jobs:
with:
node-version: ${{ matrix.node-version }}

- name: Clean cache
run: npm cache clean --force

- name: Install latest npm
run: npm install -g npm@latest

- name: Verify Node.js version
run: node -v

Expand All @@ -31,7 +37,7 @@ jobs:
run: npm install -g matterbridge

- name: Install dependencies
run: npm install
run: npm ci

- name: Lint the project
run: npm run lint
Expand All @@ -42,14 +48,3 @@ jobs:
- name: Build the project
run: npm run build

# - name: List, audit, fix outdated dependencies and build again
# run: |
# npm uninstall matterbridge
# npm list --outdated
# npm audit || true # ignore failures
# npm audit fix || true
# npm list --outdated
# npm install -g matterbridge
# npm install
# npm run build

8 changes: 7 additions & 1 deletion .github/workflows/publish-matterbridge-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ jobs:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'

- name: Clean cache
run: npm cache clean --force

- name: Install latest npm
run: npm install -g npm@latest

- name: Verify Node.js version
run: node -v

Expand All @@ -28,7 +34,7 @@ jobs:
run: npm install -g matterbridge

- name: Install dependencies
run: npm install
run: npm ci

- name: Lint the project
run: npm run lint
Expand Down
20 changes: 19 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,25 @@ All notable changes to this project will be documented in this file.

### Breaking Changes

- Unless you are using docker (in that case all is already updated), please update Matterbridge to 1.5.3 to work with matterbridge-zigbee2mqtt 2.1.16. This is a one time issue due to the update to matter.js 0.10.0.
- Unless you are using docker (in that case all is already updated), please update Matterbridge to >=1.5.5 to work with matterbridge-zigbee2mqtt >=2.1.17. This is a one time issue due to the update to matter.js 0.10.x.

## [2.1.17] - 2024-09-21

### Changed

- [matterbridge]: Removed Matterbridge deprecated method to get the child endpoints.
- [package]: Updated dependencies.
- [plugin]: Moved trigger code to matterbridge triggerSwitchEvent.

### Added

- [matterbridge]: Added a check of the current Matterbridge version (required v1.5.5).
- [plugin]: Added configuration of ColorControl cluster features (HS, XY, CT).
- [plugin]: Removed the superset device types.

<a href="https://www.buymeacoffee.com/luligugithub">
<img src="./yellow-button.png" alt="Buy me a coffee" width="120">
</a>

## [2.1.16] - 2024-09-04

Expand Down
Loading

0 comments on commit 79f6d92

Please sign in to comment.