diff --git a/CHANGELOG.md b/CHANGELOG.md index 28cf32d..0a24583 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ See the [Readme file](https://github.com/jsiegenthaler/hueget/blob/master/README ## Current In-Work List (Future Releases) Cleanup to get ready for v1.0.0 +## 0.5.3 (2022-01-21) +* Bumped dependencies (axios) + ## 0.5.2 (2022-01-17) * Bumped dependencies (axios, express) diff --git a/package-lock.json b/package-lock.json index 6c9a656..90a99b9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "hueget", - "version": "0.5.2", + "version": "0.5.3", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -19,11 +19,11 @@ "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" }, "axios": { - "version": "0.24.0", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.24.0.tgz", - "integrity": "sha512-Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA==", + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.25.0.tgz", + "integrity": "sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g==", "requires": { - "follow-redirects": "^1.14.4" + "follow-redirects": "^1.14.7" } }, "body-parser": { diff --git a/package.json b/package.json index 8398cdf..6692c5a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "hueget", - "version": "0.5.2", + "version": "0.5.3", "description": "A simple API that converts the Philips Hue API PUT to GET requests, allowing control of Philips Hue lights via http GET requests", "main": "hueget.js", "scripts": { @@ -25,7 +25,7 @@ "author": "Jochen Siegenthaler (https://github.com/jsiegenthaler)", "license": "ISC", "dependencies": { - "axios": "^0.24.0", + "axios": "^0.25.0", "express": "^4.17.2", "stdio": "^2.1.1" },