diff --git a/.versionbot/CHANGELOG.yml b/.versionbot/CHANGELOG.yml index ec2efad8..79169178 100644 --- a/.versionbot/CHANGELOG.yml +++ b/.versionbot/CHANGELOG.yml @@ -1,3 +1,21 @@ +- commits: + - subject: Do not send name as part of the current state + hash: 99efd12acd05290b5fc2ae74da3226d150dc86e6 + body: | + This fixes a race condition that could occur with the first current + state report, where if the device managed to send the current state + report first, then the device name on the cloud would be set to `local` + (see #1959). + footer: + Closes: "#1959" + closes: "#1959" + Change-type: patch + change-type: patch + author: Felipe Lalanne + nested: [] + version: 14.0.3 + title: "'Do not send name as part of the current state'" + date: 2022-06-07T19:53:30.522Z - commits: - subject: Don't use config.get for appId when checking locks in host config PATCH hash: be1c01039aea081e5beb01f72ef1c8880a736924 diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ace60e3..aacf773d 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.3 +## (2022-06-07) + +* Do not send name as part of the current state [Felipe Lalanne] + # v14.0.2 ## (2022-06-06) diff --git a/VERSION b/VERSION index 112969d1..3b0c3fb7 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -14.0.2 \ No newline at end of file +14.0.3 \ No newline at end of file diff --git a/balena.yml b/balena.yml index f86b7129..7c4d2741 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.2 +version: 14.0.3 provides: - slug: sw.compose.long-volume-syntax diff --git a/package-lock.json b/package-lock.json index 6d9dea92..0de06c83 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "balena-supervisor", - "version": "14.0.2", + "version": "14.0.3", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 853f72a0..9e116b13 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.2", + "version": "14.0.3", "license": "Apache-2.0", "repository": { "type": "git", @@ -138,6 +138,6 @@ } }, "versionist": { - "publishedAt": "2022-06-06T19:18:07.516Z" + "publishedAt": "2022-06-07T19:53:31.041Z" } }