homebridge-flume 3.0.0-beta.0 → 3.0.1

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,19 @@
2
2
 
3
3
  All notable changes to homebridge-flume will be documented in this file.
4
4
 
5
- ## BETA
5
+ ## 3.0.1 (2023-03-11)
6
+
7
+ ### Fixed
8
+
9
+ - Put `getLeakInfo()` into debug logging
10
+
11
+ ## 3.0.0 (2023-03-11)
6
12
 
7
13
  ### Breaking
8
14
 
9
15
  - Remove official support for Node 14
10
16
  - Remove option to disable plugin - this is now available in the Homebridge UI
11
17
  - 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
18
 
14
19
  ### Added
15
20
 
@@ -18,7 +23,7 @@ All notable changes to homebridge-flume will be documented in this file.
18
23
  ### Changed
19
24
 
20
25
  - 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
26
+ - Bump `node` recommended versions to v16.19.1 or v18.15.0
22
27
 
23
28
  ## 2.0.9 (2023-01-07)
24
29
 
@@ -315,7 +315,7 @@ export default class {
315
315
  }
316
316
 
317
317
  // Log the response if in debug mode
318
- this.log('[HTTP getLeakInfo()] %s.', JSON.stringify(res.data));
318
+ this.log.debug('[HTTP getLeakInfo()] %s.', JSON.stringify(res.data));
319
319
 
320
320
  // Parse the response
321
321
  return res.data.data[0];
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.1",
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
  }