From 34232401bd99c16705e2a0b33d2079bf571edb9c Mon Sep 17 00:00:00 2001 From: "flowzone-app[bot]" <124931076+flowzone-app[bot]@users.noreply.github.com> Date: Mon, 13 May 2024 14:56:32 +0000 Subject: [PATCH] v5.3.3+rev2 --- .versionbot/CHANGELOG.yml | 143 ++++++++++++++++++++++++++++++++++++++ CHANGELOG.md | 45 ++++++++++++ VERSION | 2 +- 3 files changed, 189 insertions(+), 1 deletion(-) diff --git a/.versionbot/CHANGELOG.yml b/.versionbot/CHANGELOG.yml index 213f48b57..1e64d90fb 100644 --- a/.versionbot/CHANGELOG.yml +++ b/.versionbot/CHANGELOG.yml @@ -1,3 +1,146 @@ +- commits: + - subject: Update balena-yocto-scripts to 466d6ec592656bb950a393fc1c7a5d5ff4cf3455 + hash: fb09fd0a535ea6fd54d0f56bc13e732341838f91 + body: Update balena-yocto-scripts + footer: + Changelog-entry: Update balena-yocto-scripts to 466d6ec592656bb950a393fc1c7a5d5ff4cf3455 + changelog-entry: Update balena-yocto-scripts to 466d6ec592656bb950a393fc1c7a5d5ff4cf3455 + author: Self-hosted Renovate Bot + nested: + - commits: + - subject: "balena-deploy: deploy usbboot if available" + hash: a62a90bcf05fdccc9cdbaa9961d2db823bbeb9b5 + body: | + This is where the RPI family deploys provisioning artifacts. + footer: + Change-type: patch + change-type: patch + Signed-off-by: Alex Gonzalez + signed-off-by: Alex Gonzalez + author: Alex Gonzalez + nested: [] + version: balena-yocto-scripts-1.21.10 + title: "" + date: 2024-05-02T09:18:16.451Z + - commits: + - subject: "balena-lib: improve base tag detection" + hash: 872bb3b1df920b026b524e041bf4f4f7c422cb2f + body: > + When a ESR release is deployed a tag with the base meta-balena + version + + is created. This is used by the API to check for a valid OS + version + + for updates. + + + The current mechanism to find the base version only provides an + ESR + + version for the first commit after the branch has been created. + + + Using merge-base to find the common ancestor and `tag + --points-at` to + + find the actual tag works for all commits after the branch is + created. + footer: + Change-type: patch + change-type: patch + Signed-off-by: Alex Gonzalez + signed-off-by: Alex Gonzalez + author: Alex Gonzalez + nested: [] + version: balena-yocto-scripts-1.21.9 + title: "" + date: 2024-04-30T14:17:29.958Z + - commits: + - subject: Support commit tags when extracting version tag from git + hash: 98fec51fae4721224e64cfec52480a5f17b8e271 + body: > + Git describe does not include commit tags by default, and only + annotated tags are shown. + + + This behaviour was fine until a recent CI issue changed the + types of tags used to version the repositories. + + + This commit allows supporting of both types while the CI issue + is investigated. + footer: + Change-type: patch + change-type: patch + author: Kyle Harding + nested: [] + version: balena-yocto-scripts-1.21.8 + title: "" + date: 2024-04-29T17:17:30.203Z + - commits: + - subject: Add missing $select for release_asset.asset_key + hash: 4f4f65c0b2cace726eccbea5d5ed8ed0f8302e54 + body: "" + footer: + Change-type: patch + change-type: patch + author: Thodoris Greasidis + nested: [] + version: balena-yocto-scripts-1.21.7 + title: "" + date: 2024-04-19T14:22:55.708Z + - commits: + - subject: 'Revert "balena-build: avoid using device-type as a prefix in yocto + sstate"' + hash: 7a85083784a3225debf2276a978558df5a307ec7 + body: | + This reverts commit f4a9566941083770151ebe3edd78e9866b4856fb. + footer: + Change-type: patch + change-type: patch + author: Kyle Harding + nested: [] + version: balena-yocto-scripts-1.21.6 + title: "" + date: 2024-03-25T14:58:37.715Z + - commits: + - subject: Merge AMI publishing dependencies into yocto-build-env + hash: c208a885e849b1b49231de31268a482344220d38 + body: | + This allows us to build and publish fewer helper images. + footer: + Change-type: patch + change-type: patch + Signed-off-by: Kyle Harding + signed-off-by: Kyle Harding + author: Kyle Harding + nested: [] + version: balena-yocto-scripts-1.21.5 + title: "" + date: 2024-03-14T19:05:22.682Z + - commits: + - subject: "balena-build: avoid using device-type as a prefix in yocto sstate" + hash: f4a9566941083770151ebe3edd78e9866b4856fb + body: > + Yocto already splits the build sstate by target arch, native + arch, toolchains, and machine where applicable. + + + Keeping the caches separated by device type prevents sharing of + common cache steps between identical toolchains and + architectures. + footer: + Change-type: patch + change-type: patch + author: Kyle Harding + nested: [] + version: balena-yocto-scripts-1.21.4 + title: "" + date: 2024-03-13T18:16:12.920Z + version: 5.3.3+rev2 + title: "" + date: 2024-05-13T14:56:25.641Z - commits: - subject: Update contracts to d06ad25196f67c4d20ad309941192fdddf80e307 hash: 5b620cb48e14c9326e5c44b9f4881001de454448 diff --git a/CHANGELOG.md b/CHANGELOG.md index 1514d9e5b..d5f504dcc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,51 @@ Change log ----------- +# v5.3.3+rev2 +## (2024-05-13) + + +
+ Update balena-yocto-scripts to 466d6ec592656bb950a393fc1c7a5d5ff4cf3455 [Self-hosted Renovate Bot] + +> ## balena-yocto-scripts-1.21.10 +> ### (2024-05-02) +> +> * balena-deploy: deploy usbboot if available [Alex Gonzalez] +> +> ## balena-yocto-scripts-1.21.9 +> ### (Invalid date) +> +> * balena-lib: improve base tag detection [Alex Gonzalez] +> +> ## balena-yocto-scripts-1.21.8 +> ### (2024-04-29) +> +> * Support commit tags when extracting version tag from git [Kyle Harding] +> +> ## balena-yocto-scripts-1.21.7 +> ### (2024-04-19) +> +> * Add missing $select for release_asset.asset_key [Thodoris Greasidis] +> +> ## balena-yocto-scripts-1.21.6 +> ### (2024-03-25) +> +> * Revert "balena-build: avoid using device-type as a prefix in yocto sstate" [Kyle Harding] +> +> ## balena-yocto-scripts-1.21.5 +> ### (2024-03-14) +> +> * Merge AMI publishing dependencies into yocto-build-env [Kyle Harding] +> +> ## balena-yocto-scripts-1.21.4 +> ### (2024-03-13) +> +> * balena-build: avoid using device-type as a prefix in yocto sstate [Kyle Harding] +> + +
+ # v5.3.3+rev1 ## (2024-05-12) diff --git a/VERSION b/VERSION index 1fae4dd8a..23103987a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -5.3.3+rev1 \ No newline at end of file +5.3.3+rev2 \ No newline at end of file