v12.11.34

This commit is contained in:
Balena CI 2022-02-16 15:31:02 +02:00 committed by VersionBot
parent 1c82097d1d
commit b677972576
6 changed files with 39 additions and 5 deletions

View File

@ -1,3 +1,31 @@
- commits:
- subject: Create `touch` and `getBootTime` utility functions
hash: a4d91d381a3e2dfda182bb7809a6d78b18aafebf
body: ""
footer:
Change-type: patch
change-type: patch
author: Felipe Lalanne
nested: []
- subject: Add update lock check to PATCH /v1/device/host-config
hash: 5f1a77da25b9d0bd07c2fbec85cb5deefae18884
body: >
This is necessary with the changes as of balenaOS 2.82.6, which watches
config.json
and will restart balena-hostname and some other services automatically on file change.
footer:
Change-type: patch
change-type: patch
Relates-to: "#1876"
relates-to: "#1876"
Signed-off-by: Christina Wang <christina@balena.io>
signed-off-by: Christina Wang <christina@balena.io>
author: Christina Wang
nested: []
version: 12.11.34
title: "'Make the supervisor more resistant to restarts during config changes'"
date: 2022-02-15T15:58:42.783Z
- commits: - commits:
- subject: Add support for local ipv6 reporting - subject: Add support for local ipv6 reporting
hash: 72f6cbe4c7225623ed99083d20c4a2cb2f3b70ac hash: 72f6cbe4c7225623ed99083d20c4a2cb2f3b70ac

View File

@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file
automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY! automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
This project adheres to [Semantic Versioning](http://semver.org/). This project adheres to [Semantic Versioning](http://semver.org/).
# v12.11.34
## (2022-02-15)
* Create `touch` and `getBootTime` utility functions [Felipe Lalanne]
* Add update lock check to PATCH /v1/device/host-config [Christina Wang]
# v12.11.33 # v12.11.33
## (2022-02-09) ## (2022-02-09)

View File

@ -1 +1 @@
12.11.33 12.11.34

View File

@ -2,4 +2,4 @@ name: balena-supervisor
description: 'Balena Supervisor: balena''s agent on devices.' description: 'Balena Supervisor: balena''s agent on devices.'
joinable: false joinable: false
type: sw.application type: sw.application
version: 12.11.33 version: 12.11.34

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{ {
"name": "balena-supervisor", "name": "balena-supervisor",
"version": "12.11.33", "version": "12.11.34",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

View File

@ -1,7 +1,7 @@
{ {
"name": "balena-supervisor", "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.", "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": "12.11.33", "version": "12.11.34",
"license": "Apache-2.0", "license": "Apache-2.0",
"repository": { "repository": {
"type": "git", "type": "git",
@ -139,6 +139,6 @@
} }
}, },
"versionist": { "versionist": {
"publishedAt": "2022-02-09T17:57:10.311Z" "publishedAt": "2022-02-15T15:58:43.328Z"
} }
} }