mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-18 21:27:54 +00:00
v15.2.0
This commit is contained in:
parent
48d288b715
commit
d32987ab1f
@ -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
|
||||
|
@ -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)
|
||||
|
||||
|
@ -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
4
package-lock.json
generated
@ -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",
|
||||
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user