diff --git a/.versionbot/CHANGELOG.yml b/.versionbot/CHANGELOG.yml index 39b9ff30..d10fde48 100644 --- a/.versionbot/CHANGELOG.yml +++ b/.versionbot/CHANGELOG.yml @@ -1,3 +1,21 @@ +- commits: + - subject: Fix fast-boot module caching with read-only installation folders + hash: d15b54cf40ad462112eeb9f7beb93bb1c25d3eb1 + body: | + * Add missing fast-boot `stop()` call on CLI exit to avoid 1s timeout. + * Move `.fast-boot.json` to `~/.balena/cli-module-cache.json` to + address scenarios where the CLI is installed to a read-only folder: + - pkg's internal 'snapshot' filesystem (standalone zip package) + - Root-owned folder without write permission to regular users, + like `/usr[/local]/lib/balena-cli` (the case of caxa-based + installers or the GUI installer for macOS). + footer: + Change-type: patch + change-type: patch + author: Paulo Castro + nested: [] + version: 12.44.19 + date: 2021-05-28T14:20:05.160Z - commits: - subject: Update advanced installation instructions hash: 460022a7cfc04a3828662f3f078f17816ea9bcff diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c6ed8db..95d90428 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/). +## 12.44.19 - 2021-05-28 + +* Fix fast-boot module caching with read-only installation folders [Paulo Castro] + ## 12.44.18 - 2021-05-27 * Update advanced installation instructions [Paulo Castro] diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json index 448d33c0..d45730c7 100644 --- a/npm-shrinkwrap.json +++ b/npm-shrinkwrap.json @@ -1,6 +1,6 @@ { "name": "balena-cli", - "version": "12.44.18", + "version": "12.44.19", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 0a55b15d..49678ec2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "balena-cli", - "version": "12.44.18", + "version": "12.44.19", "description": "The official balena Command Line Interface", "main": "./build/app.js", "homepage": "https://github.com/balena-io/balena-cli",