This commit is contained in:
Balena CI 2021-02-09 13:19:51 +02:00 committed by VersionBot
parent cfc72e673b
commit 17b6b00778
5 changed files with 49 additions and 3 deletions

View File

@ -1,3 +1,44 @@
- commits:
- subject: Fix gpu label support
hash: f009d3a3e99aa174b03b09eca39f9f6b773f0230
body: >
The device request object was created with untouched fields left unset.
When
comparing state to determine if a transition is required this would
result in a mismatch between:
{
Driver: '',
Count: 1,
DeviceIDs: null,
Capabilities: [Array],
Options: null
}
and
{
Count: 1,
Capabilities: [Array],
}
Which in turn resulted in the target service being continously
restarted.
The fix is to instantiate the object in full.
footer:
Connects-to: ae646a07ec6a6c96f7cb91f1d37898a94dbab47a
connects-to: ae646a07ec6a6c96f7cb91f1d37898a94dbab47a
Change-type: patch
change-type: patch
Signed-off-by: Robert Günzler <robertg@balena.io>
signed-off-by: Robert Günzler <robertg@balena.io>
author: Robert Günzler
nested: []
version: 12.3.6
date: 2021-02-09T10:30:32.911Z
- commits:
- subject: Prevent inserting null commit during DB migration
hash: 277d984af20821cd87e3625a1c950555cbca0412

View File

@ -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/).
# v12.3.6
## (2021-02-09)
* Fix gpu label support [Robert Günzler]
# v12.3.5
## (2021-02-03)

View File

@ -1 +1 @@
12.3.5
12.3.6

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "balena-supervisor",
"version": "12.3.5",
"version": "12.3.6",
"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": "12.3.5",
"version": "12.3.6",
"license": "Apache-2.0",
"repository": {
"type": "git",