homebridge-myplace 2.2.0 → 2.2.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
@@ -1,4 +1,4 @@
1
1
  ### Homebridge-myplace - An independent plugin for Homebridge bringing Advantage Air MyPlace system, its smaller siblings (E-zone, MyAir, MyAir4, etc) and its cousins (e.g. Fujitsu AnywAir) to Homekit
2
- ##### v2.2.0 (2025-06-27)
2
+ ##### v2.2.1 (2025-06-28)
3
3
 
4
- ###### (1) Simplified the setup process
4
+ ###### (1) Fixed buffer overflow for large system
@@ -1,4 +1,8 @@
1
1
  ### Homebridge-myplace - An independent plugin for Homebridge bringing Advantage Air MyPlace system, its smaller siblings (E-zone, MyAir, MyAir4, etc) and its cousins (e.g. Fujitsu AnywAir) to Homekit
2
+ ##### v2.2.1 (2025-06-28)
3
+
4
+ ###### (1) Fixed buffer overflow for large system
5
+
2
6
  ##### v2.2.0 (2025-06-27)
3
7
 
4
8
  ###### (1) Simplified the setup process
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "homebridge-myplace",
3
3
  "description": "Exec Plugin bringing Advanatge Air MyPlace system to Homekit",
4
- "version": "2.2.0",
4
+ "version": "2.2.1",
5
5
  "license": "MIT",
6
6
  "author": {
7
7
  "name": "Ung Sing"
@@ -24,7 +24,7 @@
24
24
  "fakegato-history": ">=0.6.1",
25
25
  "github-version-checker": ">=2.2.0",
26
26
  "latest-version": "^5.1.0",
27
- "moment": "*",
27
+ "moment": ">=2.29.2",
28
28
  "path": "^0.12.7",
29
29
  "userid": "^1.0.0",
30
30
  "which": "^2.0.2"
@@ -636,7 +636,7 @@ async function main({
636
636
  const myPlaceConfig = assembleMyPlaceConfig();
637
637
 
638
638
  console.log("DONE! createMyPlaceConfig completed successfully!");
639
- console.log(JSON.stringify(myPlaceConfig, null, 2));
639
+ console.log(JSON.stringify(myPlaceConfig));
640
640
  process.exit(0);
641
641
  }
642
642