mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2025-02-20 17:52:51 +00:00
v12.11.21
This commit is contained in:
parent
922129b954
commit
4f980e0056
@ -1,3 +1,27 @@
|
||||
- commits:
|
||||
- subject: Fix `.local` dns resolution when returning multiple addresses
|
||||
hash: 39c667803d93182c595870352a597b9c07e1c9d1
|
||||
body: >
|
||||
The supervisor performs its own local resolution for `.local`
|
||||
|
||||
addresses due to a limitation in
|
||||
[musl](https://wiki.musl-libc.org/future-ideas.html).
|
||||
|
||||
The resolution function was not following exactly the nodejs [dns.lookup
|
||||
|
||||
specification](https://nodejs.org/api/dns.html#dnslookuphostname-options-callback)
|
||||
|
||||
which could cause certain clients to fail (in this case happy-eyeballs).
|
||||
This
|
||||
|
||||
updates the function to follow the specification.
|
||||
footer:
|
||||
Change-type: patch
|
||||
change-type: patch
|
||||
author: Felipe Lalanne
|
||||
nested: []
|
||||
version: 12.11.21
|
||||
date: 2021-12-16T15:03:16.595Z
|
||||
- commits:
|
||||
- subject: Skip initial apply until a target has been set
|
||||
hash: 9015b0e22f7edf973798d5ace3d60e32d43bb042
|
||||
|
@ -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/).
|
||||
|
||||
# v12.11.21
|
||||
## (2021-12-16)
|
||||
|
||||
* Fix `.local` dns resolution when returning multiple addresses [Felipe Lalanne]
|
||||
|
||||
# v12.11.20
|
||||
## (2021-12-13)
|
||||
|
||||
|
@ -2,4 +2,4 @@ name: balena-supervisor
|
||||
description: 'Balena Supervisor: balena''s agent on devices.'
|
||||
joinable: false
|
||||
type: sw.application
|
||||
version: 12.11.20
|
||||
version: 12.11.21
|
||||
|
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "balena-supervisor",
|
||||
"version": "12.11.20",
|
||||
"version": "12.11.21",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
@ -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": "12.11.20",
|
||||
"version": "12.11.21",
|
||||
"license": "Apache-2.0",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
@ -139,6 +139,6 @@
|
||||
}
|
||||
},
|
||||
"versionist": {
|
||||
"publishedAt": "2021-12-13T12:33:34.924Z"
|
||||
"publishedAt": "2021-12-16T15:03:16.824Z"
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user