diff --git a/.versionbot/CHANGELOG.yml b/.versionbot/CHANGELOG.yml index 36426d4d..5d13fa58 100644 --- a/.versionbot/CHANGELOG.yml +++ b/.versionbot/CHANGELOG.yml @@ -1,3 +1,29 @@ +- commits: + - subject: Improve error handling (remove most occurrences of process.exit()) + hash: deb3e4c4ac1b23e96b283848580428f61de4eb05 + body: | + Finally delete the deprecated exitWithExpectedError() function from + 'lib/errors.ts'. + footer: + Change-type: patch + change-type: patch + author: Paulo Castro + nested: [] + - subject: 'build, deploy: Extend CTRL-C coverage on Windows (PowerShell, cmd.exe)' + hash: a8ff21af691cd69dd39cc5aba06729e12cf3d046 + body: | + Before this commit, `balena build` and `balena deploy` would almost + never respect CTRL-C on Windows (PowerShell, cmd.exe). Now CTRL-C + is respected over a large extent of runtime and, if CTRL-C is hit + while images are being uploaded (`balena deploy`), the release status + is correctly set to 'failed'. + footer: + Change-type: patch + change-type: patch + author: Paulo Castro + nested: [] + version: 12.48.1 + date: 2021-08-27T00:01:06.667Z - commits: - subject: Add contract contents at release creation time hash: d0cdc900a2f89a30631cc835d7691ea7ebdb2be3 diff --git a/CHANGELOG.md b/CHANGELOG.md index f1a93427..197ef7ce 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/). +## 12.48.1 - 2021-08-27 + +* Improve error handling (remove most occurrences of process.exit()) [Paulo Castro] +* build, deploy: Extend CTRL-C coverage on Windows (PowerShell, cmd.exe) [Paulo Castro] + ## 12.48.0 - 2021-08-26 * Add contract contents at release creation time [Paulo Castro] diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json index 43108ffc..068b9183 100644 --- a/npm-shrinkwrap.json +++ b/npm-shrinkwrap.json @@ -1,6 +1,6 @@ { "name": "balena-cli", - "version": "12.48.0", + "version": "12.48.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 30e9bc84..a837b69d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "balena-cli", - "version": "12.48.0", + "version": "12.48.1", "description": "The official balena Command Line Interface", "main": "./build/app.js", "homepage": "https://github.com/balena-io/balena-cli", @@ -289,6 +289,6 @@ "windosu": "^0.3.0" }, "versionist": { - "publishedAt": "2021-08-26T15:16:03.344Z" + "publishedAt": "2021-08-27T00:01:06.913Z" } }