This commit is contained in:
Resin CI 2019-07-25 16:19:37 +03:00
parent 5aa9f31c3e
commit d6d5fecf28
4 changed files with 52 additions and 2 deletions

View File

@ -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:
- subject: 'docs: update APPID to BALENA_APP_ID as exposed from the env'
hash: f2bb8a768e655513cc72a4bd286f7803745c0f07

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!
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
* Docs: update APPID to BALENA_APP_ID as exposed from the env [Matthew McGinn]

2
package-lock.json generated
View File

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

View File

@ -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": "10.1.3",
"version": "10.1.4",
"license": "Apache-2.0",
"repository": {
"type": "git",