@homebridge-plugins/homebridge-govee 11.15.0 → 11.16.0
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.
- package/CHANGELOG.md +8 -0
- package/lib/connection/lan.js +1 -1
- package/lib/utils/constants.js +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to `@homebridge-plugins/homebridge-govee` will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## v11.16.0 (2026-02-22)
|
|
6
|
+
|
|
7
|
+
### Changes
|
|
8
|
+
|
|
9
|
+
- update `matterModels` with model `H61D5` (#1237) (@R-STR)
|
|
10
|
+
- use `reuseAddr` to prevent `EADDRINUSE` on restart
|
|
11
|
+
- updated dependencies
|
|
12
|
+
|
|
5
13
|
## v11.15.0 (2026-02-16)
|
|
6
14
|
|
|
7
15
|
### Changes
|
package/lib/connection/lan.js
CHANGED
|
@@ -82,7 +82,7 @@ export default class {
|
|
|
82
82
|
})
|
|
83
83
|
|
|
84
84
|
// Create a UDP socket to listen for messages sent by Govee devices in a multicast group
|
|
85
|
-
this.receiver = dgram.createSocket('udp4')
|
|
85
|
+
this.receiver = dgram.createSocket({ type: 'udp4', reuseAddr: true })
|
|
86
86
|
|
|
87
87
|
// Create a UDP socket to send messages to Govee devices from host
|
|
88
88
|
this.sender = dgram.createSocket('udp4')
|
package/lib/utils/constants.js
CHANGED
|
@@ -545,7 +545,7 @@ export default {
|
|
|
545
545
|
],
|
|
546
546
|
},
|
|
547
547
|
|
|
548
|
-
matterModels: ['H5085', 'H600B', 'H600D', 'H6022', 'H6099', 'H612B', 'H619D', 'H61F2', 'H6641', 'H6811', 'H7067', 'H706A', 'H706B', 'H706C', 'H7075', 'H70C4', 'H8015'],
|
|
548
|
+
matterModels: ['H5085', 'H600B', 'H600D', 'H6022', 'H6099', 'H612B', 'H619D', 'H61D5', 'H61F2', 'H6641', 'H6811', 'H7067', 'H706A', 'H706B', 'H706C', 'H7075', 'H70C4', 'H8015'],
|
|
549
549
|
|
|
550
550
|
awsOutlet1617: ['H5080', 'H5083'],
|
|
551
551
|
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@homebridge-plugins/homebridge-govee",
|
|
3
3
|
"alias": "Govee",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"version": "11.
|
|
5
|
+
"version": "11.16.0",
|
|
6
6
|
"description": "Homebridge plugin to integrate Govee devices into HomeKit.",
|
|
7
7
|
"author": {
|
|
8
8
|
"name": "bwp91",
|
|
@@ -66,8 +66,8 @@
|
|
|
66
66
|
"pem": "^1.14.8"
|
|
67
67
|
},
|
|
68
68
|
"optionalDependencies": {
|
|
69
|
-
"@stoprocent/bluetooth-hci-socket": "^2.2.
|
|
70
|
-
"@stoprocent/noble": "^2.3.
|
|
69
|
+
"@stoprocent/bluetooth-hci-socket": "^2.2.5",
|
|
70
|
+
"@stoprocent/noble": "^2.3.16"
|
|
71
71
|
},
|
|
72
72
|
"devDependencies": {
|
|
73
73
|
"@antfu/eslint-config": "^7.4.3"
|