mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2025-03-25 21:38:36 +00:00
v17.0.0
This commit is contained in:
parent
2d1871e16d
commit
7efdeea0f7
@ -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
|
||||
|
@ -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)
|
||||
|
||||
|
@ -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
4
package-lock.json
generated
@ -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",
|
||||
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user