@homebridge/hap-client 2.0.5 → 2.0.6
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 +6 -0
- package/LICENSE +1 -1
- package/dist/eventedHttpClient/httpParser.d.ts +1 -1
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to `@homebridge/hap-client` will be documented in this file. This project tries to adhere to [Semantic Versioning](http://semver.org/).
|
|
4
4
|
|
|
5
|
+
## v2.0.6 (2025-03-22)
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- updated dependencies
|
|
10
|
+
|
|
5
11
|
## v2.0.5 (2024-12-04)
|
|
6
12
|
|
|
7
13
|
### Changed
|
package/LICENSE
CHANGED
|
@@ -21,6 +21,6 @@ declare namespace httpMessageParser {
|
|
|
21
21
|
var _responseLineRegex: RegExp;
|
|
22
22
|
var _headerNewlineRegex: RegExp;
|
|
23
23
|
var _boundaryRegex: RegExp;
|
|
24
|
-
var _createBuffer: (data: any) => Buffer
|
|
24
|
+
var _createBuffer: (data: any) => Buffer<any>;
|
|
25
25
|
}
|
|
26
26
|
export default httpMessageParser;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@homebridge/hap-client",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.6",
|
|
4
4
|
"description": "A client for HAP-NodeJS.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -37,21 +37,21 @@
|
|
|
37
37
|
},
|
|
38
38
|
"homepage": "https://github.com/homebridge/hap-client/blob/latest#readme",
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"axios": "1.
|
|
40
|
+
"axios": "1.8.4",
|
|
41
41
|
"bonjour-service": "1.3.0",
|
|
42
42
|
"decamelize": "5.0.1",
|
|
43
|
-
"inflection": "3.0.
|
|
43
|
+
"inflection": "3.0.2",
|
|
44
44
|
"source-map-support": "0.5.21"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@types/node": "^22.
|
|
47
|
+
"@types/node": "^22.13.11",
|
|
48
48
|
"@types/source-map-support": "^0.5.10",
|
|
49
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
50
|
-
"@typescript-eslint/parser": "^8.
|
|
49
|
+
"@typescript-eslint/eslint-plugin": "^8.27.0",
|
|
50
|
+
"@typescript-eslint/parser": "^8.27.0",
|
|
51
51
|
"eslint": "^8.57.0",
|
|
52
|
-
"eslint-plugin-jest": "^28.
|
|
53
|
-
"hap-nodejs": "^1.1.
|
|
52
|
+
"eslint-plugin-jest": "^28.11.0",
|
|
53
|
+
"hap-nodejs": "^1.1.1",
|
|
54
54
|
"ts-node": "^10.9.2",
|
|
55
|
-
"typescript": "^5.
|
|
55
|
+
"typescript": "^5.8.2"
|
|
56
56
|
}
|
|
57
|
-
}
|
|
57
|
+
}
|