Skip to content

Commit fc1e825

Browse files
v5.3.19+rev5
1 parent 090ac95 commit fc1e825

File tree

3 files changed

+146
-1
lines changed

3 files changed

+146
-1
lines changed

.versionbot/CHANGELOG.yml

+114
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,117 @@
1+
- commits:
2+
- subject: Update balena-yocto-scripts to 64c93852695af74dc1ddb355da0c8e2ff464638c
3+
hash: 313c5fa52576070bba6d45aabc7317d40a08be44
4+
body: Update balena-yocto-scripts
5+
footer:
6+
Changelog-entry: Update balena-yocto-scripts to 64c93852695af74dc1ddb355da0c8e2ff464638c
7+
changelog-entry: Update balena-yocto-scripts to 64c93852695af74dc1ddb355da0c8e2ff464638c
8+
author: Self-hosted Renovate Bot
9+
nested:
10+
- commits:
11+
- subject: Fix quoting of $GITHUB_OUTPUT
12+
hash: 5f56f3236d8ee3d764e46e419aa2431dd42d45ff
13+
body: |
14+
We had typos in two cases, in which we missed the opening quote.
15+
footer:
16+
Signed-off-by: Leandro Motta Barros <leandro@balena.io>
17+
signed-off-by: Leandro Motta Barros <leandro@balena.io>
18+
Change-type: patch
19+
change-type: patch
20+
author: Leandro Motta Barros
21+
nested: []
22+
version: balena-yocto-scripts-1.24.2
23+
title: ""
24+
date: 2024-07-02T00:54:39.074Z
25+
- commits:
26+
- subject: Simplify check for secure boot
27+
hash: be189f7e2f6fb26f778f29e1f955a1cdd01bc8a4
28+
body: >
29+
We were previously introducing a variable that was essentially
30+
31+
replicating the contents of an input. This commit makes use of
32+
the input
33+
34+
directly.
35+
36+
37+
Incidentally, the previous code also had a small bug/typo, in
38+
which we
39+
40+
mixed a test for string length with a test for string equality.
41+
footer:
42+
Signed-off-by: Leandro Motta Barros <leandro@balena.io>
43+
signed-off-by: Leandro Motta Barros <leandro@balena.io>
44+
Change-type: patch
45+
change-type: patch
46+
author: Leandro Motta Barros
47+
nested: []
48+
version: balena-yocto-scripts-1.24.1
49+
title: ""
50+
date: 2024-06-27T20:35:29.474Z
51+
- commits:
52+
- subject: Support runner selection in the test matrix
53+
hash: d409cb0fbaa307a179973b60e5faff8cda6bc34b
54+
body: >
55+
Default to self-hosted X64 with KVM for now to align with
56+
Jenkins but in the future
57+
58+
we should consider using GitHub hosted runners for the testbot
59+
workers.
60+
footer:
61+
Change-type: patch
62+
change-type: patch
63+
Signed-off-by: Kyle Harding <kyle@balena.io>
64+
signed-off-by: Kyle Harding <kyle@balena.io>
65+
author: Kyle Harding
66+
nested: []
67+
- subject: Allow both combinatorial and include syntax for test_matrix
68+
hash: 2bfc3a0d72830626366cf210f4fe9a0e649688c5
69+
body: >
70+
The include syntax allows full control over settings used
71+
72+
in each test job, but the combinatorial is simpler to write
73+
74+
for basic use cases.
75+
76+
77+
Rather than force one, we can allow both and default to the
78+
simple
79+
80+
syntax.
81+
82+
83+
Marking as minor since the input syntax has changed, but isn't
84+
85+
currently used in production anywhere.
86+
footer:
87+
Change-type: minor
88+
change-type: minor
89+
Signed-off-by: Kyle Harding <kyle@balena.io>
90+
signed-off-by: Kyle Harding <kyle@balena.io>
91+
author: Kyle Harding
92+
nested: []
93+
version: balena-yocto-scripts-1.24.0
94+
title: ""
95+
date: 2024-06-26T21:26:13.711Z
96+
- commits:
97+
- subject: Refactor secrets and variables to use environments
98+
hash: c46eb9cfa4a272f00af4029c31e355477169802a
99+
body: |
100+
Reduce the required secrets and inputs required by
101+
relying on vars and secrets set in each GitHub Environment.
102+
footer:
103+
Change-type: patch
104+
change-type: patch
105+
Signed-off-by: Kyle Harding <kyle@balena.io>
106+
signed-off-by: Kyle Harding <kyle@balena.io>
107+
author: Kyle Harding
108+
nested: []
109+
version: balena-yocto-scripts-1.23.1
110+
title: ""
111+
date: 2024-06-26T12:43:22.833Z
112+
version: 5.3.19+rev5
113+
title: ""
114+
date: 2024-07-02T06:02:58.323Z
1115
- commits:
2116
- subject: Update layers/meta-openembedded to
3117
8e297cdc841c6cad34097f00a6903ba25edfc153

CHANGELOG.md

+31
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,37 @@
11
Change log
22
-----------
33

4+
# v5.3.19+rev5
5+
## (2024-07-02)
6+
7+
8+
<details>
9+
<summary> Update balena-yocto-scripts to 64c93852695af74dc1ddb355da0c8e2ff464638c [Self-hosted Renovate Bot] </summary>
10+
11+
> ## balena-yocto-scripts-1.24.2
12+
> ### (2024-07-02)
13+
>
14+
> * Fix quoting of $GITHUB_OUTPUT [Leandro Motta Barros]
15+
>
16+
> ## balena-yocto-scripts-1.24.1
17+
> ### (2024-06-27)
18+
>
19+
> * Simplify check for secure boot [Leandro Motta Barros]
20+
>
21+
> ## balena-yocto-scripts-1.24.0
22+
> ### (2024-06-26)
23+
>
24+
> * Support runner selection in the test matrix [Kyle Harding]
25+
> * Allow both combinatorial and include syntax for test_matrix [Kyle Harding]
26+
>
27+
> ## balena-yocto-scripts-1.23.1
28+
> ### (2024-06-26)
29+
>
30+
> * Refactor secrets and variables to use environments [Kyle Harding]
31+
>
32+
33+
</details>
34+
435
# v5.3.19+rev4
536
## (2024-06-20)
637

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.3.19+rev4
1+
5.3.19+rev5

0 commit comments

Comments
 (0)