homebridge-nuheat2 1.2.7 → 1.2.9

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
@@ -4,6 +4,18 @@ All notable changes to this project should be documented in this file
4
4
 
5
5
  ## [Unreleased]
6
6
 
7
+ ## [1.2.9] - 2026-04-15
8
+
9
+ ### Fixed
10
+
11
+ - Remove the published `homebridge` peer dependency so verification installs no longer pull in `homebridge` and `hap-nodejs`
12
+
13
+ ## [1.2.8] - 2026-04-15
14
+
15
+ ### Fixed
16
+
17
+ - Correct `config.schema.json` to use object-level `required` arrays so Homebridge verification accepts the schema
18
+
7
19
  ## [1.2.7] - 2026-04-15
8
20
 
9
21
  ### Added
@@ -4,23 +4,25 @@
4
4
  "singular": false,
5
5
  "schema": {
6
6
  "type": "object",
7
+ "required": [
8
+ "name",
9
+ "email",
10
+ "password"
11
+ ],
7
12
  "properties": {
8
13
  "name": {
9
14
  "title": "Name",
10
15
  "type": "string",
11
- "required": true,
12
16
  "default": "NuHeat"
13
17
  },
14
18
  "email": {
15
19
  "title": "email",
16
20
  "type": "string",
17
- "required": true,
18
21
  "format": "email"
19
22
  },
20
23
  "password": {
21
24
  "title": "password",
22
- "type": "string",
23
- "required": true
25
+ "type": "string"
24
26
  },
25
27
  "clientId": {
26
28
  "title": "Nuheat Client ID",
@@ -43,11 +45,13 @@
43
45
  "type": "array",
44
46
  "items": {
45
47
  "type": "object",
48
+ "required": [
49
+ "serialNumber"
50
+ ],
46
51
  "properties": {
47
52
  "serialNumber": {
48
53
  "title": "Serial Number",
49
- "type": "string",
50
- "required": true
54
+ "type": "string"
51
55
  },
52
56
  "disabled": {
53
57
  "title": "Disabled",
@@ -70,11 +74,13 @@
70
74
  "type": "array",
71
75
  "items": {
72
76
  "type": "object",
77
+ "required": [
78
+ "groupName"
79
+ ],
73
80
  "properties": {
74
81
  "groupName": {
75
82
  "title": "Group Name",
76
- "type": "string",
77
- "required": true
83
+ "type": "string"
78
84
  },
79
85
  "disabled": {
80
86
  "title": "Disabled",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "homebridge-nuheat2",
3
- "version": "1.2.7",
3
+ "version": "1.2.9",
4
4
  "description": "Homebridge Platform for NuHeat Signature Thermostats",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -42,9 +42,6 @@
42
42
  "ws": "^7.5.10",
43
43
  "tough-cookie": "^4.1.3"
44
44
  },
45
- "peerDependencies": {
46
- "homebridge": "^1.8.0 || ^2.0.0-beta.0"
47
- },
48
45
  "engines": {
49
46
  "node": "^18.20.4 || ^20.18.0 || ^22.0.0 || ^24.0.0",
50
47
  "homebridge": "^1.8.0 || ^2.0.0-beta.0"