@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 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
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2023-2024 Homebridge
3
+ Copyright (c) 2023-2025 Homebridge
4
4
  Copyright (c) 2020-2023 oznu <dev@oz.nu>
5
5
 
6
6
  Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -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.5",
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.7.9",
40
+ "axios": "1.8.4",
41
41
  "bonjour-service": "1.3.0",
42
42
  "decamelize": "5.0.1",
43
- "inflection": "3.0.0",
43
+ "inflection": "3.0.2",
44
44
  "source-map-support": "0.5.21"
45
45
  },
46
46
  "devDependencies": {
47
- "@types/node": "^22.10.1",
47
+ "@types/node": "^22.13.11",
48
48
  "@types/source-map-support": "^0.5.10",
49
- "@typescript-eslint/eslint-plugin": "^8.15.0",
50
- "@typescript-eslint/parser": "^8.15.0",
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.9.0",
53
- "hap-nodejs": "^1.1.0",
52
+ "eslint-plugin-jest": "^28.11.0",
53
+ "hap-nodejs": "^1.1.1",
54
54
  "ts-node": "^10.9.2",
55
- "typescript": "^5.6.3"
55
+ "typescript": "^5.8.2"
56
56
  }
57
- }
57
+ }