diff --git a/.versionbot/CHANGELOG.yml b/.versionbot/CHANGELOG.yml index 9cd2f58b..9909a848 100644 --- a/.versionbot/CHANGELOG.yml +++ b/.versionbot/CHANGELOG.yml @@ -1,3 +1,34 @@ +- commits: + - subject: Use valid release uuid for local releases + hash: cd19845b6b6ddecbf723b0598b9fbb628dd2419f + body: > + On local push, the CLI uses `localrelease` as the `commit` property for + + the development application. This is not a valid uuid and will not be + + read properly by the supervisor, as seen in + + + https://github.com/balena-os/balena-supervisor/blob/master/src/compose/service.ts#L652 + + + While this is not a problem right now, the commit is becoming the main + + way to identify a service release (replacing `releaseId` and `imageId`), + + and the invalid release uuid could cause update issues when pushing a + + local release on when using some API endpoints. + footer: + Change-type: patch + change-type: patch + Relates-to: balena-os/balena-supervisor#2136 + relates-to: balena-os/balena-supervisor#2136 + author: Felipe Lalanne + nested: [] + version: 15.2.3 + title: "" + date: 2023-05-03T20:03:47.033Z - commits: - subject: Remove nvmrc hash: 35fe7c6a5886f6af5d430c06d62ca20f757009a7 diff --git a/CHANGELOG.md b/CHANGELOG.md index e0c6176a..2506b8d2 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/). +## 15.2.3 - 2023-05-03 + +* Use valid release uuid for local releases [Felipe Lalanne] + ## 15.2.2 - 2023-04-28 * Remove nvmrc [Felipe Lalanne] diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json index 07855c87..772c048e 100644 --- a/npm-shrinkwrap.json +++ b/npm-shrinkwrap.json @@ -1,6 +1,6 @@ { "name": "balena-cli", - "version": "15.2.2", + "version": "15.2.3", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 2550de5e..6f3a7fb6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "balena-cli", - "version": "15.2.2", + "version": "15.2.3", "description": "The official balena Command Line Interface", "main": "./build/app.js", "homepage": "https://github.com/balena-io/balena-cli", @@ -284,6 +284,6 @@ "windosu": "^0.3.0" }, "versionist": { - "publishedAt": "2023-04-28T16:16:43.540Z" + "publishedAt": "2023-05-03T20:03:48.134Z" } }