mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2025-04-01 16:40:38 +00:00
v16.12.9
This commit is contained in:
parent
94cdd3fcd7
commit
8c6e3df7d9
@ -1,3 +1,25 @@
|
||||
- commits:
|
||||
- subject: Start a dependent if all dependencies are started
|
||||
hash: 7764f98c9d357a1942628e57951266767555f67b
|
||||
body: |
|
||||
The previous behavior required that dependencies were running beefore
|
||||
starting the dependent service. This made it that services dependent on
|
||||
a one-shot service would not get started and goes against the default
|
||||
docker behavior.
|
||||
|
||||
Depending on a service to be running will require the implementation of
|
||||
[long syntax depends_on](https://docs.docker.com/reference/compose-file/services/#long-syntax-1) and the condition
|
||||
`service_healthy`.
|
||||
footer:
|
||||
Change-type: patch
|
||||
change-type: patch
|
||||
Closes: "#2409"
|
||||
closes: "#2409"
|
||||
author: Felipe Lalanne
|
||||
nested: []
|
||||
version: 16.12.9
|
||||
title: ""
|
||||
date: 2025-03-20T18:43:06.085Z
|
||||
- commits:
|
||||
- subject: Remove GOT retries on state poll
|
||||
hash: ae337a1dd7743b0ee0a05c32a5ce01965c5bafef
|
||||
|
@ -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/).
|
||||
|
||||
# v16.12.9
|
||||
## (2025-03-20)
|
||||
|
||||
* Start a dependent if all dependencies are started [Felipe Lalanne]
|
||||
|
||||
# v16.12.8
|
||||
## (2025-03-12)
|
||||
|
||||
|
@ -2,6 +2,6 @@ name: balena-supervisor
|
||||
description: 'Balena Supervisor: balena''s agent on devices.'
|
||||
joinable: false
|
||||
type: sw.application
|
||||
version: 16.12.8
|
||||
version: 16.12.9
|
||||
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.8",
|
||||
"version": "16.12.9",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "balena-supervisor",
|
||||
"version": "16.12.8",
|
||||
"version": "16.12.9",
|
||||
"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.8",
|
||||
"version": "16.12.9",
|
||||
"license": "Apache-2.0",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
@ -137,6 +137,6 @@
|
||||
"yargs": "^17.7.2"
|
||||
},
|
||||
"versionist": {
|
||||
"publishedAt": "2025-03-12T14:50:33.763Z"
|
||||
"publishedAt": "2025-03-20T18:43:06.641Z"
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user