diff --git a/.versionbot/CHANGELOG.yml b/.versionbot/CHANGELOG.yml index 797cf862..3a54a88b 100644 --- a/.versionbot/CHANGELOG.yml +++ b/.versionbot/CHANGELOG.yml @@ -1,3 +1,29 @@ +- commits: + - subject: Read hostname from config.json with container /etc/hostname as backup + hash: a7a0821a3e23142265904806df5d0a6ecd2ed4b5 + body: > + We don't need to read the host's hostname through + /mnt/root/etc/hostname, + + because the hostname is written to config.json on a change. When the hostname + + has never changed, it won't be found in config.json, so we can default to + + the Supervisor container's /etc/hostname as it will match the host's + + /etc/hostname, the network mode being `host`. + footer: + Closes: "#1968" + closes: "#1968" + Change-type: patch + change-type: patch + Signed-off-by: Christina Wang + signed-off-by: Christina Wang + author: Christina Wang + nested: [] + version: 14.0.6 + title: "'Read hostname from config.json with container /etc/hostname as backup'" + date: 2022-06-15T19:19:57.666Z - commits: - subject: Add custom DTB support for Variscite Dart DT family hash: dfb6bcf0e6a5b32c2def588dde1a8849a11c683c diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b8f47a0..4687904d 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/). +# v14.0.6 +## (2022-06-15) + +* Read hostname from config.json with container /etc/hostname as backup [Christina Wang] + # v14.0.5 ## (2022-06-14) diff --git a/VERSION b/VERSION index 6dbeddf9..85f5c201 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -14.0.5 \ No newline at end of file +14.0.6 \ No newline at end of file diff --git a/balena.yml b/balena.yml index 7a06b95e..9b5f1f52 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: 14.0.5 +version: 14.0.6 provides: - slug: sw.compose.long-volume-syntax diff --git a/package-lock.json b/package-lock.json index aca5e37c..1765ca6b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "balena-supervisor", - "version": "14.0.5", + "version": "14.0.6", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 7ad32fe0..34574384 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": "14.0.5", + "version": "14.0.6", "license": "Apache-2.0", "repository": { "type": "git", @@ -138,6 +138,6 @@ } }, "versionist": { - "publishedAt": "2022-06-14T19:29:38.386Z" + "publishedAt": "2022-06-15T19:19:59.878Z" } }