hueget 1.0.2 → 1.0.4

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
@@ -4,6 +4,13 @@ See the [Readme file](https://github.com/jsiegenthaler/hueget/blob/master/README
4
4
 
5
5
  # Bug Fixes and Improvements
6
6
 
7
+ ## 1.0.4 (2026-02-04)
8
+ * Bumped dependencies: "axios": "^1.13.4",
9
+
10
+ ## 1.0.3 (2025-12-13)
11
+ * Bumped dependencies: "axios": "^1.13.2",
12
+ * Bumped dependencies: "express": "^5.2.1",
13
+
7
14
  ## 1.0.2 (2025-10-05)
8
15
  * Addded support for node Maintenance LTS, Active LTS and Current versions
9
16
  * Added some small Readme improvements
package/README.md CHANGED
@@ -82,7 +82,7 @@ $ node /home/pi/node_modules/hueget/hueget.js -i 192.168.0.101 -u UBxWZChHseyjeF
82
82
  ```
83
83
  A successful start of hueget (using the above command to specify ip address 192.168.0.100 and port 1234) will show:
84
84
  ```
85
- hueget v1.0.2
85
+ hueget v1.0.4
86
86
  commands will be sent to 192.168.0.101 with username UBxWZChHseyjeFwAkwgbdQ08x9XASWpanZZVg-mj
87
87
  listening on port 1234
88
88
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hueget",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "A simple API that converts the Philips Hue API PUT to GET requests, allowing control of Philips Hue lights, groups, sensors and more via http GET requests",
5
5
  "main": "hueget.js",
6
6
  "scripts": {
@@ -25,8 +25,8 @@
25
25
  "author": "Jochen Siegenthaler (https://github.com/jsiegenthaler)",
26
26
  "license": "ISC",
27
27
  "dependencies": {
28
- "axios": "^1.12.2",
29
- "express": "^5.1.0",
28
+ "axios": "^1.13.4",
29
+ "express": "^5.2.1",
30
30
  "stdio": "^2.1.3"
31
31
  },
32
32
  "engines": {