mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2025-04-16 07:26:35 +00:00
v9.10.2
This commit is contained in:
parent
1f5ef1ab03
commit
2855295432
@ -1,3 +1,31 @@
|
||||
- commits:
|
||||
- subject: 'state-engine: Return a noop when waiting for a dependency'
|
||||
hash: 84356b82b814b10c14c12a285ffe71dac278ea19
|
||||
body: |
|
||||
We run the risk of the state engine exiting early when a dependency is
|
||||
not ready, especially in local mode. This changes forces a noop to be
|
||||
returned when we are waiting on another service, which is the process
|
||||
used elsewhere in the state engine.
|
||||
footer:
|
||||
Change-type: patch
|
||||
change-type: patch
|
||||
Signed-off-by: Cameron Diver <cameron@balena.io>
|
||||
signed-off-by: Cameron Diver <cameron@balena.io>
|
||||
author: Cameron Diver
|
||||
- subject: Skip dependency check on kill in local mode
|
||||
hash: 8f2d6f4d7b8293518600260acd986b8cb4ba53fe
|
||||
body: |
|
||||
This function would usually check that an image is present for a
|
||||
dependency, but in local mode the images would have never been inserted
|
||||
into the database.
|
||||
footer:
|
||||
Change-type: patch
|
||||
change-type: patch
|
||||
Signed-off-by: Cameron Diver <cameron@balena.io>
|
||||
signed-off-by: Cameron Diver <cameron@balena.io>
|
||||
author: Cameron Diver
|
||||
version: 9.10.2
|
||||
date: 2019-03-13T10:36:16.473Z
|
||||
- commits:
|
||||
- subject: Pin lodash types to avoid compile error
|
||||
hash: af734ad00800d8d845042f761754db6750cd9c20
|
||||
|
@ -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/).
|
||||
|
||||
## 9.10.2 - 2019-03-13
|
||||
|
||||
* State-engine: Return a noop when waiting for a dependency [Cameron Diver]
|
||||
* Skip dependency check on kill in local mode [Cameron Diver]
|
||||
|
||||
## 9.10.1 - 2019-03-12
|
||||
|
||||
* Pin lodash types to avoid compile error [Cameron Diver]
|
||||
|
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "balena-supervisor",
|
||||
"version": "9.10.1",
|
||||
"version": "9.10.2",
|
||||
"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": "9.10.1",
|
||||
"version": "9.10.2",
|
||||
"license": "Apache-2.0",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
Loading…
x
Reference in New Issue
Block a user