This commit is contained in:
flowzone-app[bot] 2024-01-08 13:25:40 +00:00 committed by GitHub
parent 48d288b715
commit d32987ab1f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 40 additions and 6 deletions

View File

@ -1,3 +1,31 @@
- commits:
- subject: Try MDNS lookup only if regular DNS lookup fails
hash: dec39a35d40532a82ac2f2bbcaa2c179b67d3d4a
body: >
This is meant to allow users to configure their device to
resolve `.local` queries via dnsmasq by modifying config.json, e.g. `dnsServers":
"/bob.local/172.17.0.33`.
This would fail before as MDNS lookups would always come first
footer:
Change-type: minor
change-type: minor
author: Felipe Lalanne
nested: []
- subject: Refactor mdns lookup code in app entry
hash: 7a39da92b7bb1537a6df3dec6ad665d35e891bcc
body: ""
footer:
Change-type: patch
change-type: patch
author: Felipe Lalanne
nested: []
version: 15.2.0
title: ""
date: 2024-01-08T13:25:37.100Z
- commits:
- subject: "docs: api: start-service: specify this endpoint affects the device"
hash: 096fdbc74ab4ca9a58603eec5774435ff07bedb1

View File

@ -4,6 +4,12 @@ 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/).
# v15.2.0
## (2024-01-08)
* Try MDNS lookup only if regular DNS lookup fails [Felipe Lalanne]
* Refactor mdns lookup code in app entry [Felipe Lalanne]
# v15.1.1
## (2024-01-02)

View File

@ -1 +1 @@
15.1.1
15.2.0

View File

@ -2,6 +2,6 @@ name: balena-supervisor
description: 'Balena Supervisor: balena''s agent on devices.'
joinable: false
type: sw.application
version: 15.1.1
version: 15.2.0
provides:
- slug: sw.compose.long-volume-syntax

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "balena-supervisor",
"version": "15.1.1",
"version": "15.2.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "balena-supervisor",
"version": "15.1.1",
"version": "15.2.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": "15.1.1",
"version": "15.2.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
@ -140,6 +140,6 @@
"yargs": "^15.4.1"
},
"versionist": {
"publishedAt": "2024-01-02T18:35:25.099Z"
"publishedAt": "2024-01-08T13:25:37.620Z"
}
}