@homebridge-plugins/homebridge-wemo 7.3.1-beta.0 → 7.4.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,7 +2,14 @@
2
2
 
3
3
  All notable changes to `@homebridge-plugins/homebridge-wemo` will be documented in this file.
4
4
 
5
- ## v7.3.1 (Pending Release)
5
+ ## v7.4.0 (2026-04-12)
6
+
7
+ ### Changed
8
+
9
+ - dependency updates
10
+ - remove support for node `v20`
11
+
12
+ ## v7.3.1 (2026-04-05)
6
13
 
7
14
  ### Changed
8
15
 
package/README.md CHANGED
@@ -33,7 +33,7 @@ Homebridge plugin to integrate Wemo devices into HomeKit
33
33
  ### Prerequisites
34
34
 
35
35
  - To use this plugin, you will need to already have:
36
- - [Node](https://nodejs.org): latest version of `v20`, `v22` or `v24` - any other major version is not supported.
36
+ - [Node](https://nodejs.org): latest version of `v22` or `v24` - any other major version is not supported.
37
37
  - [Homebridge](https://homebridge.io): `v1.6` - refer to link for more information and installation instructions.
38
38
  - For the UPnP connection, make sure your Homebridge instance has an allocated IP from the same IP network or VLAN as your Wemo devices. Otherwise, you should disable the UPnP connection to avoid connection errors.
39
39
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@homebridge-plugins/homebridge-wemo",
3
3
  "alias": "Wemo",
4
4
  "type": "module",
5
- "version": "7.3.1-beta.0",
5
+ "version": "7.4.0",
6
6
  "description": "Homebridge plugin to integrate Wemo devices into HomeKit.",
7
7
  "author": {
8
8
  "name": "bwp91",
@@ -48,7 +48,7 @@
48
48
  "main": "lib/index.js",
49
49
  "engines": {
50
50
  "homebridge": "^1.6.0 || ^2.0.0-beta.0",
51
- "node": "^20 || ^22 || ^24"
51
+ "node": "^22 || ^24"
52
52
  },
53
53
  "scripts": {
54
54
  "lint": "eslint . --max-warnings=0",
@@ -56,14 +56,14 @@
56
56
  },
57
57
  "dependencies": {
58
58
  "@homebridge/plugin-ui-utils": "^2.2.3",
59
- "axios": "^1.14.0",
59
+ "axios": "^1.15.0",
60
60
  "ip": "^2.0.1",
61
61
  "node-ssdp": "^4.0.1",
62
- "p-queue": "^9.1.1",
62
+ "p-queue": "^9.1.2",
63
63
  "xml2js": "^0.6.2",
64
64
  "xmlbuilder": "^15.1.1"
65
65
  },
66
66
  "devDependencies": {
67
- "@antfu/eslint-config": "^8.0.0"
67
+ "@antfu/eslint-config": "^8.1.1"
68
68
  }
69
69
  }