diff --git a/.versionbot/CHANGELOG.yml b/.versionbot/CHANGELOG.yml index ab01d35d..38b899f9 100644 --- a/.versionbot/CHANGELOG.yml +++ b/.versionbot/CHANGELOG.yml @@ -1,3 +1,29 @@ +- commits: + - subject: Add compose support for volumes defined with long syntax + hash: 0a9c7282e8921f874315259919ba247236be5d52 + body: > + balena-compose already supports this, and with this PR, Supervisor can + + have the option of using HostConfig.Mounts for internal bind mounts such as + + ones added by feature labels. This will be handled in a future PR. + + + The only blocker to having users use long syntax is adding this feature + + to target state. This PR does not add that feature. + footer: + Relates-to: "#1933" + relates-to: "#1933" + Change-type: patch + change-type: patch + Signed-off-by: Christina Wang + signed-off-by: Christina Wang + author: Christina Wang + nested: [] + version: 13.1.8 + title: "'Add compose support for volumes defined with long syntax'" + date: 2022-05-17T18:16:30.482Z - commits: - subject: Prevent throttling reports when nothing was sent hash: 67f9c44a6c7ccde29ee6e53442a74191b4f8eaea diff --git a/CHANGELOG.md b/CHANGELOG.md index 4599c861..f21c2da5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.1.8 +## (2022-05-17) + +* Add compose support for volumes defined with long syntax [Christina Wang] + # v13.1.7 ## (2022-05-16) diff --git a/VERSION b/VERSION index 80e13153..5db74606 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -13.1.7 \ No newline at end of file +13.1.8 \ No newline at end of file diff --git a/balena.yml b/balena.yml index 9b358681..691fe5fa 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: 13.1.7 +version: 13.1.8 provides: - - slug: sw.compose.long-volume-syntax \ No newline at end of file + - slug: sw.compose.long-volume-syntax diff --git a/package-lock.json b/package-lock.json index 8fb45a89..4d08cfa4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "balena-supervisor", - "version": "13.1.7", + "version": "13.1.8", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 1839d164..d289d652 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": "13.1.7", + "version": "13.1.8", "license": "Apache-2.0", "repository": { "type": "git", @@ -138,6 +138,6 @@ } }, "versionist": { - "publishedAt": "2022-05-16T19:22:51.116Z" + "publishedAt": "2022-05-17T18:16:31.037Z" } }