diff --git a/.versionbot/CHANGELOG.yml b/.versionbot/CHANGELOG.yml index c5a4647c..90223113 100644 --- a/.versionbot/CHANGELOG.yml +++ b/.versionbot/CHANGELOG.yml @@ -1,3 +1,19 @@ +- commits: + - subject: Hide init method in configJson + hash: d9c669ebad7b115f018a922f6b329950fd86b6b1 + body: | + ConfigJson users now don't need to worry about initialization. + It's done lazily on the first public method call. + + Implementation is also rewritten to follow async/await pattern. + footer: + Change-type: patch + change-type: patch + Signed-off-by: Roman Mazur + signed-off-by: Roman Mazur + author: Roman Mazur + version: 10.6.20 + date: 2019-12-11T18:14:09.414Z - commits: - subject: Always filter environment configuration hash: 03a701cdedf6a40aa707ca5ca22af8f1c9a14d40 diff --git a/CHANGELOG.md b/CHANGELOG.md index 9af0d020..1d095821 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ 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.6.20 - 2019-12-11 + +* Hide init method in configJson [Roman Mazur] + ## 10.6.19 - 2019-12-09 * Always filter environment configuration [Cameron Diver] diff --git a/package-lock.json b/package-lock.json index 36726df3..41b900b7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "balena-supervisor", - "version": "10.6.19", + "version": "10.6.20", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 5b968e14..60013436 100644 --- a/package.json +++ b/package.json @@ -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.6.19", + "version": "10.6.20", "license": "Apache-2.0", "repository": { "type": "git",