Skip to content

Commit

Permalink
chore: release v6.1.1
Browse files Browse the repository at this point in the history
### Bugfixes
* `Scene Activation CC` scene IDs are no longer auto-reset to `undefined`. This is unnecessary since they are value events
* All **get**-type commands may now timeout and return `undefined` without throwing
* Value labels for the Meter CC were improved to be unique
* `UserCodeReport` with status `NotAvailable` are now parsed correctly
* The interview procedure after inclusion now correctly implements the *Z-Wave+ Role Type Specs*, resolving weird issues with some secure devices
* `currentValue` and similar values are now updated immediately when a **set**-type command succeeds. Verification is done after a short delay.

### Config file changes
* Added several config files for new Honeywell/GE devices
* Added several config files for remaining GE devices, misc deadbolts
* Added Innovelli LZW42
* Added EcoDim dimmers
* Added Zooz Zen16
* Added a compatibility flag to remove support of CCs from devices
* Added Philio PAT02-A Flood Sensor
* Removed the (now invalid) compat flag `keepS0NonceUntilNext`
* Disable `Supervision CC` report for HomeSeer WD200+
* Force Basic CC to be supported for Vision Security ZD2102-5 to work around unreliable Notification Reports

### Changes under the hood
* The frame type and RSSI of incoming commands are now logged if applicable
  • Loading branch information
AlCalzone committed Jan 31, 2021
1 parent caedaa4 commit 668cba6
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Placeholder for next release:
## __WORK IN PROGRESS__
-->
## __WORK IN PROGRESS__
## 6.1.1 (2021-01-31)
### Bugfixes
* `Scene Activation CC` scene IDs are no longer auto-reset to `undefined`. This is unnecessary since they are value events
* All **get**-type commands may now timeout and return `undefined` without throwing
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"packages/*"
],
"useWorkspaces": true,
"version": "6.1.0",
"version": "6.1.1",
"command": {
"run": {
"stream": true
Expand Down
4 changes: 2 additions & 2 deletions packages/config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@zwave-js/config",
"version": "6.1.0",
"version": "6.1.1",
"description": "zwave-js: configuration files",
"publishConfig": {
"access": "public"
Expand Down Expand Up @@ -32,7 +32,7 @@
"node": ">=10.0.0"
},
"dependencies": {
"@zwave-js/core": "^6.1.0",
"@zwave-js/core": "^6.1.1",
"@zwave-js/shared": "^6.0.0-beta.2",
"alcalzone-shared": "^3.0.2",
"ansi-colors": "^4.1.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@zwave-js/core",
"version": "6.1.0",
"version": "6.1.1",
"description": "zwave-js: core components",
"publishConfig": {
"access": "public"
Expand Down
4 changes: 2 additions & 2 deletions packages/serial/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@zwave-js/serial",
"version": "6.1.0",
"version": "6.1.1",
"description": "zwave-js: Serialport driver",
"publishConfig": {
"access": "public"
Expand Down Expand Up @@ -31,7 +31,7 @@
"node": ">=10.0.0"
},
"dependencies": {
"@zwave-js/core": "^6.1.0",
"@zwave-js/core": "^6.1.1",
"alcalzone-shared": "^3.0.2",
"serialport": "^9.0.1",
"winston": "^3.3.3"
Expand Down
8 changes: 4 additions & 4 deletions packages/zwave-js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "zwave-js",
"version": "6.1.0",
"version": "6.1.1",
"description": "Z-Wave driver written entirely in JavaScript/TypeScript",
"keywords": [],
"main": "index.js",
Expand Down Expand Up @@ -63,9 +63,9 @@
"@alcalzone/jsonl-db": "^1.2.3",
"@sentry/integrations": "^5.24.2",
"@sentry/node": "^5.24.2",
"@zwave-js/config": "^6.1.0",
"@zwave-js/core": "^6.1.0",
"@zwave-js/serial": "^6.1.0",
"@zwave-js/config": "^6.1.1",
"@zwave-js/core": "^6.1.1",
"@zwave-js/serial": "^6.1.1",
"@zwave-js/shared": "^6.0.0-beta.2",
"alcalzone-shared": "^3.0.2",
"ansi-colors": "^4.1.1",
Expand Down

0 comments on commit 668cba6

Please sign in to comment.