diff --git a/.versionbot/CHANGELOG.yml b/.versionbot/CHANGELOG.yml index aefffeaf9..4b1d52498 100644 --- a/.versionbot/CHANGELOG.yml +++ b/.versionbot/CHANGELOG.yml @@ -1,3 +1,43 @@ +- commits: + - subject: Add support for `io.balena.update.requires-reboot` + hash: e416ad0daf61fba14cd8c2012c5b2f66d8fb5f4a + body: > + This label can be used by user services to indicate that a reboot is + + required after the install of a service in order to fully apply an + update. + footer: + Change-type: minor + change-type: minor + author: Felipe Lalanne + nested: [] + - subject: Move reboot breadcrumb check to device-state + hash: 75127c6074531fd20199ed07d6860687b4105cfb + body: | + This was on device-config before, but we'll need to set the reboot + breadcrumb from the application-manager as well when we introduce + `requires-reboot` as a label. + footer: + Change-type: patch + change-type: patch + author: Felipe Lalanne + nested: [] + - subject: Refactor device-config as part of device-state + hash: 51f1fb0f30e04ece6a00d2d8b9420b49703a2fde + body: | + Move the device-config module to the device-state folder and export only + those functions that are needed elsewhere in the codebase + + This moves us closer to making the device-state module the only way to + modify application and configuration. + footer: + Change-type: patch + change-type: patch + author: Felipe Lalanne + nested: [] + version: 16.11.0 + title: "" + date: 2025-01-14T18:15:55.879Z - commits: - subject: Update systeminformation to v5.23.8 [SECURITY] hash: 92b26c7ae2d8d329be18806abe24ab312e92db68 diff --git a/CHANGELOG.md b/CHANGELOG.md index 75323eec1..b484b3f3d 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/). +# v16.11.0 +## (2025-01-14) + +* Add support for `io.balena.update.requires-reboot` [Felipe Lalanne] +* Move reboot breadcrumb check to device-state [Felipe Lalanne] +* Refactor device-config as part of device-state [Felipe Lalanne] + # v16.10.3 ## (2024-12-20) diff --git a/VERSION b/VERSION index a76369ae6..9c846f9a2 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -16.10.3 \ No newline at end of file +16.11.0 \ No newline at end of file diff --git a/balena.yml b/balena.yml index 925aa450b..e51c9ffdd 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: 16.10.3 +version: 16.11.0 provides: - slug: sw.compose.long-volume-syntax diff --git a/package-lock.json b/package-lock.json index 6a345e4a2..8e1795705 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "balena-supervisor", - "version": "16.10.3", + "version": "16.11.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "balena-supervisor", - "version": "16.10.3", + "version": "16.11.0", "license": "Apache-2.0", "dependencies": { "@balena/systemd": "^0.5.0", diff --git a/package.json b/package.json index bcae9f8b3..0e74b92d3 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": "16.10.3", + "version": "16.11.0", "license": "Apache-2.0", "repository": { "type": "git", @@ -135,6 +135,6 @@ "yargs": "^17.7.2" }, "versionist": { - "publishedAt": "2024-12-20T20:43:23.891Z" + "publishedAt": "2025-01-14T18:15:56.458Z" } }