Skip to content

Commit

Permalink
prep 12.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bwp91 committed Dec 16, 2023
1 parent cb0b3f1 commit dc32d51
Show file tree
Hide file tree
Showing 4 changed files with 59 additions and 55 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,19 @@ 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
## 12.1.0 (2023-12-16)

### Added

- Support for ZigBee button with UIID `7000`
- Support for ZigBee switch with UIID `7005`

### Changed

- Added plugin display name
- Don't overwrite the IP of a LAN device if it reports a different IP
- Bump `node` recommended versions to v18.19.0 or v20.10.0
- Updated dependencies

## 12.0.0 (2023-10-24)

Expand Down
3 changes: 2 additions & 1 deletion lib/utils/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ export default {
210,
211,
],
switchSingle: [1, 6, 14, 24, 27, 1009, 1256, 7004],
switchSingle: [1, 6, 14, 24, 27, 1009, 1256, 7004, 7005],
switchSCM: [77, 78, 81, 107, 112, 138, 160, 191, 209],
switchSCMPower: [182, 190],
switchSinglePower: [5, 32],
Expand Down Expand Up @@ -519,6 +519,7 @@ export default {
7002: 1, // Zigbee Human Body Sensor_Support OTA
7003: 1, // Zigbee Door Magnet_Support OTA
7004: 1, // Zigbee Single-Channel Switch ­_Support OTA
7005: 1, // Some switch, not entirely sure
7006: 1, // Zigbee Curtain_Support OTA
7014: 1, // some sensor https://github.com/bwp91/homebridge-ewelink/issues/494
},
Expand Down
94 changes: 47 additions & 47 deletions package-lock.json

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

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
},
"engines": {
"homebridge": "^1.6.0",
"node": "^18.18.2 || ^20.10.0"
"node": "^18.19.0 || ^20.10.0"
},
"repository": {
"type": "git",
Expand Down Expand Up @@ -62,15 +62,15 @@
"dependencies": {
"@homebridge/plugin-ui-utils": "^1.0.0",
"axios": "^1.6.2",
"node-persist": "^3.1.0",
"p-queue": "^7.4.1",
"node-persist": "^4.0.1",
"p-queue": "^8.0.1",
"websocket-as-promised": "^2.0.1",
"ws": "^8.14.2"
"ws": "^8.15.1"
},
"devDependencies": {
"eslint": "^8.54.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-import-newlines": "^1.3.4",
"eslint-plugin-sort-exports": "^0.8.0"
}
Expand Down

0 comments on commit dc32d51

Please sign in to comment.