@homebridge-plugins/homebridge-govee 11.7.0 → 11.8.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 CHANGED
@@ -2,6 +2,16 @@
2
2
 
3
3
  All notable changes to homebridge-govee will be documented in this file.
4
4
 
5
+ ## v11.8.0 (2025-08-29)
6
+
7
+ ### Notable Changes
8
+
9
+ - added light models: `H808A`, `H7076`, `H6011`, `H702B`
10
+
11
+ ### Other Changes
12
+
13
+ - updated dependencies
14
+
5
15
  ## v11.7.0 (2025-07-26)
6
16
 
7
17
  ### Notable Changes
@@ -78,4 +78,8 @@ export default class {
78
78
  await peripheral.disconnectAsync()
79
79
  accessory.logDebug('disconnected from device - all done')
80
80
  }
81
+
82
+ stopScan() {
83
+ btClient.stopScanning()
84
+ }
81
85
  }
package/lib/platform.js CHANGED
@@ -788,6 +788,11 @@ export default class {
788
788
  clearInterval(this.refreshAWSInterval)
789
789
  }
790
790
 
791
+ // Stop scanning if the BLE client is running
792
+ if (this.bleClient) {
793
+ this.bleClient.stopScan()
794
+ }
795
+
791
796
  // Close the LAN client
792
797
  this.lanClient.close()
793
798
  } catch (err) {
@@ -140,6 +140,7 @@ export default {
140
140
  'H600C',
141
141
  'H600D',
142
142
  'H6010',
143
+ 'H6011',
143
144
  'H6013',
144
145
  'H601A',
145
146
  'H601B',
@@ -370,6 +371,7 @@ export default {
370
371
  'H7025',
371
372
  'H7028',
372
373
  'H7029',
374
+ 'H702B',
373
375
  'H7031',
374
376
  'H7032',
375
377
  'H7033',
@@ -407,6 +409,7 @@ export default {
407
409
  'H706C',
408
410
  'H7070',
409
411
  'H7075',
412
+ 'H7076',
410
413
  'H7078',
411
414
  'H7086',
412
415
  'H7090',
@@ -438,6 +441,7 @@ export default {
438
441
  'H805B',
439
442
  'H805C',
440
443
  'H8072',
444
+ 'H808A',
441
445
  'H80C4',
442
446
  'H8604',
443
447
  'HXXXX', // placeholder for LAN-only configured models
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.7.0",
5
+ "version": "11.8.0",
6
6
  "description": "Homebridge plugin to integrate Govee devices into HomeKit.",
7
7
  "author": {
8
8
  "name": "bwp91",
@@ -64,10 +64,10 @@
64
64
  "pem": "^1.14.8"
65
65
  },
66
66
  "optionalDependencies": {
67
- "@stoprocent/bluetooth-hci-socket": "^1.5.2",
68
- "@stoprocent/noble": "^1.19.1"
67
+ "@stoprocent/bluetooth-hci-socket": "^2.2.3",
68
+ "@stoprocent/noble": "^2.3.5"
69
69
  },
70
70
  "devDependencies": {
71
- "@antfu/eslint-config": "^5.0.0"
71
+ "@antfu/eslint-config": "^5.2.1"
72
72
  }
73
73
  }