diff --git a/.versionbot/CHANGELOG.yml b/.versionbot/CHANGELOG.yml index 70e8c328..44ca58ee 100644 --- a/.versionbot/CHANGELOG.yml +++ b/.versionbot/CHANGELOG.yml @@ -1,3 +1,33 @@ +- commits: + - subject: Remove legacy build methods + hash: 515b6297a089c13c80a751a303f7311b80ed15f1 + body: | + Removes dindctl and `tools/sync.js` in favor of balenaos-in-container + and SSH tunneling respectively. + footer: + Change-type: patch + change-type: patch + author: Felipe Lalanne + nested: [] + - subject: Allow directories to be used as lockfiles + hash: 861e902d7f460e9ed0320ff2f808d23ec53e4e30 + body: > + Some libraries, like + [proper-lockfile](https://www.npmjs.com/package/proper-lockfile) + + use directories instead of files for locking. This PR allows the supervisor to be able to + + work with those types of locks when lock override is requested. + footer: + Closes: "#1978" + closes: "#1978" + Change-type: patch + change-type: patch + author: Felipe Lalanne + nested: [] + version: 14.0.10 + title: "'Remove legacy build methods'" + date: 2022-07-13T20:44:45.828Z - commits: - subject: Allow host config patch regardless of running applications hash: 0fc79e87d98e13c2c918ec89e28759447c51af56 diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b70c06f..dbc7d3f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ 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/). +# v14.0.10 +## (2022-07-13) + +* Remove legacy build methods [Felipe Lalanne] +* Allow directories to be used as lockfiles [Felipe Lalanne] + # v14.0.9 ## (2022-07-06) diff --git a/VERSION b/VERSION index a03a651b..150937ce 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -14.0.9 \ No newline at end of file +14.0.10 \ No newline at end of file diff --git a/balena.yml b/balena.yml index 5d21e1c4..8c0f6579 100644 --- a/balena.yml +++ b/balena.yml @@ -2,6 +2,6 @@ name: balena-supervisor description: 'Balena Supervisor: balena''s agent on devices.' joinable: false type: sw.application -version: 14.0.9 +version: 14.0.10 provides: - slug: sw.compose.long-volume-syntax diff --git a/package-lock.json b/package-lock.json index 36ddd21c..23d281aa 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "balena-supervisor", - "version": "14.0.9", + "version": "14.0.10", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 61e024e2..6cec6c4e 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": "14.0.9", + "version": "14.0.10", "license": "Apache-2.0", "repository": { "type": "git", @@ -138,6 +138,6 @@ } }, "versionist": { - "publishedAt": "2022-07-06T20:41:30.803Z" + "publishedAt": "2022-07-13T20:44:46.211Z" } }