This commit is contained in:
Balena CI 2020-05-29 17:57:50 +03:00 committed by VersionBot
parent 7365e5c160
commit e0187090b1
5 changed files with 26 additions and 3 deletions

View File

@ -1,3 +1,21 @@
- commits:
- subject: Make the db module a singleton
hash: 1d7381327e3114c0d005316846429d26b01a3e4c
body: >
We were treating the database class as a singleton, but still having to
pass
around the db instance. Now we can simply require the db module and have
access to the database handle.
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: 11.4.16
date: 2020-05-29T14:03:57.770Z
- commits:
- subject: Check for ApiError before using it as such
hash: 972b896c95daf1305468137aefe1e12ead0d59ee

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/).
# v11.4.16
## (2020-05-29)
* Make the db module a singleton [Cameron Diver]
# v11.4.15
## (2020-05-26)

View File

@ -1 +1 @@
11.4.15
11.4.16

2
package-lock.json generated
View File

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