homebridge-smartthings-oauth 1.0.5 → 1.0.6

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +5 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.
3
3
 
4
4
  ## [Released]
5
5
 
6
+ ## [1.0.6]
7
+ ### Changed
8
+ - Updated minimum required Node.js version to v20.0.0. Adjusted `engines` field in `package.json` accordingly.
9
+ - Tested compatibility with Node.js v20.
10
+
6
11
  ## [1.0.5]
7
12
  ### Changed
8
13
  - Corrected and updated CHANGELOG.md details for version 1.0.4.
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "private": false,
3
3
  "displayName": "Homebridge Smartthings oAuth Plugin",
4
4
  "name": "homebridge-smartthings-oauth",
5
- "version": "1.0.5",
5
+ "version": "1.0.6",
6
6
  "description": "Connects SmartThings devices to Homebridge. Automatically discovers devices.",
7
7
  "license": "Apache-2.0",
8
8
  "repository": {
@@ -13,7 +13,7 @@
13
13
  "url": "https://github.com/aziz66/homebridge-smartthings/issues"
14
14
  },
15
15
  "engines": {
16
- "node": ">=18.0.0",
16
+ "node": ">=20.0.0",
17
17
  "homebridge": ">=1.3.5"
18
18
  },
19
19
  "main": "dist/index.js",