Skip to content
This repository was archived by the owner on Apr 28, 2024. It is now read-only.

Commit f1cd55a

Browse files
committed
2.1.4.
1 parent bf7051e commit f1cd55a

File tree

2 files changed

+27
-17
lines changed

2 files changed

+27
-17
lines changed

CHANGELOG.md

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,46 +2,53 @@
22

33
All notable changes to this project will be documented in this file. This project uses [semantic versioning](https://semver.org/).
44

5-
## v2.1.3
5+
## 2.1.4 (2020-07-20)
6+
* Fix: address a race condition in updating device status.
7+
* Logging is more standardized and refined across the plugin.
8+
* Deprecate and remove `openDuration` and `closeDuration`. The values have been unused internally for some time, and they don't materially impact polling resolution.
9+
* Prepare the plumbing for additional myQ devices.
10+
11+
## 2.1.3 (2020-07-17)
612

713
* Fix: refresh security tokens more often to address potential myQ API issues.
814
* Get a status update from myQ immediately on startup.
915
* Remove reachability support since it's now deprecated in HomeKit and homebridge.
1016
* Refine logging to clarify messages and streamline in places.
1117
* Minor updates to the code base.
1218

13-
## v2.1.2
19+
## 2.1.2 (2020-07-12)
1420

1521
* Fix: repair npm install script.
1622

17-
## v2.1.1
23+
## 2.1.1 (2020-07-12)
1824

1925
* Enhancement: deduce the type of device and brand based on serial number.
2026
* Enhancement: inform users when we choose not to add a device to HomeKit because we don't support it yet.
2127
* Fix: don't attempt to open or close the door if we're already in that state.
2228
* Fix: acquire a new myQ API security token regularly (thanks @dxdc for helping track this one down).
2329
* Fix: address a potential race condition when we check for battery information availability (on supported models).
2430

25-
## v2.1.0
31+
## 2.1.0 (2020-07-12)
2632

2733
* Feature: include battery status information for devices that support it.
2834
* Code cleanup.
2935

30-
## v2.0.12-13
36+
## 2.0.13 (2020-07-11)
37+
## 2.0.12 (2020-07-11)
3138

3239
* Fix: look at the `device_family` attribute to determine whether it's a garage opener or not, rather than the `device_type` attribute.
3340

34-
## v2.0.11
41+
## 2.0.11
3542

3643
* New feature: feature options. This replaces the previous gateways and openers settings and should be a bit more intuitive to use.
3744

38-
## v2.0.10
45+
## 2.0.10
3946

4047
* Improved state handling for opening and closing conditions, including dealing with edge cases.
4148
* Preserve door state information across homebridge instances, so we remember where we left off.
4249
* myQ API cleanup.
4350

44-
## v2.0.1 - v2.0.9 (2020-07-04)
51+
## 2.0.1 - 2.0.9 (2020-07-04)
4552

4653
* API fixes to ensure compatibility.
4754
* Re-include UI-based configuration.
@@ -51,7 +58,7 @@ All notable changes to this project will be documented in this file. This projec
5158
Thanks to [shamoon](https://github.com/shamoon) and others for debugging and contributing to the API fixes and troubleshooting.
5259

5360

54-
## v2.0.0 (2020-07-03)
61+
## 2.0.0 (2020-07-03)
5562

5663
### Breaking Changes
5764

package.json

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,28 @@
11
{
22
"name": "homebridge-myq2",
3-
"version": "2.1.3",
3+
"version": "2.1.4",
44
"displayName": "Homebridge MyQ",
55
"description": "HomeKit integration of myQ enabled devices such as those from LiftMaster and Chamberlain.",
66
"main": "dist/index.js",
77
"scripts": {
8-
"clean": "rimraf ./dist",
98
"build": "rimraf ./dist && tsc",
9+
"clean": "rimraf ./dist",
1010
"lint": "eslint src/**.ts",
11-
"prepublishOnly": "npm run lint && npm run build",
1211
"postpublish": "npm run clean",
13-
"test": "echo \"Error: no test specified\" && exit 1"
12+
"prepublishOnly": "npm run lint && npm run build",
13+
"test": "echo \"Error: no test specified\" && exit 1",
14+
"watch": "npm run build && npm link && nodemon"
1415
},
1516
"keywords": [
17+
"chamberlain",
18+
"craftsman",
19+
"door",
20+
"garage",
1621
"homebridge",
1722
"homebridge-plugin",
18-
"myq",
1923
"liftmaster",
20-
"chamberlain",
21-
"garage",
22-
"door"
24+
"myq",
25+
"remote"
2326
],
2427
"author": "HJD https://github.com/hjdhjd",
2528
"engines": {

0 commit comments

Comments
 (0)