mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-21 06:33:30 +00:00
v14.4.0
This commit is contained in:
parent
e4e59c656d
commit
48fca82a79
@ -1,3 +1,30 @@
|
||||
- commits:
|
||||
- subject: Use fatrw utility for writes to boot partition
|
||||
hash: dade5987370c68d639d698cc3e4a9d6ccf4df9c5
|
||||
body: >
|
||||
This PR changes the way the supervisor reads and writes files from
|
||||
/mnt/boot. Reads will
|
||||
|
||||
now use the [fatrw utility](https://github.com/balena-os/fatrw/) as a way to minimize corruption of
|
||||
|
||||
files in the boot partition, and thus preventing possible bricking of the device.
|
||||
|
||||
|
||||
Since this basically changes the way a lot of configurations are read, this work was being blocked because of
|
||||
|
||||
the way tests were being done. While there still remain a couple of legacy tests to be migrated, this PR disables
|
||||
|
||||
test:legacy tests when running npm run test, as the work on refactoring those tests is in progress (see #2048) and
|
||||
|
||||
fatrw integration is of higher priority.
|
||||
footer:
|
||||
Change-type: minor
|
||||
change-type: minor
|
||||
author: Felipe Lalanne
|
||||
nested: []
|
||||
version: 14.4.0
|
||||
title: ""
|
||||
date: 2022-11-17T01:37:52.537Z
|
||||
- commits:
|
||||
- subject: Simplify getting images for cleanup
|
||||
hash: 8174ea9643fb1059aad6fb05c68f42ade0579475
|
||||
|
@ -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/).
|
||||
|
||||
# v14.4.0
|
||||
## (2022-11-17)
|
||||
|
||||
* Use fatrw utility for writes to boot partition [Felipe Lalanne]
|
||||
|
||||
# v14.3.5
|
||||
## (2022-11-16)
|
||||
|
||||
|
@ -2,6 +2,6 @@ name: balena-supervisor
|
||||
description: 'Balena Supervisor: balena''s agent on devices.'
|
||||
joinable: false
|
||||
type: sw.application
|
||||
version: 14.3.5
|
||||
version: 14.4.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": "14.3.5",
|
||||
"version": "14.4.0",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "balena-supervisor",
|
||||
"version": "14.3.5",
|
||||
"version": "14.4.0",
|
||||
"license": "Apache-2.0",
|
||||
"dependencies": {
|
||||
"@balena/happy-eyeballs": "0.0.6",
|
||||
|
@ -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": "14.3.5",
|
||||
"version": "14.4.0",
|
||||
"license": "Apache-2.0",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
@ -145,6 +145,6 @@
|
||||
}
|
||||
},
|
||||
"versionist": {
|
||||
"publishedAt": "2022-11-16T22:29:57.940Z"
|
||||
"publishedAt": "2022-11-17T01:37:53.367Z"
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user