diff --git a/.versionbot/CHANGELOG.yml b/.versionbot/CHANGELOG.yml index 12305cbc..79486c83 100644 --- a/.versionbot/CHANGELOG.yml +++ b/.versionbot/CHANGELOG.yml @@ -1,3 +1,39 @@ +- commits: + - subject: Use locks before shutdown/reboot instead of stopping containers + hash: aad5a9efc5da5ffcd6915ac6f395e154ee38cbf8 + body: "" + footer: + Closes: "#1940" + closes: "#1940" + Change-type: patch + change-type: patch + Signed-off-by: 20k-ultra <3946250+20k-ultra@users.noreply.github.com> + signed-off-by: 20k-ultra <3946250+20k-ultra@users.noreply.github.com> + author: 20k-ultra + nested: [] + - subject: Refactor update-lock.lock to accept an array of applications to lock + hash: 471f0f0615c7d46a182c2d396b832eb0df9ee95e + body: "" + footer: + Change-type: patch + change-type: patch + Signed-off-by: 20k-ultra <3946250+20k-ultra@users.noreply.github.com> + signed-off-by: 20k-ultra <3946250+20k-ultra@users.noreply.github.com> + author: 20k-ultra + nested: [] + - subject: Refactor update-lock function to avoid callback hell + hash: ef7371a7ef40f1e73bd2277bfe997c48f5e59284 + body: "" + footer: + Change-type: patch + change-type: patch + Signed-off-by: 20k-ultra <3946250+20k-ultra@users.noreply.github.com> + signed-off-by: 20k-ultra <3946250+20k-ultra@users.noreply.github.com> + author: 20k-ultra + nested: [] + version: 14.0.1 + title: "'Shutdown with locks'" + date: 2022-06-02T04:34:24.480Z - commits: - subject: Use Mounts API for engine socket feature label hash: 6ccd2178c18acded013e888a296e265bc0315728 diff --git a/CHANGELOG.md b/CHANGELOG.md index c5a58f7b..f96c0d15 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ 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.1 +## (2022-06-02) + +* Use locks before shutdown/reboot instead of stopping containers [20k-ultra] +* Refactor update-lock.lock to accept an array of applications to lock [20k-ultra] +* Refactor update-lock function to avoid callback hell [20k-ultra] + # v14.0.0 ## (2022-05-31) diff --git a/VERSION b/VERSION index f13c819c..8d2e58b4 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -14.0.0 \ No newline at end of file +14.0.1 \ No newline at end of file diff --git a/balena.yml b/balena.yml index a3b6fb4d..7b8045d5 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.0 +version: 14.0.1 provides: - slug: sw.compose.long-volume-syntax diff --git a/package-lock.json b/package-lock.json index f8d37c58..756085fd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "balena-supervisor", - "version": "14.0.0", + "version": "14.0.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index d36c8b7e..91f636fc 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.0", + "version": "14.0.1", "license": "Apache-2.0", "repository": { "type": "git", @@ -138,6 +138,6 @@ } }, "versionist": { - "publishedAt": "2022-05-31T19:41:01.379Z" + "publishedAt": "2022-06-02T04:34:25.006Z" } }