homebridge-eosstb 2.2.3 → 2.2.4
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 +5 -0
- package/index.js +2 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,11 @@ Please restart Homebridge after every plugin update.
|
|
|
10
10
|
* Implement refreshToken capabilities
|
|
11
11
|
|
|
12
12
|
|
|
13
|
+
## 2.2.4 (2023-03-11)
|
|
14
|
+
* Bumped dependency "qs": "^6.11.1",
|
|
15
|
+
* Bumped dependency "node": ">=16.19.1"
|
|
16
|
+
|
|
17
|
+
|
|
13
18
|
## 2.2.3 (2023-03-01)
|
|
14
19
|
* Bumped dependency "axios": "^1.3.4",
|
|
15
20
|
|
package/index.js
CHANGED
|
@@ -12,11 +12,11 @@ const PLUGIN_VERSION = packagejson.version;
|
|
|
12
12
|
const fs = require('fs');
|
|
13
13
|
const fsPromises = require('fs').promises;
|
|
14
14
|
const path = require('path');
|
|
15
|
-
const debug = require('debug')('eosstb') // https://github.com/debug-js/debug
|
|
15
|
+
const debug = require('debug')('eosstb'); // https://github.com/debug-js/debug
|
|
16
16
|
// good example of debug usage https://github.com/mqttjs/MQTT.js/blob/main/lib/client.js
|
|
17
17
|
|
|
18
18
|
const mqtt = require('mqtt'); // https://github.com/mqttjs
|
|
19
|
-
const qs = require('qs')
|
|
19
|
+
const qs = require('qs'); // https://github.com/ljharb/qs
|
|
20
20
|
|
|
21
21
|
|
|
22
22
|
// axios-cookiejar-support v2.0.2 syntax
|
package/package.json
CHANGED
|
@@ -3,20 +3,20 @@
|
|
|
3
3
|
"displayName": "Homebridge EOSSTB",
|
|
4
4
|
"description": "homebridge-plugin - Add your set-top box to Homekit (for Magenta AT, Telenet BE, Sunrise CH, Virgin Media GB & IE, Ziggo NL)",
|
|
5
5
|
"author": "Jochen Siegenthaler (https://github.com/jsiegenthaler/)",
|
|
6
|
-
"version": "2.2.
|
|
6
|
+
"version": "2.2.4",
|
|
7
7
|
"platformname": "eosstb",
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"axios-cookiejar-support": "^4.0.6",
|
|
10
10
|
"axios": "^1.3.4",
|
|
11
11
|
"debug": "^4.3.4",
|
|
12
12
|
"mqtt": "^4.3.7",
|
|
13
|
-
"qs": "^6.11.
|
|
13
|
+
"qs": "^6.11.1",
|
|
14
14
|
"tough-cookie": "^4.1.2"
|
|
15
15
|
},
|
|
16
16
|
"deprecated": false,
|
|
17
17
|
"engines": {
|
|
18
18
|
"homebridge": ">=1.6.0",
|
|
19
|
-
"node": ">=16.
|
|
19
|
+
"node": ">=16.19.1"
|
|
20
20
|
},
|
|
21
21
|
"homepage": "https://github.com/jsiegenthaler/homebridge-eosstb#readme",
|
|
22
22
|
"keywords": [
|