This commit is contained in:
Balena CI 2022-04-05 17:38:16 +03:00 committed by VersionBot
parent 1f511d4ef6
commit fa9074ce76
6 changed files with 41 additions and 5 deletions

View File

@ -1,3 +1,34 @@
- commits:
- subject: Fix database migration for legacyApps
hash: eee24604459440569dee455db918d6901ea86645
body: >
Migration `M00008` had a bug with the check for legacy apps, which
resulted in devices that had at some point been updated from a single
container supervisor to get the error
```
Undefined binding(s) detected when compiling UPDATE. Undefined column(s): [appUuid] query
```
This adds a new migration with the fix to ensure broken fix the
inconsistent database state.
footer:
Change-type: patch
change-type: patch
Closes: "#1913"
closes: "#1913"
author: Felipe Lalanne
nested: []
version: 13.0.1
title: "'Fix database migration for legacyApps'"
date: 2022-04-01T21:09:42.303Z
- commits:
- subject: Add support for GET v3 target state
hash: 7425d1110b719dffd132c681c6e0c28fcc218dea

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/).
# v13.0.1
## (2022-04-01)
* Fix database migration for legacyApps [Felipe Lalanne]
# v13.0.0
## (2022-03-23)

View File

@ -1 +1 @@
13.0.0
13.0.1

View File

@ -2,4 +2,4 @@ name: balena-supervisor
description: 'Balena Supervisor: balena''s agent on devices.'
joinable: false
type: sw.application
version: 13.0.0
version: 13.0.1

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "balena-supervisor",
"version": "13.0.0",
"version": "13.0.1",
"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": "13.0.0",
"version": "13.0.1",
"license": "Apache-2.0",
"repository": {
"type": "git",
@ -140,6 +140,6 @@
}
},
"versionist": {
"publishedAt": "2022-03-23T18:15:27.721Z"
"publishedAt": "2022-04-01T21:09:42.840Z"
}
}