v3.0.0
This commit is contained in:
parent
a1736991c3
commit
6ea2c91f90
3 changed files with 135 additions and 1 deletions
|
@ -1,3 +1,118 @@
|
|||
- commits:
|
||||
- subject: Update layers/meta-balena to 05dfed30f590eb14e1721a471262d64e798dea46
|
||||
hash: bfb5abfb35dd3c2797c63a83f3ca25bfeda97d43
|
||||
body: Update layers/meta-balena
|
||||
footer:
|
||||
Changelog-entry: Update layers/meta-balena to 05dfed30f590eb14e1721a471262d64e798dea46
|
||||
changelog-entry: Update layers/meta-balena to 05dfed30f590eb14e1721a471262d64e798dea46
|
||||
author: Self-hosted Renovate Bot
|
||||
nested:
|
||||
- commits:
|
||||
- subject: "mkfs-hostapp-native: Allow the compile task to access the network"
|
||||
hash: 92fe10a9db2eb32ca1ac1909e37a1ab2f4b3328d
|
||||
body: ""
|
||||
footer:
|
||||
Change-type: patch
|
||||
change-type: patch
|
||||
Signed-off-by: Alex Gonzalez <alexg@balena.io>
|
||||
signed-off-by: Alex Gonzalez <alexg@balena.io>
|
||||
author: Alex Gonzalez
|
||||
nested: []
|
||||
- subject: "mkfs-hostapp-native: Use image tags instead of parsing docker output"
|
||||
hash: 2597705df7f8a153f878075a5373c45d28b624b8
|
||||
body: >
|
||||
From docker 23.0 `docker build` is an alias to `docker buildkit
|
||||
build`
|
||||
|
||||
and the output is not parseable in the same way.
|
||||
|
||||
|
||||
To avoid using unstable outputs as API, use image tags instead.
|
||||
|
||||
|
||||
Fixes #3035
|
||||
footer:
|
||||
Change-type: patch
|
||||
change-type: patch
|
||||
Signed-off-by: Alex Gonzalez <alexg@balena.io>
|
||||
signed-off-by: Alex Gonzalez <alexg@balena.io>
|
||||
author: Alex Gonzalez
|
||||
nested: []
|
||||
- subject: "kernel-headers-test: Use image tags instead of parsing docker output"
|
||||
hash: b69d24466bd973e08224d9238f748dd117262d82
|
||||
body: >
|
||||
From docker 23.0 `docker build` is an alias to `docker buildkit
|
||||
build`
|
||||
|
||||
and the output is not parseable in the same way.
|
||||
|
||||
|
||||
To avoid using unstable outputs as API, use image tags instead.
|
||||
footer:
|
||||
Change-type: patch
|
||||
change-type: patch
|
||||
Signed-off-by: Alex Gonzalez <alexg@balena.io>
|
||||
signed-off-by: Alex Gonzalez <alexg@balena.io>
|
||||
author: Alex Gonzalez
|
||||
nested: []
|
||||
- subject: "kernel-headers-test: Allow network access for compile task"
|
||||
hash: 12d8df5344b017ee1ddce568870f31e32974e51b
|
||||
body: ""
|
||||
footer:
|
||||
Change-type: patch
|
||||
change-type: patch
|
||||
Signed-off-by: Alex Gonzalez <alexg@balena.io>
|
||||
signed-off-by: Alex Gonzalez <alexg@balena.io>
|
||||
author: Alex Gonzalez
|
||||
nested: []
|
||||
- subject: "kernel-modules-headers: use kernel-devsrc to provide kernel headers"
|
||||
hash: 9143fbe4f99fdfd5d61502b1ca630f6055027dce
|
||||
body: >
|
||||
Both `kernel-modules-headers` and `kernel-devsrc` provide kernel
|
||||
headers
|
||||
|
||||
since Yocto Thud switched `kernel-devsrc` from full source to just
|
||||
|
||||
kernel headers.
|
||||
|
||||
|
||||
The only difference between them is that `kernel-modules-headers` builds
|
||||
|
||||
some target binaries which need to be built with `make modules_prepare`
|
||||
|
||||
when using `kernel-devsrc` headers. These binaries depend on libc version
|
||||
|
||||
matching though so they have shown to be problematic.
|
||||
|
||||
|
||||
This commit removes the `kernel-modules-headers` recipe and modifies
|
||||
|
||||
`kernel-devsrc` to replace it. The deployed artifact remains named as
|
||||
|
||||
`kernel-modules-headers` as it's a more descriptive name.
|
||||
|
||||
|
||||
This introduces a breaking change in the balenaOS API as customers that
|
||||
|
||||
are using `kernel-modules-headers` to build external kernel modules will
|
||||
|
||||
now need to issue a `make modules_prepare` as part of their build scripts.
|
||||
|
||||
|
||||
Fixes #1822
|
||||
footer:
|
||||
Change-type: major
|
||||
change-type: major
|
||||
Signed-off-by: Alex Gonzalez <alexg@balena.io>
|
||||
signed-off-by: Alex Gonzalez <alexg@balena.io>
|
||||
author: Alex Gonzalez
|
||||
nested: []
|
||||
version: meta-balena-3.0.0
|
||||
title: ""
|
||||
date: 2023-07-04T12:58:06.352Z
|
||||
version: 3.0.0
|
||||
title: ""
|
||||
date: 2023-07-04T17:47:12.970Z
|
||||
- commits:
|
||||
- subject: Update contracts to 6e3d563f610303a24d0cbf43839919e451879899
|
||||
hash: d219e479b251fd0c701ad9d04b8d0cf224225ef0
|
||||
|
|
19
CHANGELOG.md
19
CHANGELOG.md
|
@ -1,6 +1,25 @@
|
|||
Change log
|
||||
-----------
|
||||
|
||||
# v3.0.0
|
||||
## (2023-07-04)
|
||||
|
||||
|
||||
<details>
|
||||
<summary> Update layers/meta-balena to 05dfed30f590eb14e1721a471262d64e798dea46 [Self-hosted Renovate Bot] </summary>
|
||||
|
||||
> ## meta-balena-3.0.0
|
||||
> ### (2023-07-04)
|
||||
>
|
||||
> * mkfs-hostapp-native: Allow the compile task to access the network [Alex Gonzalez]
|
||||
> * mkfs-hostapp-native: Use image tags instead of parsing docker output [Alex Gonzalez]
|
||||
> * kernel-headers-test: Use image tags instead of parsing docker output [Alex Gonzalez]
|
||||
> * kernel-headers-test: Allow network access for compile task [Alex Gonzalez]
|
||||
> * kernel-modules-headers: use kernel-devsrc to provide kernel headers [Alex Gonzalez]
|
||||
>
|
||||
|
||||
</details>
|
||||
|
||||
# v2.115.18+rev1
|
||||
## (2023-06-29)
|
||||
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
2.115.18+rev1
|
||||
3.0.0
|
Loading…
Add table
Reference in a new issue