diff --git a/.versionbot/CHANGELOG.yml b/.versionbot/CHANGELOG.yml index 7a738de0..b82bc566 100644 --- a/.versionbot/CHANGELOG.yml +++ b/.versionbot/CHANGELOG.yml @@ -1,3 +1,22 @@ +- commits: + - subject: Process livepush build logs inline + hash: 578de7bcd4d1ec6a106251d19305c99c250458c1 + body: | + When using livepush, the CLI parses the build logs to obtain the stage + image ids, which are necessary for properly running livepush. + + This process used to store the full log output in memory before parsing + the logs for obtaining the stage ids. We have seen this cause issues + before because of the excessive memory usage and it is one the suspects + of #2165, which is blocking the update to Node 14 + footer: + Change-type: patch + change-type: patch + author: Felipe Lalanne + nested: [] + version: 15.0.1 + title: "" + date: 2023-01-10T13:43:22.577Z - commits: - subject: "preload: Drops ability to preload Intel Edison (EOL 2017) Upgrade balena-preload from 12.2.0 to 13.0.0" diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c7adc64..45307ca0 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.0.1 - 2023-01-10 + +* Process livepush build logs inline [Felipe Lalanne] + ## 15.0.0 - 2023-01-02 * preload: Drops ability to preload Intel Edison (EOL 2017) Upgrade balena-preload from 12.2.0 to 13.0.0 [JOASSART Edwin] diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json index 9ae96485..9213dd2d 100644 --- a/npm-shrinkwrap.json +++ b/npm-shrinkwrap.json @@ -1,6 +1,6 @@ { "name": "balena-cli", - "version": "15.0.0", + "version": "15.0.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 66ea4508..c79f3807 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "balena-cli", - "version": "15.0.0", + "version": "15.0.1", "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-01-02T15:21:58.082Z" + "publishedAt": "2023-01-10T13:43:23.538Z" } }