diff --git a/.versionbot/CHANGELOG.yml b/.versionbot/CHANGELOG.yml index 766f1674e..5ae0c5898 100644 --- a/.versionbot/CHANGELOG.yml +++ b/.versionbot/CHANGELOG.yml @@ -1,3 +1,27 @@ +- commits: + - subject: Cache last reported current state to /mnt/root/tmp + hash: eb8ad11cd702e7d5ffba499c6b2d2fcadc030dd4 + body: > + Whenever the Supervisor reports current state, it diffs the current + state + + with its last reported current state. However, when the Supervisor starts + + up, there is no last reported state, since that last report is stored in + + process memory. Caching the last report in a location that survives + + Supervisor restarts will reduce the current report bandwidth used on startup. + footer: + Change-type: patch + change-type: patch + Signed-off-by: Christina Ying Wang + signed-off-by: Christina Ying Wang + author: Christina Ying Wang + nested: [] + version: 15.0.3 + title: "" + date: 2023-11-22T00:32:48.806Z - commits: - subject: Set applyInProgress to true while applying intermediate state hash: a993b3e7af9637ac4573786aa7d31eb7a16a4dbd diff --git a/CHANGELOG.md b/CHANGELOG.md index 88ff1676e..3473f0ec0 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/). +# v15.0.3 +## (2023-11-22) + +* Cache last reported current state to /mnt/root/tmp [Christina Ying Wang] + # v15.0.2 ## (2023-11-01) diff --git a/VERSION b/VERSION index 49bf3b4a7..1f231fc2a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -15.0.2 \ No newline at end of file +15.0.3 \ No newline at end of file diff --git a/balena.yml b/balena.yml index e516f5238..0ec47983b 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: 15.0.2 +version: 15.0.3 provides: - slug: sw.compose.long-volume-syntax diff --git a/package-lock.json b/package-lock.json index 53a7b9213..68e4f0cb3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "balena-supervisor", - "version": "15.0.2", + "version": "15.0.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "balena-supervisor", - "version": "15.0.2", + "version": "15.0.3", "license": "Apache-2.0", "dependencies": { "@balena/systemd": "^0.4.1", diff --git a/package.json b/package.json index 11e65c6f1..b77123270 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": "15.0.2", + "version": "15.0.3", "license": "Apache-2.0", "repository": { "type": "git", @@ -140,6 +140,6 @@ "yargs": "^15.4.1" }, "versionist": { - "publishedAt": "2023-11-01T22:16:58.290Z" + "publishedAt": "2023-11-22T00:32:49.326Z" } }