homebridge 1.3.7-beta.1 → 1.3.9-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +28 -3
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,8 +1,33 @@
1
1
  # Change Log
2
2
 
3
+ ## 1.3.9 (2021-12-29)
4
+
5
+ ### Bug Fixes
6
+
7
+ - Fixed a crash occurring for any encrypted communication when running NodeJs 17 on linux based machines [#3046](https://github.com/homebridge/homebridge/issues/3046)
8
+
9
+
10
+ ## 1.3.8 (2021-10-22)
11
+
12
+ ### Featured Changes
13
+
14
+ - PluginManager would abort plugin loading if one plugin encounters a loading error [#3017](https://github.com/homebridge/homebridge/issues/3017)
15
+
16
+ ### Other Changes
17
+
18
+ - Move to centrally managed Issue form templates and GitHub Action workflows [#3011](https://github.com/homebridge/homebridge/issues/3011)
19
+
20
+
21
+ ## 1.3.6 (2021-11-10)
22
+
23
+ ### Notable changes
24
+
25
+ * Added support for ESM modules and async plugin initializers [#2915](https://github.com/homebridge/homebridge/issues/2915)
26
+ * Upgraded HAP-NodeJS to [v0.9.7](https://github.com/homebridge/HAP-NodeJS/releases/tag/v0.9.7) providing bug fixes [#3008](https://github.com/homebridge/homebridge/issues/3008)
27
+
3
28
  ## v1.3.5 (2021-10-08)
4
29
 
5
- ## Notable changes
30
+ ### Notable changes
6
31
 
7
32
  This version adds new services and characteristics introduced with iOS 15.
8
33
 
@@ -11,7 +36,7 @@ This version adds new services and characteristics introduced with iOS 15.
11
36
  * The following services were newly added: `Assistant`, `SiriEndpoint`
12
37
  * The following services received new optional characteristics: `Siri` and `SmartSpeaker`
13
38
 
14
- ## Bug Fixes
39
+ ### Bug Fixes
15
40
 
16
41
  This release upgrades various dependencies with bug fixes and security fixes.
17
42
 
@@ -20,7 +45,7 @@ Only users who use the `bonjour` mdns advertiser are impacted by this vulnerabil
20
45
 
21
46
  ## v1.3.4 (2021-03-16)
22
47
 
23
- ## Bug Fixes
48
+ ### Bug Fixes
24
49
 
25
50
  * Fixed a characteristic warning for Cameras or Video Doorbells, which might be emitted on startup under certain conditions.
26
51
  _This warning had no impact on the functionality of Cameras_.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "homebridge",
3
3
  "description": "HomeKit support for the impatient",
4
- "version": "1.3.7-beta.1",
4
+ "version": "1.3.9-beta.1",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -47,7 +47,7 @@
47
47
  "chalk": "^4.1.2",
48
48
  "commander": "5.1.0",
49
49
  "fs-extra": "^10.0.0",
50
- "hap-nodejs": "0.9.7",
50
+ "hap-nodejs": "0.9.8",
51
51
  "qrcode-terminal": "^0.12.0",
52
52
  "semver": "^7.3.5",
53
53
  "source-map-support": "^0.5.20"