homebridge-flume 3.0.0-beta.0 → 3.0.0

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,14 +2,13 @@
2
2
 
3
3
  All notable changes to homebridge-flume will be documented in this file.
4
4
 
5
- ## BETA
5
+ ## 3.0.0 (2023-03-11)
6
6
 
7
7
  ### Breaking
8
8
 
9
9
  - Remove official support for Node 14
10
10
  - Remove option to disable plugin - this is now available in the Homebridge UI
11
11
  - Remove option for debug logging - this will be enabled when using a beta version of the plugin
12
- - Remove individual accessory logging options to simplify the config
13
12
 
14
13
  ### Added
15
14
 
@@ -18,7 +17,7 @@ All notable changes to homebridge-flume will be documented in this file.
18
17
  ### Changed
19
18
 
20
19
  - Fix a potential login issue that might be terminating the process incorrectly
21
- - Bump `node` recommended versions to v16.19.1 or v18.14.2
20
+ - Bump `node` recommended versions to v16.19.1 or v18.15.0
22
21
 
23
22
  ## 2.0.9 (2023-01-07)
24
23
 
package/lib/platform.js CHANGED
@@ -207,7 +207,6 @@ export default class {
207
207
  this.log.warn('***** %s. *****', parseError(err, [
208
208
  platformLang.noCreds,
209
209
  platformLang.noDevices,
210
- platformLang.disabled,
211
210
  ]));
212
211
  this.pluginShutdown();
213
212
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "homebridge-flume",
3
3
  "alias": "Flume",
4
- "version": "3.0.0-beta.0",
4
+ "version": "3.0.0",
5
5
  "author": {
6
6
  "name": "Ben Potter",
7
7
  "email": "bwp91@icloud.com"
@@ -29,7 +29,7 @@
29
29
  },
30
30
  "engines": {
31
31
  "homebridge": "^1.6.0 || 2.0.0-beta.0",
32
- "node": "^16.19.1 || ^18.14.2"
32
+ "node": "^16.19.1 || ^18.15.0"
33
33
  },
34
34
  "repository": {
35
35
  "type": "git",
@@ -66,6 +66,6 @@
66
66
  "eslint-plugin-import": "^2.27.5",
67
67
  "eslint-plugin-import-newlines": "^1.3.1",
68
68
  "eslint-plugin-sort-exports": "^0.8.0",
69
- "eslint": "^8.35.0"
69
+ "eslint": "^8.36.0"
70
70
  }
71
71
  }