homebridge-melcloud-control 4.0.1-beta.8 → 4.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
@@ -16,19 +16,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
16
16
  - do not configure it manually, always using Homebridge UI
17
17
  - required Homebridge v2.0.0 and above
18
18
  - v4 Added support for MELCloud Home.
19
- - after update the old MELCloud config must be reconfigured, just remove all devices from config and connect to MELCloud again
20
19
 
21
20
  ## Warning
22
21
 
23
22
  - Do not use Homebridge UI > v5.5.0 because of break config.json
24
- - After update to v4.x.x the old MELCloud config must be reconfigured, just remove all devices from config and connect to MELCloud again
23
+
24
+ ## [4.0.1] - (06.11.2025)
25
+
26
+ ## Changes
27
+
28
+ - fix start error for old MELCLoud after update
29
+ - bump dependencies
30
+ - redme updated
31
+ - cleanup
25
32
 
26
33
  ## [4.0.0] - (05.11.2025)
27
34
 
28
35
  ## Changes
29
36
 
30
37
  - added support for MELCloud Home ATA devices [#215](https://github.com/grzegorz914/homebridge-melcloud-control/issues/215)
31
- - after update the old MELCloud config must be reconfigured, just remove all devices from config and connect to MELCloud again
32
38
  - added error sensor
33
39
  - config schema updated
34
40
  - redme updated
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "displayName": "MELCloud Control",
3
3
  "name": "homebridge-melcloud-control",
4
- "version": "4.0.1-beta.8",
4
+ "version": "4.0.1",
5
5
  "description": "Homebridge plugin to control Mitsubishi Air Conditioner, Heat Pump and Energy Recovery Ventilation.",
6
6
  "license": "MIT",
7
7
  "author": "grzegorz914",
@@ -181,7 +181,7 @@ class MelCloudAta extends EventEmitter {
181
181
 
182
182
  return true;
183
183
  } catch (error) {
184
- throw new Error(`Check state error: ${error}`);
184
+ throw new Error(`Check state error: ${error.message}`);
185
185
  };
186
186
  };
187
187
 
@@ -268,7 +268,7 @@ class MelCloudAta extends EventEmitter {
268
268
  return;
269
269
  }
270
270
  } catch (error) {
271
- throw new Error(`Send data error: ${error}`);
271
+ throw new Error(`Send data error: ${error.message}`);
272
272
  }
273
273
  }
274
274
 
@@ -183,7 +183,7 @@ class MelCloudAtw extends EventEmitter {
183
183
 
184
184
  return true;
185
185
  } catch (error) {
186
- throw new Error(`Check state error: ${error}`);
186
+ throw new Error(`Check state error: ${error.message}`);
187
187
  };
188
188
  };
189
189
 
@@ -282,7 +282,7 @@ class MelCloudAtw extends EventEmitter {
282
282
  return;
283
283
  }
284
284
  } catch (error) {
285
- throw new Error(`Send data error: ${error}`);
285
+ throw new Error(`Send data error: ${error.message}`);
286
286
  }
287
287
  }
288
288
 
@@ -175,7 +175,7 @@ class MelCloudErv extends EventEmitter {
175
175
 
176
176
  return true;
177
177
  } catch (error) {
178
- throw new Error(`Check state error: ${error}`);
178
+ throw new Error(`Check state error: ${error.message}`);
179
179
  };
180
180
  };
181
181
 
@@ -276,7 +276,7 @@ class MelCloudErv extends EventEmitter {
276
276
  return;
277
277
  }
278
278
  } catch (error) {
279
- throw new Error(`Send data error: ${error}`);
279
+ throw new Error(`Send data error: ${error.message}`);
280
280
  }
281
281
  }
282
282