diff --git a/.versionbot/CHANGELOG.yml b/.versionbot/CHANGELOG.yml index c6d2b19da..ed6258c9e 100644 --- a/.versionbot/CHANGELOG.yml +++ b/.versionbot/CHANGELOG.yml @@ -1,3 +1,39 @@ +- commits: + - subject: Add support for redsocks dnsu2t config + hash: eaa07e97a9fd2089d1f6a2f3bdff74215cdee789 + body: | + Users may specify dnsu2t config by including a `dns` field + in the `proxy` section of PATCH /v1/device/host-config's body: + ``` + { + network: { + proxy: { + dns: '1.1.1.1:53', + } + } + } + ``` + + If `dns` is a string, ADDRESS and PORT are required and should be + in the format `ADDRESS:PORT`. The endpoint with error with + code 400 if either ADDRESS or PORT are missing. + + `dns` may also be a boolean. If true, defaults will be configured. + If false, the dns configuration will be removed. + + If `proxy` is patched to empty, `dns` will be removed regardless + of its current or input configs, as `dns` depends on an active + redsocks proxy to function. + footer: + Change-type: minor + change-type: minor + Signed-off-by: Christina Ying Wang + signed-off-by: Christina Ying Wang + author: Christina Ying Wang + nested: [] + version: 16.6.0 + title: "" + date: 2024-08-28T22:47:08.152Z - commits: - subject: Update webpack to v5.94.0 [SECURITY] hash: a480266c5603dde4db0d1630cf5b21748c204d14 diff --git a/CHANGELOG.md b/CHANGELOG.md index 5791c91c2..e4f0230ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY! This project adheres to [Semantic Versioning](http://semver.org/). +# v16.6.0 +## (2024-08-28) + +* Add support for redsocks dnsu2t config [Christina Ying Wang] + # v16.5.8 ## (2024-08-27) diff --git a/VERSION b/VERSION index 088c805bc..fe194a264 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -16.5.8 \ No newline at end of file +16.6.0 \ No newline at end of file diff --git a/balena.yml b/balena.yml index 726a032ad..0f4fd7506 100644 --- a/balena.yml +++ b/balena.yml @@ -2,6 +2,6 @@ name: balena-supervisor description: 'Balena Supervisor: balena''s agent on devices.' joinable: false type: sw.application -version: 16.5.8 +version: 16.6.0 provides: - slug: sw.compose.long-volume-syntax diff --git a/package-lock.json b/package-lock.json index 70f712d48..c379018cb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "balena-supervisor", - "version": "16.5.8", + "version": "16.6.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "balena-supervisor", - "version": "16.5.8", + "version": "16.6.0", "license": "Apache-2.0", "dependencies": { "@balena/systemd": "^0.5.0", diff --git a/package.json b/package.json index 21f44e813..19aafa18b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "balena-supervisor", "description": "This is balena's Supervisor, a program that runs on IoT devices and has the task of running user Apps (which are Docker containers), and updating them as the balena API informs it to.", - "version": "16.5.8", + "version": "16.6.0", "license": "Apache-2.0", "repository": { "type": "git", @@ -135,6 +135,6 @@ "yargs": "^17.7.2" }, "versionist": { - "publishedAt": "2024-08-27T22:41:40.241Z" + "publishedAt": "2024-08-28T22:47:08.664Z" } }