homebridge-tasmota-control 0.4.1 → 0.4.2

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
@@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.
3
3
 
4
4
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
5
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
+
7
+ ## [0.4.2] - (25.04.2022)
8
+ ## Changes
9
+ - update dependencies
10
+
6
11
  ## [0.4.1] - (08.04.2022)
7
12
  ## Changes
8
13
  - update dependencies
package/index.js CHANGED
@@ -98,7 +98,7 @@ class tasmotaDevice {
98
98
  this.axiosInstance = axios.create({
99
99
  method: 'GET',
100
100
  baseURL: url,
101
- timeout: 5000
101
+ timeout: 10000
102
102
  });
103
103
 
104
104
  //check if the directory exists, if not then create it
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "displayName": "Tasmota Control",
3
3
  "name": "homebridge-tasmota-control",
4
- "version": "0.4.1",
4
+ "version": "0.4.2",
5
5
  "description": "Homebridge plugin (https://github.com/homebridge/homebridge) to control Tasmota flashed devices.",
6
6
  "license": "MIT",
7
7
  "author": "grzegorz914",
@@ -31,7 +31,7 @@
31
31
  "homebridge": ">=1.3.0"
32
32
  },
33
33
  "dependencies": {
34
- "axios": "^0.26.1"
34
+ "axios": "^0.27.0"
35
35
  },
36
36
  "keywords": [
37
37
  "homebridge",
@@ -43,4 +43,4 @@
43
43
  "scripts": {
44
44
  "test": "echo \"Error: no test specified\" && exit 1"
45
45
  }
46
- }
46
+ }