mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2025-01-18 18:56:24 +00:00
v10.1.4
This commit is contained in:
parent
5aa9f31c3e
commit
d6d5fecf28
@ -1,3 +1,47 @@
|
|||||||
|
- commits:
|
||||||
|
- subject: Filter both null and omitted values
|
||||||
|
hash: 4688524e4564b4f55870ce7a44a7a5c7d90c21ce
|
||||||
|
body: |
|
||||||
|
The docker daemon can sometimes return null for various fields,
|
||||||
|
or omit the field altogether. The best thing to do with using
|
||||||
|
the docker api is to always use == null to cover both instances.
|
||||||
|
footer:
|
||||||
|
Change-type: patch
|
||||||
|
change-type: patch
|
||||||
|
Signed-off-by: Roman Mazur <roman@balena.io>
|
||||||
|
signed-off-by: Roman Mazur <roman@balena.io>
|
||||||
|
author: Roman Mazur
|
||||||
|
- subject: Use typed error to report inspection problems
|
||||||
|
hash: 4b56022d93812852d9771e8c4ed1fa4f8e414d7f
|
||||||
|
body: |
|
||||||
|
This will throw a typed error in case when supervisor cannot inspect
|
||||||
|
its own container.
|
||||||
|
footer:
|
||||||
|
Change-type: patch
|
||||||
|
change-type: patch
|
||||||
|
Signed-off-by: Roman Mazur <roman@balena.io>
|
||||||
|
signed-off-by: Roman Mazur <roman@balena.io>
|
||||||
|
author: Roman Mazur
|
||||||
|
- subject: Prevent supervisor from deleting itself
|
||||||
|
hash: 4846acb25ebd5b1400e3a74bc3a3c607ae98be8e
|
||||||
|
body: >
|
||||||
|
With recent changes to local mode behavior, supervisor removes all
|
||||||
|
engine objects
|
||||||
|
|
||||||
|
that were not present before entering local mode.
|
||||||
|
|
||||||
|
With this change, supervisor also detects its own resources and does not
|
||||||
|
delete them
|
||||||
|
|
||||||
|
if it was updated during local mode operations.
|
||||||
|
footer:
|
||||||
|
Change-type: patch
|
||||||
|
change-type: patch
|
||||||
|
Signed-off-by: Roman Mazur <roman@balena.io>
|
||||||
|
signed-off-by: Roman Mazur <roman@balena.io>
|
||||||
|
author: Roman Mazur
|
||||||
|
version: 10.1.4
|
||||||
|
date: 2019-07-25T10:06:17.925Z
|
||||||
- commits:
|
- commits:
|
||||||
- subject: 'docs: update APPID to BALENA_APP_ID as exposed from the env'
|
- subject: 'docs: update APPID to BALENA_APP_ID as exposed from the env'
|
||||||
hash: f2bb8a768e655513cc72a4bd286f7803745c0f07
|
hash: f2bb8a768e655513cc72a4bd286f7803745c0f07
|
||||||
|
@ -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/).
|
||||||
|
|
||||||
|
## 10.1.4 - 2019-07-25
|
||||||
|
|
||||||
|
* Filter both null and omitted values [Roman Mazur]
|
||||||
|
* Use typed error to report inspection problems [Roman Mazur]
|
||||||
|
* Prevent supervisor from deleting itself [Roman Mazur]
|
||||||
|
|
||||||
## 10.1.3 - 2019-07-24
|
## 10.1.3 - 2019-07-24
|
||||||
|
|
||||||
* Docs: update APPID to BALENA_APP_ID as exposed from the env [Matthew McGinn]
|
* Docs: update APPID to BALENA_APP_ID as exposed from the env [Matthew McGinn]
|
||||||
|
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "balena-supervisor",
|
"name": "balena-supervisor",
|
||||||
"version": "10.1.3",
|
"version": "10.1.4",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@ -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": "10.1.3",
|
"version": "10.1.4",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
Loading…
Reference in New Issue
Block a user