hueget 0.7.0 → 0.7.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -4,6 +4,14 @@ See the [Readme file](https://github.com/jsiegenthaler/hueget/blob/master/README
4
4
 
5
5
  # Bug Fixes and Improvements
6
6
 
7
+ ## 0.7.2 (2024-08-17)
8
+ * Bumped dependencies: "axios": "^1.7.4"
9
+
10
+ ## 0.7.1 (2024-04-06)
11
+ * Bumped dependencies: "axios": "^1.6.8"
12
+ * Bumped dependencies: "express": "^4.19.2"
13
+ * Bumped dependencies: "stdio": "^2.1.3"
14
+
7
15
  ## 0.7.0 (2024-01-06)
8
16
  * Added toggle capability for lights and groups
9
17
  * Bumped dependencies: "axios": "^1.6.5"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hueget",
3
- "version": "0.7.0",
3
+ "version": "0.7.2",
4
4
  "description": "A simple API that converts the Philips Hue API PUT to GET requests, allowing control of Philips Hue lights via http GET requests",
5
5
  "main": "hueget.js",
6
6
  "scripts": {
@@ -25,9 +25,9 @@
25
25
  "author": "Jochen Siegenthaler (https://github.com/jsiegenthaler)",
26
26
  "license": "ISC",
27
27
  "dependencies": {
28
- "axios": "^1.6.5",
29
- "express": "^4.18.2",
30
- "stdio": "^2.1.1"
28
+ "axios": "^1.7.4",
29
+ "express": "^4.19.2",
30
+ "stdio": "^2.1.3"
31
31
  },
32
32
  "engines": {
33
33
  "node": "^20"