This commit is contained in:
flowzone-app[bot] 2024-08-28 22:47:12 +00:00 committed by GitHub
parent da6f4bdbaf
commit 5a1c81a408
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 47 additions and 6 deletions

View File

@ -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 <christina@balena.io>
signed-off-by: Christina Ying Wang <christina@balena.io>
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

View File

@ -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)

View File

@ -1 +1 @@
16.5.8
16.6.0

View File

@ -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

4
package-lock.json generated
View File

@ -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",

View File

@ -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"
}
}