Skip to content

Commit

Permalink
prep 10.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bwp91 committed Dec 3, 2023
1 parent c5bbbe9 commit fa3ce2d
Show file tree
Hide file tree
Showing 6 changed files with 54 additions and 41 deletions.
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,18 @@ This project tries to adhere to [Semantic Versioning](http://semver.org/). In pr
- `MINOR` version when a new device type is added, or when a new feature is added that is backwards-compatible
- `PATCH` version when backwards-compatible bug fixes are implemented

## BETA
## 10.1.0 (2023-12-03)

### Added

- Support for `MSS120`
- Support for `MSS105`, `MSS115`, `MSS120`

### Changed

- Updated HomeKit native ignore list
- Bump `node` supported versions to v18.18.2 or v20.9.0
- Updated Matter native ignore list
- Bump `node` supported versions to v18.18.2 or v20.10.0
- Updated dependencies

## 10.0.0 (2023-10-17)

Expand Down
Binary file removed branding/icon.png
Binary file not shown.
8 changes: 8 additions & 0 deletions config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -164,10 +164,18 @@
"description": "The model of this device.",
"type": "string",
"oneOf": [
{
"title": "MSS105",
"enum": ["MSS105"]
},
{
"title": "MSS110",
"enum": ["MSS110"]
},
{
"title": "MSS115",
"enum": ["MSS115"]
},
{
"title": "MSS110NR",
"enum": ["MSS110NR"]
Expand Down
3 changes: 3 additions & 0 deletions lib/utils/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,9 @@ export default {
models: {
switchSingle: [
'HP110A',
'MSS105',
'MSS110',
'MSS115',
'MSS1101',
'MSS1102',
'MSS110NR',
Expand Down Expand Up @@ -333,6 +335,7 @@ export default {
},

matterHardware: {
MSS115: ['9'], // https://github.com/bwp91/homebridge-meross/issues/549
MSS315: ['9'], // https://github.com/bwp91/homebridge-meross/issues/537
},

Expand Down
70 changes: 35 additions & 35 deletions package-lock.json

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

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
},
"engines": {
"homebridge": "^1.6.0",
"node": "^18.18.2 || ^20.9.0"
"node": "^18.18.2 || ^20.10.0"
},
"repository": {
"type": "git",
Expand Down Expand Up @@ -57,13 +57,13 @@
"dependencies": {
"@homebridge/plugin-ui-utils": "^1.0.0",
"axios": "^1.6.2",
"mqtt": "^5.3.0",
"mqtt": "^5.3.1",
"node-persist": "^3.1.3",
"p-queue": "^7.4.1",
"p-timeout": "^6.1.2"
},
"devDependencies": {
"eslint": "^8.54.0",
"eslint": "^8.55.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-import-newlines": "^1.3.4",
Expand Down

0 comments on commit fa3ce2d

Please sign in to comment.