node-red-contrib-power-saver 4.1.0 → 4.1.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.
@@ -7,6 +7,10 @@ sidebarDepth: 1
7
7
 
8
8
  List the most significant changes.
9
9
 
10
+ ## 4.1.1
11
+
12
+ - Update dependencies
13
+
10
14
  ## 4.1.0
11
15
 
12
16
  - Fix bug with override function. It did not override longer than until next scheduled change. Now it overrides until set to auto again.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-red-contrib-power-saver",
3
- "version": "4.1.0",
3
+ "version": "4.1.1",
4
4
  "description": "A module for Node-RED that you can use to turn on and off a switch based on power prices",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -54,15 +54,15 @@
54
54
  "eslint": "^8.25.0",
55
55
  "expect": "^27.5.1",
56
56
  "mocha": "^9.2.0",
57
- "node-red": "^2.2.2",
57
+ "node-red": "^3.0.2",
58
58
  "node-red-node-test-helper": "^0.2.7",
59
59
  "sass-loader": "^12.6.0",
60
60
  "vuepress": "^2.0.0-beta.36"
61
61
  },
62
62
  "dependencies": {
63
- "floating-vue": "^2.0.0-beta.6",
63
+ "floating-vue": "^2.0.0-beta.20",
64
64
  "lodash.clonedeep": "^4.5.0",
65
- "luxon": "^2.3.1",
65
+ "luxon": "^3.1.0",
66
66
  "nano-time": "^1.0.0",
67
67
  "node-fetch": "^2.6.7"
68
68
  }
@@ -1,6 +1,4 @@
1
- const fetch = require("node-fetch");
2
-
3
- const { getTariff, ping } = require("./elvia-api.js");
1
+ const { getTariff, ping } = require("./elvia-api");
4
2
 
5
3
  module.exports = function (RED) {
6
4
  function PsElviaTariffNode(config) {