homebridge-flume 2.0.9-beta.0 → 2.0.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 +4 -2
- package/lib/utils/lang-en.js +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -4,11 +4,13 @@ All notable changes to homebridge-flume will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
⚠️ Note that Node 14 will no longer be supported after April 2023
|
|
6
6
|
|
|
7
|
-
##
|
|
7
|
+
## 2.0.9 (2023-01-07)
|
|
8
8
|
|
|
9
9
|
### Changed
|
|
10
10
|
|
|
11
|
-
- Bump `
|
|
11
|
+
- Bump `axios` to v1.2.2
|
|
12
|
+
- Bump `homebridge` recommended version to v1.6.0 or v2.0.0-beta
|
|
13
|
+
- Bump `node` recommended versions to v14.21.2 or v16.19.0 or v18.13.0
|
|
12
14
|
|
|
13
15
|
## 2.0.8 (2022-10-16)
|
|
14
16
|
|
package/lib/utils/lang-en.js
CHANGED
|
@@ -42,7 +42,7 @@ export default {
|
|
|
42
42
|
'This plugin has been made with ♥ by bwp91 from the UK!',
|
|
43
43
|
'Check out my other Homebridge plugins! https://github.com/bwp91',
|
|
44
44
|
'Have time to give this plugin a review? https://bit.ly/hb-flume-review',
|
|
45
|
-
'This plugin currently has a 4☆ rating on HOOBS!
|
|
45
|
+
'This plugin currently has a 4☆ rating on HOOBS! https://bit.ly/hb-flume-review',
|
|
46
46
|
'Want to see this plugin in your own language? Let me know!',
|
|
47
47
|
],
|
|
48
48
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "homebridge-flume",
|
|
3
3
|
"alias": "Flume",
|
|
4
|
-
"version": "2.0.9
|
|
4
|
+
"version": "2.0.9",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Ben Potter",
|
|
7
7
|
"email": "bwp91@icloud.com"
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
"rebuild": "rm -rf package-lock.json && rm -rf node_modules && npm install"
|
|
29
29
|
},
|
|
30
30
|
"engines": {
|
|
31
|
-
"homebridge": "^1.
|
|
32
|
-
"node": "^14.21.
|
|
31
|
+
"homebridge": "^1.6.0 || 2.0.0-beta.0",
|
|
32
|
+
"node": "^14.21.2 || ^16.19.0 || ^18.13.0"
|
|
33
33
|
},
|
|
34
34
|
"repository": {
|
|
35
35
|
"type": "git",
|
|
@@ -58,14 +58,14 @@
|
|
|
58
58
|
],
|
|
59
59
|
"dependencies": {
|
|
60
60
|
"@homebridge/plugin-ui-utils": "^0.0.19",
|
|
61
|
-
"axios": "^1.
|
|
61
|
+
"axios": "^1.2.2",
|
|
62
62
|
"jwt-decode": "^3.1.2"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
65
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
66
66
|
"eslint-plugin-import": "^2.26.0",
|
|
67
|
-
"eslint-plugin-import-newlines": "^1.
|
|
68
|
-
"eslint-plugin-sort-exports": "^0.
|
|
69
|
-
"eslint": "^8.
|
|
67
|
+
"eslint-plugin-import-newlines": "^1.3.0",
|
|
68
|
+
"eslint-plugin-sort-exports": "^0.8.0",
|
|
69
|
+
"eslint": "^8.31.0"
|
|
70
70
|
}
|
|
71
71
|
}
|