mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2025-01-18 02:40:03 +00:00
v13.1.5
This commit is contained in:
parent
bd2dbc9ac8
commit
cbd74954b3
@ -1,3 +1,23 @@
|
||||
- commits:
|
||||
- subject: Use write + sync when writing configs to /mnt/boot
|
||||
hash: c04955354a76ab32ab5dc52062fdf72d668f7c3b
|
||||
body: |
|
||||
This commit updates all backends that write to /mnt/boot to do it
|
||||
through a new `lib/host-utils` module. Writes are now done using write +
|
||||
sync as rename is not an atomic operation in vfat.
|
||||
|
||||
The change also applies for writes through the `/v1/host-config`
|
||||
endpoint.
|
||||
|
||||
Finally this change includes some improvements on tests.
|
||||
footer:
|
||||
Change-type: patch
|
||||
change-type: patch
|
||||
author: Felipe Lalanne
|
||||
nested: []
|
||||
version: 13.1.5
|
||||
title: "'Use write+sync when writing to '"
|
||||
date: 2022-05-03T15:28:52.610Z
|
||||
- commits:
|
||||
- subject: Use delay instead of interval to recursively report state
|
||||
hash: 2e81a7328e6ff01c397bb1bced73010470520657
|
||||
|
@ -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/).
|
||||
|
||||
# v13.1.5
|
||||
## (2022-05-03)
|
||||
|
||||
* Use write + sync when writing configs to /mnt/boot [Felipe Lalanne]
|
||||
|
||||
# v13.1.4
|
||||
## (2022-04-28)
|
||||
|
||||
|
@ -2,4 +2,4 @@ name: balena-supervisor
|
||||
description: 'Balena Supervisor: balena''s agent on devices.'
|
||||
joinable: false
|
||||
type: sw.application
|
||||
version: 13.1.4
|
||||
version: 13.1.5
|
||||
|
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "balena-supervisor",
|
||||
"version": "13.1.4",
|
||||
"version": "13.1.5",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
@ -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": "13.1.4",
|
||||
"version": "13.1.5",
|
||||
"license": "Apache-2.0",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
@ -138,6 +138,6 @@
|
||||
}
|
||||
},
|
||||
"versionist": {
|
||||
"publishedAt": "2022-04-28T03:19:34.343Z"
|
||||
"publishedAt": "2022-05-03T15:28:53.142Z"
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user