Skip to content

Commit

Permalink
v5.1.43
Browse files Browse the repository at this point in the history
  • Loading branch information
flowzone-app[bot] authored Feb 29, 2024
1 parent 7c3fb43 commit 1fc946c
Show file tree
Hide file tree
Showing 3 changed files with 362 additions and 1 deletion.
281 changes: 281 additions & 0 deletions .versionbot/CHANGELOG.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,284 @@
- commits:
- subject: Update layers/meta-balena to 87036c0cd6a4e23b55300c64f62158328e0eb779
hash: 3101227ab5dfcce252c09f5a075b42ea01f26828
body: Update layers/meta-balena
footer:
Changelog-entry: Update layers/meta-balena to 87036c0cd6a4e23b55300c64f62158328e0eb779
changelog-entry: Update layers/meta-balena to 87036c0cd6a4e23b55300c64f62158328e0eb779
author: Self-hosted Renovate Bot
nested:
- commits:
- subject: Start os-config service after extracting CA
hash: 0a531b5787e9dfd11a851fa36babd5374135e935
body: |
OS-config should always run after extracting balena CA
to prevent race conditions
footer:
Change-type: patch
change-type: patch
author: jaomaloy
nested: []
version: meta-balena-5.1.43
title: ""
date: 2024-02-28T09:12:11.684Z
- commits:
- subject: Update balena-supervisor to v16
hash: 2fe4e273e180d68a6eb756ce046352dc6a818f44
body: |
Update balena-supervisor from 15.3.1 to 16.1.0
footer:
Change-type: patch
change-type: patch
author: Self-hosted Renovate Bot
nested:
- commits:
- subject: Add support for repeated overlays
hash: bda1bac04c708ea0c35318604f926c035ff0883b
body: >
RPI firmware configuration allows repeating overlays to
define

configurations on multiple devices. For instance, for configuring

multiple `ads` devices, `config.txt` needs to be setup this way


```

dtoverlay=ads1115,addr=0x48

dtoverlay=ads1115,addr=0x49

```


Before this change, the supervisor would interpret both lines as

belonging to the same overlay, preventing users from configuring multiple

devices, and leading to a loop when trying to apply configurations with

repeated overlays coming from the cloud side.
footer:
Change-type: minor
change-type: minor
author: Felipe Lalanne
nested: []
version: balena-supervisor-16.1.0
title: ""
date: 2024-02-27T19:30:49.055Z
- commits:
- subject: Fix support for rsync deltas
hash: 24e222045ac511cd4fbb3be66e57eb678a29d854
body: >
Rsync (v2) deltas have been broken since [Supervisor
v14](https://github.com/balena-os/balena-supervisor/commit/460c3ba0aab31d18a02e3f5dda1838691768c494).
While considered legacy,

they are still used by a few customers with devices running OS < 2.47.1.

This should fix v2 delta support for those devices until we can

completely remove rsync deltas from the supervisor
footer:
Change-type: patch
change-type: patch
author: Felipe Lalanne
nested: []
version: balena-supervisor-16.0.4
title: ""
date: 2024-02-27T15:06:23.251Z
- commits:
- subject: Patch default dtparam handling in config.txt
hash: 3fd035c5bdc88993af66c5f2bc3a6300c44f4ed4
body: >
This commit completes the list of default / board-wide
dtparams

to include some `baudrate` and `vc` i2c params.
footer:
Change-type: patch
change-type: patch
Signed-off-by: Christina Ying Wang <[email protected]>
signed-off-by: Christina Ying Wang <[email protected]>
author: Christina Ying Wang
nested: []
version: balena-supervisor-16.0.3
title: ""
date: 2024-02-21T21:03:18.619Z
- commits:
- subject: Patch config.txt backend to return array configs correctly
hash: e22253ce6ebc40e865b5bc26844901026f04ec4e
body: >
Previously, getBootConfig() of the config.txt backend
was omitting

array configurations such as gpio settings, thus resulting in the SV

mistakenly assuming that boot config had not been applied, since gpio

would not be in current config.txt config but would be in target config.

This resulted in SV entering an infinite loop of attempting to apply the

gpio config when it wasn't necessary.
footer:
Change-type: patch
change-type: patch
Signed-off-by: Christina Ying Wang <[email protected]>
signed-off-by: Christina Ying Wang <[email protected]>
author: Christina Ying Wang
nested: []
version: balena-supervisor-16.0.2
title: ""
date: 2024-02-17T02:44:51.708Z
- commits:
- subject: Update balena-io/deploy-to-balena-action to v2.0.27
hash: ac12d9a50c1569229ff97459b7306cd5f7f4faad
body: Update balena-io/deploy-to-balena-action
footer:
Changelog-entry: Update balena-io/deploy-to-balena-action to v2.0.27
changelog-entry: Update balena-io/deploy-to-balena-action to v2.0.27
Change-type: patch
change-type: patch
author: Self-hosted Renovate Bot
nested: []
version: balena-supervisor-16.0.1
title: ""
date: 2024-02-12T19:56:17.362Z
- commits:
- subject: Add special case for base DTO params on RPI config
hash: 6e6a796da5ecc846248eae4c8495bc626964c038
body: >
While ordering is important in the RPI firmware
configuration file (config.txt),

some dt params are by default considered part of the base dt overlay

if they are not used by other overlays.

Unfortunately the [list of dtparams](https://github.com/raspberrypi/firmware/blob/master/boot/overlays/README#L133)

is too long to add all of them as exceptions, but we can add the params

used in the default config.txt provided in OS images, to avoid reboots

when updating to this new supervisor and correctly parsing the

provisioning config.txt as variables.


While this addition handles most common scenarios, there is still a

chance a user may have use other base overlay dt params in the initial

config, in which case those will be interpreted according to the

relative ordering
footer:
Change-type: patch
change-type: patch
author: Felipe Lalanne
nested: []
- subject: Fix processing of dtoverlay/dtparams on config.txt
hash: 9546a1a3b1b919649dc401b63f0ff0dedad918b0
body: >
DT overlays and DT params need to be consumed in the
order that they

appear on the file. DT params apply to the last dtoverlay defined on the

file, or to the base overlay.


This commit updates config.txt parsing to consider this ordering, and it

also ensures global dtparams are written first so they cannot be

overriden by later overlays.


Because of the more strict parsing method, it is possible that existing

HOST_CONFIG vars do not match the interpretation of the parser. If

that's the case, the supervisor will re-apply the target state which

will cause the device to reboot.
footer:
Change-type: major
change-type: major
author: Felipe Lalanne
nested: []
version: balena-supervisor-16.0.0
title: ""
date: 2024-02-08T21:45:41.648Z
version: meta-balena-5.1.42
title: ""
date: 2024-02-28T00:23:42.396Z
- commits:
- subject: "tests: hup: use secondary antenna for revpi4"
hash: d353a984983e58ca187a678b03bf5420672940a5
body: ""
footer:
Change-type: patch
change-type: patch
Signed-off-by: Ryan Cooke <[email protected]>
signed-off-by: Ryan Cooke <[email protected]>
author: rcooke-warwick
nested: []
- subject: "tests: cloud : use secondary antenna for revpi4"
hash: 1bbf59431281805b88303dce2747922c0a78eb97
body: ""
footer:
Change-type: patch
change-type: patch
Signed-off-by: Ryan Cooke <[email protected]>
signed-off-by: Ryan Cooke <[email protected]>
author: rcooke-warwick
nested: []
- subject: "tests: os: use secondary antenna for revpi4"
hash: 67f34c93af43420199e729956d8b47d5e32a0601
body: ""
footer:
Change-type: patch
change-type: patch
Signed-off-by: Ryan Cooke <[email protected]>
signed-off-by: Ryan Cooke <[email protected]>
author: rcooke-warwick
nested: []
version: meta-balena-5.1.41
title: ""
date: 2024-02-27T12:56:34.503Z
- commits:
- subject: Update tests/leviathan digest to d71ce8f
hash: 813e7442dad72eb0dc8994a1ff09b4cc3f1e717a
body: Update tests/leviathan
footer:
Change-type: patch
change-type: patch
author: Self-hosted Renovate Bot
nested:
- commits:
- subject: ad extra autokit setup information, and basic troubleshooting
hash: 8245d549f586330a1805ea4ad998622f735c347b
body: ""
footer:
Change-type: patch
change-type: patch
Signed-off-by: Ryan Cooke <[email protected]>
signed-off-by: Ryan Cooke <[email protected]>
author: rcooke-warwick
nested: []
version: leviathan-2.29.62
title: ""
date: 2024-02-26T11:59:24.765Z
version: meta-balena-5.1.40
title: ""
date: 2024-02-26T17:53:35.831Z
version: 5.1.43
title: ""
date: 2024-02-29T16:04:38.534Z
- commits:
- subject: Update layers/poky to 6289654c3067ce0485f3dc84677d4bbeeeb3b01c
hash: 57ec0f9575135539e1142427a5d311f3e1714731
Expand Down
80 changes: 80 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,86 @@
Change log
-----------

# v5.1.43
## (2024-02-29)


<details>
<summary> Update layers/meta-balena to 87036c0cd6a4e23b55300c64f62158328e0eb779 [Self-hosted Renovate Bot] </summary>

> ## meta-balena-5.1.43
> ### (2024-02-28)
>
> * Start os-config service after extracting CA [jaomaloy]
>
> ## meta-balena-5.1.42
> ### (2024-02-28)
>
>
> <details>
> <summary> Update balena-supervisor to v16 [Self-hosted Renovate Bot] </summary>
>
>> ### balena-supervisor-16.1.0
>> #### (2024-02-27)
>>
>> * Add support for repeated overlays [Felipe Lalanne]
>>
>> ### balena-supervisor-16.0.4
>> #### (2024-02-27)
>>
>> * Fix support for rsync deltas [Felipe Lalanne]
>>
>> ### balena-supervisor-16.0.3
>> #### (2024-02-21)
>>
>> * Patch default dtparam handling in config.txt [Christina Ying Wang]
>>
>> ### balena-supervisor-16.0.2
>> #### (2024-02-17)
>>
>> * Patch config.txt backend to return array configs correctly [Christina Ying Wang]
>>
>> ### balena-supervisor-16.0.1
>> #### (2024-02-12)
>>
>> * Update balena-io/deploy-to-balena-action to v2.0.27 [Self-hosted Renovate Bot]
>>
>> ### balena-supervisor-16.0.0
>> #### (2024-02-08)
>>
>> * Add special case for base DTO params on RPI config [Felipe Lalanne]
>> * Fix processing of dtoverlay/dtparams on config.txt [Felipe Lalanne]
>>
>
> </details>
>
>
> ## meta-balena-5.1.41
> ### (2024-02-27)
>
> * tests: hup: use secondary antenna for revpi4 [rcooke-warwick]
> * tests: cloud : use secondary antenna for revpi4 [rcooke-warwick]
> * tests: os: use secondary antenna for revpi4 [rcooke-warwick]
>
> ## meta-balena-5.1.40
> ### (2024-02-26)
>
>
> <details>
> <summary> Update tests/leviathan digest to d71ce8f [Self-hosted Renovate Bot] </summary>
>
>> ### leviathan-2.29.62
>> #### (2024-02-26)
>>
>> * ad extra autokit setup information, and basic troubleshooting [rcooke-warwick]
>>
>
> </details>
>
>
</details>

# v5.1.39+rev4
## (2024-02-29)

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.1.39+rev4
5.1.43

0 comments on commit 1fc946c

Please sign in to comment.