This commit is contained in:
flowzone-app[bot] 2025-03-24 22:18:11 +00:00 committed by GitHub
parent 2d1871e16d
commit 7efdeea0f7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 54 additions and 6 deletions

View File

@ -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 <christina@balena.io>
signed-off-by: Christina Ying Wang <christina@balena.io>
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

View File

@ -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)

View File

@ -1 +1 @@
16.12.9
17.0.0

View File

@ -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

4
package-lock.json generated
View File

@ -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",

View File

@ -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"
}
}