diff --git a/.versionbot/CHANGELOG.yml b/.versionbot/CHANGELOG.yml index 53943eb9..d507eaa4 100644 --- a/.versionbot/CHANGELOG.yml +++ b/.versionbot/CHANGELOG.yml @@ -1,3 +1,46 @@ +- commits: + - subject: Add Docker network label if custom ipam config + hash: b596c77ce2d229e79082cbb1f0022f93806f09ae + body: > + In a target release where the only change is the addition or removal + + of a custom ipam config, the Supervisor does not recreate the network + + due to ignoring ipam config differences when comparing current and + target + + network (in network.isEqualConfig). This commit implements the addition + of + + a network label if the target compose object includes a network with + custom + + ipam. With the label, the Supervisor will detect a difference between a + + network with a custom ipam and a network without, without needing to + compare + + the ipam configs themselves. + + + This is a major change, as devices running networks with custom ipam + configs + + will have their networks recreated to add the network label. + footer: + Closes: "#2251" + closes: "#2251" + Change-type: major + change-type: major + See: https://balena.fibery.io/Work/Project/Fix-Supervisor-not-recreating-network-when-passed-custom-ipam-config-1127 + see: https://balena.fibery.io/Work/Project/Fix-Supervisor-not-recreating-network-when-passed-custom-ipam-config-1127 + Signed-off-by: Christina Ying Wang + signed-off-by: Christina Ying Wang + author: Christina Ying Wang + nested: [] + version: 17.0.0 + title: "" + date: 2025-03-24T22:18:08.753Z - commits: - subject: Start a dependent if all dependencies are started hash: 7764f98c9d357a1942628e57951266767555f67b diff --git a/CHANGELOG.md b/CHANGELOG.md index f9bab8a3..174e3b1a 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/). +# v17.0.0 +## (2025-03-24) + +* Add Docker network label if custom ipam config [Christina Ying Wang] + # v16.12.9 ## (2025-03-20) diff --git a/VERSION b/VERSION index 68306157..7d31a2a0 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -16.12.9 \ No newline at end of file +17.0.0 \ No newline at end of file diff --git a/balena.yml b/balena.yml index 32c3a132..471b41f9 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.12.9 +version: 17.0.0 provides: - slug: sw.compose.long-volume-syntax diff --git a/package-lock.json b/package-lock.json index 9b8d3f48..47cf7655 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "balena-supervisor", - "version": "16.12.9", + "version": "17.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "balena-supervisor", - "version": "16.12.9", + "version": "17.0.0", "license": "Apache-2.0", "dependencies": { "@balena/systemd": "^0.5.0", diff --git a/package.json b/package.json index 301ee905..d5f0a8ec 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.12.9", + "version": "17.0.0", "license": "Apache-2.0", "repository": { "type": "git", @@ -137,6 +137,6 @@ "yargs": "^17.7.2" }, "versionist": { - "publishedAt": "2025-03-20T18:43:06.641Z" + "publishedAt": "2025-03-24T22:18:09.279Z" } }