mirror of
https://github.com/balena-io/open-balena.git
synced 2025-06-24 10:18:15 +00:00
Compare commits
89 Commits
Author | SHA1 | Date | |
---|---|---|---|
d340549565 | |||
6f6e3c64f6 | |||
44d4381863 | |||
5ded759efd | |||
ac13a0cb43 | |||
933db15ee9 | |||
2c7e62168d | |||
2495a6c25b | |||
d909ec4ee4 | |||
4e1f2fae32 | |||
7e21632085 | |||
cd55ca1b23 | |||
7caf758f8a | |||
6319b3f8da | |||
83a9a449fb | |||
96dbdedea4 | |||
de680fa565 | |||
e125ad8f30 | |||
d6e7fabb80 | |||
3889d86ee2 | |||
96234596e9 | |||
2a5ad3153e | |||
481b8a07b5 | |||
bb0c69710d | |||
54bd93a2d3 | |||
5aaa5d1104 | |||
325d5daabe | |||
1dabd4b102 | |||
e19289a5db | |||
55a5a5ac95 | |||
9586da739b | |||
9d39951cf6 | |||
398e8b1f48 | |||
e380aadca2 | |||
cba61fcde0 | |||
ae7e3ea7ee | |||
ca4452ba22 | |||
583adb3c50 | |||
4a48a4f095 | |||
9081a2e448 | |||
7ec78f008d | |||
be6a330848 | |||
c3778f7d1b | |||
dbecc2ad24 | |||
bdad6f794c | |||
85168dc510 | |||
7e4914ef85 | |||
e09b87208c | |||
f9f707c3db | |||
33359c7a09 | |||
7260a5e23c | |||
a0f617a773 | |||
f4cacda565 | |||
3ccfbae266 | |||
712bf19b03 | |||
ae77214e4d | |||
795a9c0d1c | |||
eadf5ca744 | |||
8eb54428a5 | |||
6d0dfea043 | |||
8419d57d46 | |||
36c2247c80 | |||
4d89e5a6e5 | |||
3cf2d569e9 | |||
cecca9465f | |||
61e0344404 | |||
91dafbb153 | |||
b9049e9c24 | |||
bd9fa1140a | |||
ee44405046 | |||
2b4890139e | |||
7865349f21 | |||
8d66734339 | |||
3d8ad349c8 | |||
59ae072a92 | |||
0802e2e4a8 | |||
e6f0b71006 | |||
1a38782e69 | |||
435e0dc961 | |||
c1133d1f16 | |||
d6ebff4ee4 | |||
497e39574c | |||
f2498f14e2 | |||
3255b75cec | |||
2363b21a1c | |||
4cdaf0e433 | |||
e8cdf86d17 | |||
72c18c5de2 | |||
1f5a6b4dc8 |
10
.github/workflows/tests.yml
vendored
10
.github/workflows/tests.yml
vendored
@ -76,6 +76,7 @@ jobs:
|
||||
- uses: actions/checkout@85e6279cec87321a52edac9c87bce653a07cf6c2
|
||||
with:
|
||||
persist-credentials: false
|
||||
ref: ${{ github.event.pull_request.head.sha }}
|
||||
|
||||
# https://github.com/unfor19/install-aws-cli-action
|
||||
- name: Setup awscli
|
||||
@ -242,9 +243,8 @@ jobs:
|
||||
with_backoff balena login --token '${{ secrets.BALENA_API_KEY }}'
|
||||
|
||||
pr_id='${{ github.event.pull_request.id }}'
|
||||
head_sha='${{ github.event.pull_request.head.sha || github.event.head_commit.id }}'
|
||||
release_id="$(with_backoff balena releases '${{ matrix.fleet }}' --json \
|
||||
| jq -r --arg pr_id "${pr_id}" --arg head_sha "${head_sha}" '.[]
|
||||
| jq -r --arg pr_id "${pr_id}" --arg head_sha "${COMMIT}" '.[]
|
||||
| select(.release_tag[].tag_key=="balena-ci-commit-sha")
|
||||
| select(.release_tag[].value==$head_sha)
|
||||
| select(.release_tag[].tag_key=="balena-ci-id")
|
||||
@ -256,6 +256,9 @@ jobs:
|
||||
|
||||
with_backoff balena device ${{ steps.register-test-device.outputs.balena_device_uuid }}
|
||||
|
||||
env:
|
||||
COMMIT: ${{ github.event.pull_request.head.sha }}
|
||||
|
||||
- name: configure balenaOS test device environment
|
||||
if: matrix.target == 'balena-public-pki'
|
||||
run: |
|
||||
@ -856,7 +859,6 @@ jobs:
|
||||
env:
|
||||
ATTEMPTS: 2
|
||||
AWS_DEFAULT_REGION: ${{ vars.AWS_REGION || 'us-east-1' }}
|
||||
COMMIT: ${{ github.event.pull_request.head.sha || github.event.head_commit.id || github.event.pull_request.head.ref }}
|
||||
|
||||
- name: SUT&DUT (Ubuntu/compose)
|
||||
if: matrix.target == 'compose-private-pki'
|
||||
@ -910,7 +912,7 @@ jobs:
|
||||
# docs/getting-started.md
|
||||
cmds="set -ax \
|
||||
&& cloud-init status --wait --long && cat </var/log/cloud-init-output.log \
|
||||
&& sudo -u balena git clone https://token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git /home/balena/open-balena \
|
||||
&& sudo -u balena git clone https://token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.event.pull_request.head.repo.full_name }}.git /home/balena/open-balena \
|
||||
&& sudo -u balena git config --global --add safe.directory /home/balena/open-balena \
|
||||
&& cd /home/balena/open-balena \
|
||||
&& sudo -u balena git checkout ${COMMIT} \
|
||||
|
@ -1,3 +1,383 @@
|
||||
- commits:
|
||||
- subject: Update balena/open-balena-vpn Docker tag to v11.32.4
|
||||
hash: 44d438186397c0f13b932c9c187c6e11931bb205
|
||||
body: |
|
||||
Update balena/open-balena-vpn from 11.31.2 to 11.32.4
|
||||
footer:
|
||||
Change-type: patch
|
||||
change-type: patch
|
||||
author: balena-renovate[bot]
|
||||
nested: []
|
||||
version: 4.1.381
|
||||
title: ""
|
||||
date: 2025-03-14T00:37:25.876Z
|
||||
- commits:
|
||||
- subject: Update balena/open-balena-api Docker tag to v34.10.1
|
||||
hash: 933db15ee9effc2f410c6b0b5c1b1ac5fb81f380
|
||||
body: |
|
||||
Update balena/open-balena-api from 34.9.5 to 34.10.1
|
||||
footer:
|
||||
Change-type: patch
|
||||
change-type: patch
|
||||
author: balena-renovate[bot]
|
||||
nested: []
|
||||
version: 4.1.380
|
||||
title: ""
|
||||
date: 2025-03-14T00:09:29.956Z
|
||||
- commits:
|
||||
- subject: Update balena/open-balena-vpn Docker tag to v11.31.2
|
||||
hash: d909ec4ee42346af449d132e35a56db5e9bbdf0b
|
||||
body: |
|
||||
Update balena/open-balena-vpn from 11.31.1 to 11.31.2
|
||||
footer:
|
||||
Change-type: patch
|
||||
change-type: patch
|
||||
author: balena-renovate[bot]
|
||||
nested: []
|
||||
version: 4.1.379
|
||||
title: ""
|
||||
date: 2025-03-13T23:22:09.103Z
|
||||
- commits:
|
||||
- subject: Update dependency balena-io/balena-cli to v21
|
||||
hash: cd55ca1b2336ca79cef05c4e0a08a250fb081383
|
||||
body: |
|
||||
Update balena-io/balena-cli from 20.2.9 to 21.1.0
|
||||
footer:
|
||||
Change-type: patch
|
||||
change-type: patch
|
||||
author: balena-renovate[bot]
|
||||
nested: []
|
||||
version: 4.1.378
|
||||
title: ""
|
||||
date: 2025-03-13T22:51:18.717Z
|
||||
- commits:
|
||||
- subject: Update balena/open-balena-api Docker tag to v34.9.5
|
||||
hash: 83a9a449fb96c5572323d899aeb8d5d693c05fb3
|
||||
body: |
|
||||
Update balena/open-balena-api from 34.9.4 to 34.9.5
|
||||
footer:
|
||||
Change-type: patch
|
||||
change-type: patch
|
||||
author: balena-renovate[bot]
|
||||
nested: []
|
||||
version: 4.1.377
|
||||
title: ""
|
||||
date: 2025-03-07T18:17:40.690Z
|
||||
- commits:
|
||||
- subject: Update balena/open-balena-api Docker tag to v34.9.4
|
||||
hash: e125ad8f3047b0de0e99d230c9f85acddb0da799
|
||||
body: |
|
||||
Update balena/open-balena-api from 34.9.3 to 34.9.4
|
||||
footer:
|
||||
Change-type: patch
|
||||
change-type: patch
|
||||
author: balena-renovate[bot]
|
||||
nested: []
|
||||
version: 4.1.376
|
||||
title: ""
|
||||
date: 2025-03-07T17:52:06.658Z
|
||||
- commits:
|
||||
- subject: Update balena/open-balena-api Docker tag to v34.9.3
|
||||
hash: 96234596e9a12b6c3575257a339c73414cb07a17
|
||||
body: |
|
||||
Update balena/open-balena-api from 34.9.2 to 34.9.3
|
||||
footer:
|
||||
Change-type: patch
|
||||
change-type: patch
|
||||
author: balena-renovate[bot]
|
||||
nested: []
|
||||
version: 4.1.375
|
||||
title: ""
|
||||
date: 2025-03-07T17:21:59.882Z
|
||||
- commits:
|
||||
- subject: Update balena/open-balena-api Docker tag to v34.9.2
|
||||
hash: bb0c69710db3c7a5b386533e966fb554ac2a55c5
|
||||
body: |
|
||||
Update balena/open-balena-api from 34.9.1 to 34.9.2
|
||||
footer:
|
||||
Change-type: patch
|
||||
change-type: patch
|
||||
author: balena-renovate[bot]
|
||||
nested: []
|
||||
version: 4.1.374
|
||||
title: ""
|
||||
date: 2025-03-07T12:32:17.950Z
|
||||
- commits:
|
||||
- subject: Update qemux/qemu-docker Docker tag to v6.20
|
||||
hash: 325d5daabe2d5f490227e1967c997bf2a6496ca2
|
||||
body: |
|
||||
Update qemux/qemu-docker from 6.19 to 6.20
|
||||
footer:
|
||||
Change-type: patch
|
||||
change-type: patch
|
||||
author: balena-renovate[bot]
|
||||
nested: []
|
||||
version: 4.1.373
|
||||
title: ""
|
||||
date: 2025-03-06T21:17:35.474Z
|
||||
- commits:
|
||||
- subject: Update balena/open-balena-s3 Docker tag to v2.28.68
|
||||
hash: 55a5a5ac95ea24cc64e09fdcc79848909a654235
|
||||
body: |
|
||||
Update balena/open-balena-s3 from 2.28.67 to 2.28.68
|
||||
footer:
|
||||
Change-type: patch
|
||||
change-type: patch
|
||||
author: balena-renovate[bot]
|
||||
nested: []
|
||||
version: 4.1.372
|
||||
title: ""
|
||||
date: 2025-03-06T18:19:18.387Z
|
||||
- commits:
|
||||
- subject: Update balena/open-balena-registry Docker tag to v2.41.24
|
||||
hash: 398e8b1f4845eae4846ddbcb7c24e408309a6496
|
||||
body: |
|
||||
Update balena/open-balena-registry from 2.41.23 to 2.41.24
|
||||
footer:
|
||||
Change-type: patch
|
||||
change-type: patch
|
||||
author: balena-renovate[bot]
|
||||
nested: []
|
||||
version: 4.1.371
|
||||
title: ""
|
||||
date: 2025-03-06T17:22:00.722Z
|
||||
- commits:
|
||||
- subject: Update balena/open-balena-vpn Docker tag to v11.31.1
|
||||
hash: ae7e3ea7eea6464a2d9b2549bbdfe14a74ad958a
|
||||
body: |
|
||||
Update balena/open-balena-vpn from 11.31.0 to 11.31.1
|
||||
footer:
|
||||
Change-type: patch
|
||||
change-type: patch
|
||||
author: balena-renovate[bot]
|
||||
nested: []
|
||||
version: 4.1.370
|
||||
title: ""
|
||||
date: 2025-03-06T16:04:26.060Z
|
||||
- commits:
|
||||
- subject: Update balena/open-balena-api Docker tag to v34.9.1
|
||||
hash: 4a48a4f0950a3a25457b739f6154d307691e06fd
|
||||
body: |
|
||||
Update balena/open-balena-api from 34.9.0 to 34.9.1
|
||||
footer:
|
||||
Change-type: patch
|
||||
change-type: patch
|
||||
author: balena-renovate[bot]
|
||||
nested: []
|
||||
version: 4.1.369
|
||||
title: ""
|
||||
date: 2025-03-04T15:29:34.114Z
|
||||
- commits:
|
||||
- subject: Update qemux/qemu-docker Docker tag to v6.19
|
||||
hash: be6a330848468b61fc4758e03a3c007dfe32e855
|
||||
body: |
|
||||
Update qemux/qemu-docker from 6.18 to 6.19
|
||||
footer:
|
||||
Change-type: patch
|
||||
change-type: patch
|
||||
author: balena-renovate[bot]
|
||||
nested: []
|
||||
version: 4.1.368
|
||||
title: ""
|
||||
date: 2025-03-03T17:27:20.082Z
|
||||
- commits:
|
||||
- subject: Update balena/open-balena-vpn Docker tag to v11.31.0
|
||||
hash: bdad6f794c0ff411d57fc2ae9c85df1870c89b88
|
||||
body: |
|
||||
Update balena/open-balena-vpn from 11.30.83 to 11.31.0
|
||||
footer:
|
||||
Change-type: patch
|
||||
change-type: patch
|
||||
author: balena-renovate[bot]
|
||||
nested: []
|
||||
version: 4.1.367
|
||||
title: ""
|
||||
date: 2025-02-28T18:17:21.028Z
|
||||
- commits:
|
||||
- subject: Update balena/open-balena-api Docker tag to v34.9.0
|
||||
hash: e09b87208ce3c1937861593724b9ca9969d161a8
|
||||
body: |
|
||||
Update balena/open-balena-api from 34.8.0 to 34.9.0
|
||||
footer:
|
||||
Change-type: patch
|
||||
change-type: patch
|
||||
author: balena-renovate[bot]
|
||||
nested: []
|
||||
version: 4.1.366
|
||||
title: ""
|
||||
date: 2025-02-28T01:22:26.055Z
|
||||
- commits:
|
||||
- subject: Update qemux/qemu-docker Docker tag to v6.18
|
||||
hash: 7260a5e23cf4fb2dae6754e012031781f34f86e1
|
||||
body: |
|
||||
Update qemux/qemu-docker from 6.17 to 6.18
|
||||
footer:
|
||||
Change-type: patch
|
||||
change-type: patch
|
||||
author: balena-renovate[bot]
|
||||
nested: []
|
||||
version: 4.1.365
|
||||
title: ""
|
||||
date: 2025-02-26T22:50:12.870Z
|
||||
- commits:
|
||||
- subject: Update dependency balena-io/balena-cli to v20.2.9
|
||||
hash: 3ccfbae266051249c1d4f0acbeaf4f19a6e98ad4
|
||||
body: |
|
||||
Update balena-io/balena-cli from 20.2.8 to 20.2.9
|
||||
footer:
|
||||
Change-type: patch
|
||||
change-type: patch
|
||||
author: balena-renovate[bot]
|
||||
nested: []
|
||||
version: 4.1.364
|
||||
title: ""
|
||||
date: 2025-02-26T13:27:23.379Z
|
||||
- commits:
|
||||
- subject: Update dependency balena-io/balena-cli to v20.2.8
|
||||
hash: 795a9c0d1cdb2e558e7e49ad4e74ce3e62b5691f
|
||||
body: |
|
||||
Update balena-io/balena-cli from 20.2.7 to 20.2.8
|
||||
footer:
|
||||
Change-type: patch
|
||||
change-type: patch
|
||||
author: balena-renovate[bot]
|
||||
nested: []
|
||||
version: 4.1.363
|
||||
title: ""
|
||||
date: 2025-02-26T01:37:34.253Z
|
||||
- commits:
|
||||
- subject: Update dependency balena-io/balena-cli to v20.2.7
|
||||
hash: 6d0dfea04317a6e8f7b9c364923884798aa3be76
|
||||
body: |
|
||||
Update balena-io/balena-cli from 20.2.6 to 20.2.7
|
||||
footer:
|
||||
Change-type: patch
|
||||
change-type: patch
|
||||
author: balena-renovate[bot]
|
||||
nested: []
|
||||
version: 4.1.362
|
||||
title: ""
|
||||
date: 2025-02-25T23:42:26.255Z
|
||||
- commits:
|
||||
- subject: Update dependency balena-io/balena-cli to v20.2.6
|
||||
hash: 4d89e5a6e5022d5b7476522e4b791a72cb7d81ac
|
||||
body: |
|
||||
Update balena-io/balena-cli from 20.2.5 to 20.2.6
|
||||
footer:
|
||||
Change-type: patch
|
||||
change-type: patch
|
||||
author: balena-renovate[bot]
|
||||
nested: []
|
||||
version: 4.1.361
|
||||
title: ""
|
||||
date: 2025-02-25T20:32:23.753Z
|
||||
- commits:
|
||||
- subject: Update dependency balena-io/balena-cli to v20.2.5
|
||||
hash: 61e03444043f828247078094b59f1400ebe87f4f
|
||||
body: |
|
||||
Update balena-io/balena-cli from 20.2.3 to 20.2.5
|
||||
footer:
|
||||
Change-type: patch
|
||||
change-type: patch
|
||||
author: balena-renovate[bot]
|
||||
nested: []
|
||||
version: 4.1.360
|
||||
title: ""
|
||||
date: 2025-02-25T19:22:57.347Z
|
||||
- commits:
|
||||
- subject: Update balena/open-balena-api Docker tag to v34.8.0
|
||||
hash: bd9fa1140a4370b2467b3e95d5b353777b0085a5
|
||||
body: |
|
||||
Update balena/open-balena-api from 34.7.0 to 34.8.0
|
||||
footer:
|
||||
Change-type: patch
|
||||
change-type: patch
|
||||
author: balena-renovate[bot]
|
||||
nested: []
|
||||
version: 4.1.359
|
||||
title: ""
|
||||
date: 2025-02-25T18:17:22.350Z
|
||||
- commits:
|
||||
- subject: Update qemux/qemu-docker Docker tag to v6.17
|
||||
hash: 7865349f2194064e7d337085e67601b16089a975
|
||||
body: |
|
||||
Update qemux/qemu-docker from 6.16 to 6.17
|
||||
footer:
|
||||
Change-type: patch
|
||||
change-type: patch
|
||||
author: balena-renovate[bot]
|
||||
nested: []
|
||||
version: 4.1.358
|
||||
title: ""
|
||||
date: 2025-02-25T15:27:26.827Z
|
||||
- commits:
|
||||
- subject: Tab was inserted incorrectly
|
||||
hash: 59ae072a922beb46607c6ae8e16fa7a589599473
|
||||
body: ""
|
||||
footer:
|
||||
change-type: patch
|
||||
author: Martin Juhl
|
||||
nested: []
|
||||
version: 4.1.357
|
||||
title: ""
|
||||
date: 2025-02-24T21:18:58.404Z
|
||||
- commits:
|
||||
- subject: Support testing external commits
|
||||
hash: c1133d1f16f1cb55e42b6c2b3c591fa3c8cfe425
|
||||
body: |
|
||||
tests require cloning of GitHub repo outside of Flowzone on AWS runners`
|
||||
|
||||
* on pull_request_target (external contibutions)
|
||||
github.event.pull_request.head.repo.full_name will resolve to
|
||||
{{forked-repo}}/open-balena (e.g. MrMEEE/open-balena)
|
||||
|
||||
* on pull_request, it will resolve to {{ github.repository }}
|
||||
footer:
|
||||
change-type: patch
|
||||
author: Anton Belodedenko
|
||||
nested: []
|
||||
version: 4.1.356
|
||||
title: ""
|
||||
date: 2025-02-24T20:17:17.529Z
|
||||
- commits:
|
||||
- subject: Update balena/open-balena-api Docker tag to v34.7.0
|
||||
hash: f2498f14e2f1a7c8b84ea69ce89b539fecccb5ef
|
||||
body: |
|
||||
Update balena/open-balena-api from 34.6.1 to 34.7.0
|
||||
footer:
|
||||
Change-type: patch
|
||||
change-type: patch
|
||||
author: balena-renovate[bot]
|
||||
nested: []
|
||||
version: 4.1.355
|
||||
title: ""
|
||||
date: 2025-02-24T15:57:41.026Z
|
||||
- commits:
|
||||
- subject: Update balena/open-balena-api Docker tag to v34.6.1
|
||||
hash: 4cdaf0e43371ea1c4c6d93701f4bed20050bc1a2
|
||||
body: |
|
||||
Update balena/open-balena-api from 34.6.0 to 34.6.1
|
||||
footer:
|
||||
Change-type: patch
|
||||
change-type: patch
|
||||
author: balena-renovate[bot]
|
||||
nested: []
|
||||
version: 4.1.354
|
||||
title: ""
|
||||
date: 2025-02-24T15:22:14.738Z
|
||||
- commits:
|
||||
- subject: Update balena/open-balena-api Docker tag to v34.6.0
|
||||
hash: 1f5a6b4dc87e52023743c6074a575386bfdee62b
|
||||
body: |
|
||||
Update balena/open-balena-api from 34.5.1 to 34.6.0
|
||||
footer:
|
||||
Change-type: patch
|
||||
change-type: patch
|
||||
author: balena-renovate[bot]
|
||||
nested: []
|
||||
version: 4.1.353
|
||||
title: ""
|
||||
date: 2025-02-24T13:47:23.979Z
|
||||
- commits:
|
||||
- subject: Update qemux/qemu-docker Docker tag to v6.16
|
||||
hash: 59729f0ac23c90e5da520cc477eba75304161a89
|
||||
|
145
CHANGELOG.md
145
CHANGELOG.md
@ -4,6 +4,151 @@ 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/).
|
||||
|
||||
# v4.1.381
|
||||
## (2025-03-14)
|
||||
|
||||
* Update balena/open-balena-vpn Docker tag to v11.32.4 [balena-renovate[bot]]
|
||||
|
||||
# v4.1.380
|
||||
## (2025-03-14)
|
||||
|
||||
* Update balena/open-balena-api Docker tag to v34.10.1 [balena-renovate[bot]]
|
||||
|
||||
# v4.1.379
|
||||
## (2025-03-13)
|
||||
|
||||
* Update balena/open-balena-vpn Docker tag to v11.31.2 [balena-renovate[bot]]
|
||||
|
||||
# v4.1.378
|
||||
## (2025-03-13)
|
||||
|
||||
* Update dependency balena-io/balena-cli to v21 [balena-renovate[bot]]
|
||||
|
||||
# v4.1.377
|
||||
## (2025-03-07)
|
||||
|
||||
* Update balena/open-balena-api Docker tag to v34.9.5 [balena-renovate[bot]]
|
||||
|
||||
# v4.1.376
|
||||
## (2025-03-07)
|
||||
|
||||
* Update balena/open-balena-api Docker tag to v34.9.4 [balena-renovate[bot]]
|
||||
|
||||
# v4.1.375
|
||||
## (2025-03-07)
|
||||
|
||||
* Update balena/open-balena-api Docker tag to v34.9.3 [balena-renovate[bot]]
|
||||
|
||||
# v4.1.374
|
||||
## (2025-03-07)
|
||||
|
||||
* Update balena/open-balena-api Docker tag to v34.9.2 [balena-renovate[bot]]
|
||||
|
||||
# v4.1.373
|
||||
## (2025-03-06)
|
||||
|
||||
* Update qemux/qemu-docker Docker tag to v6.20 [balena-renovate[bot]]
|
||||
|
||||
# v4.1.372
|
||||
## (2025-03-06)
|
||||
|
||||
* Update balena/open-balena-s3 Docker tag to v2.28.68 [balena-renovate[bot]]
|
||||
|
||||
# v4.1.371
|
||||
## (2025-03-06)
|
||||
|
||||
* Update balena/open-balena-registry Docker tag to v2.41.24 [balena-renovate[bot]]
|
||||
|
||||
# v4.1.370
|
||||
## (2025-03-06)
|
||||
|
||||
* Update balena/open-balena-vpn Docker tag to v11.31.1 [balena-renovate[bot]]
|
||||
|
||||
# v4.1.369
|
||||
## (2025-03-04)
|
||||
|
||||
* Update balena/open-balena-api Docker tag to v34.9.1 [balena-renovate[bot]]
|
||||
|
||||
# v4.1.368
|
||||
## (2025-03-03)
|
||||
|
||||
* Update qemux/qemu-docker Docker tag to v6.19 [balena-renovate[bot]]
|
||||
|
||||
# v4.1.367
|
||||
## (2025-02-28)
|
||||
|
||||
* Update balena/open-balena-vpn Docker tag to v11.31.0 [balena-renovate[bot]]
|
||||
|
||||
# v4.1.366
|
||||
## (2025-02-28)
|
||||
|
||||
* Update balena/open-balena-api Docker tag to v34.9.0 [balena-renovate[bot]]
|
||||
|
||||
# v4.1.365
|
||||
## (2025-02-26)
|
||||
|
||||
* Update qemux/qemu-docker Docker tag to v6.18 [balena-renovate[bot]]
|
||||
|
||||
# v4.1.364
|
||||
## (2025-02-26)
|
||||
|
||||
* Update dependency balena-io/balena-cli to v20.2.9 [balena-renovate[bot]]
|
||||
|
||||
# v4.1.363
|
||||
## (2025-02-26)
|
||||
|
||||
* Update dependency balena-io/balena-cli to v20.2.8 [balena-renovate[bot]]
|
||||
|
||||
# v4.1.362
|
||||
## (2025-02-25)
|
||||
|
||||
* Update dependency balena-io/balena-cli to v20.2.7 [balena-renovate[bot]]
|
||||
|
||||
# v4.1.361
|
||||
## (2025-02-25)
|
||||
|
||||
* Update dependency balena-io/balena-cli to v20.2.6 [balena-renovate[bot]]
|
||||
|
||||
# v4.1.360
|
||||
## (2025-02-25)
|
||||
|
||||
* Update dependency balena-io/balena-cli to v20.2.5 [balena-renovate[bot]]
|
||||
|
||||
# v4.1.359
|
||||
## (2025-02-25)
|
||||
|
||||
* Update balena/open-balena-api Docker tag to v34.8.0 [balena-renovate[bot]]
|
||||
|
||||
# v4.1.358
|
||||
## (2025-02-25)
|
||||
|
||||
* Update qemux/qemu-docker Docker tag to v6.17 [balena-renovate[bot]]
|
||||
|
||||
# v4.1.357
|
||||
## (2025-02-24)
|
||||
|
||||
* Tab was inserted incorrectly [Martin Juhl]
|
||||
|
||||
# v4.1.356
|
||||
## (2025-02-24)
|
||||
|
||||
* Support testing external commits [Anton Belodedenko]
|
||||
|
||||
# v4.1.355
|
||||
## (2025-02-24)
|
||||
|
||||
* Update balena/open-balena-api Docker tag to v34.7.0 [balena-renovate[bot]]
|
||||
|
||||
# v4.1.354
|
||||
## (2025-02-24)
|
||||
|
||||
* Update balena/open-balena-api Docker tag to v34.6.1 [balena-renovate[bot]]
|
||||
|
||||
# v4.1.353
|
||||
## (2025-02-24)
|
||||
|
||||
* Update balena/open-balena-api Docker tag to v34.6.0 [balena-renovate[bot]]
|
||||
|
||||
# v4.1.352
|
||||
## (2025-02-24)
|
||||
|
||||
|
@ -23,4 +23,4 @@ data:
|
||||
- generic-amd64
|
||||
- genericx86-64-ext
|
||||
- intel-nuc
|
||||
version: 4.1.352
|
||||
version: 4.1.381
|
||||
|
@ -79,7 +79,7 @@ services:
|
||||
*with-default-privileges,
|
||||
*with-default-volumes,
|
||||
]
|
||||
image: balena/open-balena-api:v34.5.1
|
||||
image: balena/open-balena-api:34.10.1
|
||||
depends_on:
|
||||
- db
|
||||
- redis
|
||||
@ -119,7 +119,7 @@ services:
|
||||
*with-default-healthcheck,
|
||||
*with-default-privileges,
|
||||
]
|
||||
image: balena/open-balena-registry:2.41.23
|
||||
image: balena/open-balena-registry:2.41.24
|
||||
volumes:
|
||||
- certs-data:/certs
|
||||
- resin-data:/balena
|
||||
@ -146,7 +146,7 @@ services:
|
||||
*with-network-privileges,
|
||||
*with-default-privileges,
|
||||
]
|
||||
image: balena/open-balena-vpn:v11.30.83
|
||||
image: balena/open-balena-vpn:11.32.4
|
||||
depends_on:
|
||||
- api
|
||||
environment:
|
||||
@ -177,7 +177,7 @@ services:
|
||||
*with-default-healthcheck,
|
||||
*with-default-privileges,
|
||||
]
|
||||
image: balena/open-balena-s3:2.28.67
|
||||
image: balena/open-balena-s3:2.28.68
|
||||
volumes:
|
||||
- s3-data:/export
|
||||
- certs-data:/certs
|
||||
@ -235,7 +235,7 @@ services:
|
||||
ALIASES: api,ca,cloudlink,db,delta,logs,redis,registry2,s3,stats,tunnel
|
||||
labels:
|
||||
io.balena.features.balena-socket: 1
|
||||
io.balena.features.supervisor-api : 1
|
||||
io.balena.features.supervisor-api: 1
|
||||
|
||||
# https://github.com/balena-io/cert-manager
|
||||
# https://certbot.eff.org/docs/using.html
|
||||
|
@ -1,7 +1,7 @@
|
||||
FROM ubuntu:24.04
|
||||
|
||||
# renovate: datasource=github-releases depName=balena-io/balena-cli
|
||||
ARG BALENA_CLI_VERSION=v20.2.3
|
||||
ARG BALENA_CLI_VERSION=v21.1.0
|
||||
|
||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||
bash \
|
||||
|
@ -1,6 +1,6 @@
|
||||
# https://hub.docker.com/r/qemux/qemu-docker
|
||||
# https://github.com/qemus/qemu-docker
|
||||
FROM qemux/qemu-docker:6.16
|
||||
FROM qemux/qemu-docker:6.20
|
||||
|
||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||
minicom \
|
||||
|
Reference in New Issue
Block a user