Skip to content

Update balena-io/balena-cli to v25#1444

Merged
balena-renovate[bot] merged 2 commits into
masterfrom
renovate/balena-io-balena-cli-25.x
May 21, 2026
Merged

Update balena-io/balena-cli to v25#1444
balena-renovate[bot] merged 2 commits into
masterfrom
renovate/balena-io-balena-cli-25.x

Conversation

@balena-renovate

@balena-renovate balena-renovate Bot commented Apr 28, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Update Change
balena-io/balena-cli major v22.5.5v25.1.6

Release Notes

balena-io/balena-cli (balena-io/balena-cli)

v25.1.6

Compare Source

562b1e4 (Fix link in help output about FAQ and troubleshooting, 2026-05-13)
2b62874 (Deduplicate dependencies, 2026-05-15)

v25.1.5

Compare Source

fb681df (Update GitHub Actions, 2026-05-13)

v25.1.4

Compare Source

031254b (Bump @​balena/compose-parser to 0.2.4, @​balena/compose to 8.0.3, 2026-05-11)

v25.1.3

Compare Source

817d158 (Bump @​balena/compose-parser to 0.2.1, @​balena/compose to 8.0.2, 2026-05-01)

v25.1.2

Compare Source

4648d36 (Fix handleError exit code fallback, 2026-05-01)

v25.1.1

Compare Source

c5988e1 (tests: Update builder dashboard link, 2026-04-30)
7105369 (Deduplicate dependencies, 2026-04-30)

v25.1.0

Compare Source

039eef8 (Add organization management commands, 2026-04-24)

v25.0.0

Compare Source

Update @​balena/compose to v8

This release adds CLI support for a number of compose fields in the latest docker compose spec. The fields are listed below, however note that balena Supervisor support needs to be added for the fields to be fully supported by balena. These fields will be rejected by the Supervisor via the container contract mechanism until Supervisor support is implemented. See balena-io-modules/balena-compose-parser#19 where the compose container contract is injected if new fields are detected.

Dev overlay file merging

While in local mode, all top-level fields in docker-compose.dev.yml are merged into the main compose file. Before, only top-level service fields were merged. A bare Dockerfile with no docker-compose.yml will no longer apply docker-compose.dev.yml as an overlay, so make sure to create a docker-compose file if you wish for dev overlays to be applied.

Add support for compose fields:
Compose features:
  • Fragments, extensions (pre-v8 balena-compose already supported this, but using a custom implementation. balena-compose v8 moves to the official implementation used by docker compose (compose-go)
  • include directive
services.${serviceName}:

NOTE: "logged / not logged" refers to Supervisor logging Ignoring unsupported or unknown compose fields

field SV behavior
annotations ignored, logged
attach ignored, logged
cgroup ignored, logged
cpu_rt_runtime ignored, logged
cpu_rt_period ignored, logged
cpus ignored, not logged
device_cgroup_rules ignored, logged
env_file N/A - compose-go folds this into environment during parsing
extends N/A - compose-go folds this into the composition during parsing
healthcheck.start_interval ignored, not logged
healthcheck.start_period supported
ipc conditional error loop if ipc: service:${serviceName}, supports ipc: shareable
label_file N/A - compose-go folds this into labels during parsing
network_mode=service:${serviceName} supported (this was supported before but compose-go adds a depends_on dependency which wasn't present before)
networks.aliases supported
networks.ipv4_address supported
networks.ipv6_address ignored, not logged
networks.link_local_ips error loop
networks.mac_address ignored; Supervisor configures it in the wrong place, Config.MacAddress, instead of NetworkSettings.MacAddress
networks.driver_opts ignored, not logged
networks.gw_priority ignored, not logged
networks.priority ignored, not logged
pid=service:${serviceName} ignored, not logged
pids_limit conditional error loop if negative pids_limit
post_start ignored, logged
pre_stop ignored, logged
read_only supported
uts ignored, logged
volumes_from ignored, logged
Reject unsupported fields with clear messages:
  • Top-level secrets & configs
  • Service fields defined in SERVICE_CONFIG_DENY_LIST
  • Service.build fields defined in BUILD_CONFIG_DENY_LIST
  • container:${containerId} for service.network_mode
  • container:${containerId} for service.pid
  • container:${containerId} for service.volumes_from
  • All service.security_opt as unsupported except no-new-privileges
  • Network subfields attachable, external, name, driver that's not bridge or default, enable_ipv4, enable_ipv6, ipam.config.aux_addresses
  • Volume subfields external, name, driver that's not local or default
  • Long syntax volumes of type bind, npipe, cluster, image, unless specified bind mount is in allowedBindMounts (corresponding to balena's supported labels)
  • Labels using balena namespace io.balena.private
Ignore fields that are required in balena-compose:
  • Top-level version is now optional and won't throw an error if not present and equal to one of
    2.0, 2.1, 2.2, 2.3, or 2.4
Normalize fields parsed by compose-go to be more compatible with balena or in line with current balena-compose behavior:
  • Remove null entrypoint, which in Docker means that the default entrypoint from the image is used,
    but in balena, overrides any ENTRYPOINT directive in the Dockerfile.
  • Convert long syntax ports to short syntax, as all port definitions are converted to long syntax by compose-go,
    but aren't supported by the Supervisor. For similar reasons, also convert long syntax depends_on, devices, and volumes.
  • Compose converts relative context paths to absolute paths, convert back to relative paths to be compatible with our build system.
  • For any allowed bind mount specified in service.volumes, remove them from volumes and add to feature labels.
  • Add image as build tag if image & build both present. However, uncertain if this behavior is necessary.
  • Move service.volumes of type tmpfs to service.tmpfs
  • Reject service.volume where:
    * source or target are not defined
    * volume is not defined in top-level volumes
    * it specifies volume options (long syntax only)
  • Reject service.tmpfs if it defines tmpfs options (long syntax only)
  • Allow short syntax tmpfs with options (not supported in Supervisor however, this is in line with previous balena-compose behavior, however is likely an erroneous allowance)
  • Reject build.network that's not defined at top-level
Log warnings:
  • service.expose is informational only, warn & remove it from composition
  • Warn if oom_score_adj is set to a value under OOM_SCORE_ADJ_WARN_THRESHOLD (-900)
  • com.docker.network.bridge.name network.driver_opt which may interfere with current Supervisor firewall implementation, which relies on default naming scheme

Change-type: major
Depends-on: balena-io-modules/balena-compose#97
See: https://balena.fibery.io/Work/Project/Integrate-compose-go-using-Go-binary-into-balena-compose,-CLI,-and-builder-1746

List of commits

f90e67a (Update @​balena/compose to v8, add @​balena/compose-parser dependency, 2026-03-25)
97f8df0 (Update type imports and model types for compose v8, 2026-03-25)
e128fe4 (Adapt CLI to @​balena/compose-parser API, 2026-03-25)
d186d81 (Add tests for balena-compose v8, 2026-04-03)
8deb77b (Sign balena-compose-parser binary for macOS notarization, 2026-04-08)
56ddaab (Add error context for compose file parse failures, 2026-04-10)
c3757e2 (Add test coverage for dev overlay compose file merging, 2026-04-10)
4b6ee25 (Add test asserting build config descriptors have tags populated, 2026-04-10)

v24.1.4

Compare Source

6251f3c (Retry ratelimited requests that have a Retry-After less than 60 seconds, 2026-04-24)
2c343d0 (Deduplicate dependencies, 2026-04-27)

v24.1.3

Compare Source

a97edb0 (test(device ssh): unset proxy env vars that break stderr assertions, 2026-04-07)

v24.1.2

Compare Source

d0e19ed (Update @​balena/lint to prepare for TS6.0, 2026-04-07)
657f56c (Deduplicate dependencies, 2026-04-07)
12a64e3 (Unblock color tests on CI after deduplicating supports-color, 2026-04-07)

v24.1.1

Compare Source

50f7bf4 (Explicitly align express in package.json with the one in the shrinkwrap, 2026-03-31)

v24.1.0

Compare Source

958c5be (Update author, 2026-03-19)
fa721a4 (Update balena-sdk to 23.1.13, 2026-04-03)
3ba78fe (os download: Add type flag for specifying disk-image or, 2026-03-17)
1fa3b1c (os download: warn if no type is chosen and default is installation-media, 2026-04-02)
12146ec (os download: download the default type if the type passed is the same, 2026-04-02)
54e8fe0 (Deduplicate dependencies, 2026-04-06)

v24.0.4

Compare Source

1026def (Prune unused prebuilds, sign .bare binaries, fix klaw codesign handler, 2026-04-06)
c7eaebb (Bump @​types/klaw to ^3.0.7 for TS 5.2+ compat, 2026-04-06)
25c4ed4 (Deduplicate npm-shrinkwrap.json, 2026-04-06)

v24.0.3

Compare Source

3420382 (Deduplicate dependencies, 2026-02-26)
cb22fb0 (Disable background auto-updates, 2026-02-26)

v24.0.2

Compare Source

508a595 (Deduplicate dependencies, 2026-02-18)
d184e5e (Update balena-sdk to 23.0.2, 2026-02-18)

v24.0.1

Compare Source

8ec00b0 (Nudge users to update using the OCLIF update command, 2026-02-17)
45877d3 (Deduplicate dependencies, 2026-02-18)

v24.0.0

Compare Source

19ae413 (Update balena-sdk to v23.0.0, 2026-02-04)
4f724cb (Preserve support for using short uuds & commits, 2026-02-06)
8c1bfe7 (os download,device init: Drop support for the 'recommended' & 'default' os version aliases in favor of 'latest', 2026-02-09)
c53a17c (preload: Include the release version in the selection list of releases, 2026-02-09)
8a1a4f8 (Group all OS related helpers to utils/os.ts, 2026-02-10)
82c0dba (Deduplicate dependencies, 2026-02-13)

v23.2.32

Compare Source

cc32211 (tests: Replace the deprecated url.parse with new URL(), 2026-02-11)
f8702f5 (Remove unnecessary 'url' imports, 2026-02-11)
84edd27 (tests/build: Increase the test timeout to 1.5 minute, 2026-02-11)

v23.2.31

Compare Source

55b77d8 (Deduplicate dependencies, 2026-02-11)
7a541ac (tests: Add ignore rule for DEP0169 url.parse deprecation, 2026-02-11)

v23.2.30

Compare Source

Update dependency balena-settings-client to v6

Notable changes
  • Move internal typing dependencies to devDependencies [Thodoris Greasidis]
  • Fix node engine version requirements [Matthew Yarmolinsky]
  • Drop support for property paths in the get method [Matthew Yarmolinsky]
  • Drop support for node <20.12.0 and require es2019 [Matthew Yarmolinsky]
  • Update author to balena [Matthew Yarmolinsky]
  • Drop Bluebird [Matthew Yarmolinsky]
  • Drop mergeObjects in favor of es-toolkit merge [Matthew Yarmolinsky]
  • Replace lodash with es-toolkit [Matthew Yarmolinsky]
  • Update jsdoc-to-markdown [Matthew Yarmolinsky]
  • Update TypeScript to 5.1.3 [Thodoris Greasidis]
balena-io-modules/balena-settings-client (balena-settings-client)
v6.0.2

Compare Source

(2025-12-23)
  • Move internal typing dependencies to devDependencies [Thodoris Greasidis]
v6.0.1

Compare Source

(2025-12-23)
  • Fix node engine version requirements [Matthew Yarmolinsky]
v6.0.0

Compare Source

(2025-12-23)
  • Drop support for property paths in the get method [Matthew Yarmolinsky]
  • Drop support for node <20.12.0 and require es2019 [Matthew Yarmolinsky]
  • Update author to balena [Matthew Yarmolinsky]
  • Drop Bluebird [Matthew Yarmolinsky]
  • Drop mergeObjects in favor of es-toolkit merge [Matthew Yarmolinsky]
  • Replace lodash with es-toolkit [Matthew Yarmolinsky]
  • Update jsdoc-to-markdown [Matthew Yarmolinsky]
v5.0.3

Compare Source

(2023-06-02)
  • Update TypeScript to 5.1.3 [Thodoris Greasidis]
List of commits

22c6989 (Update dependency balena-settings-client to v6, 2026-01-16)

v23.2.29

Compare Source

Update dependency body-parser to v2

Notable changes
  • deps: qs@^6.14.1
  • refactor(json): simplify strict mode error string construction
  • Security fix for GHSA-wqch-xfxh-vrr4
  • deps:
  • refactor: normalize common options for all parsers
  • refactor: prefix built-in node module imports
  • use the node require cache instead of custom caching
  • remove unpipe package and use native unpipe() method
  • Restore expected behavior extended to false
  • Node.js 18 is the minimum supported version
  • req.body is no longer always initialized to {}
  • Remove deprecated bodyParser() combination middleware
  • urlencoded parser now defaults extended to false as released, this is not the case, fixed in 2.0.1
  • urlencoded simple parser now uses qs module instead of querystring module
  • Add brotli support #​406
  • urlencoded: Add option to customize the depth with a default value of 32
  • urlencoded: Support iso-8859-1, utf8 sentinel, and numeric entities
  • Use on-finished to determine when body read
  • deps: raw-body@^3.0.0
  • deps: qs@​6.12.3
  • deps: debug@​3.1.0
  • deps: iconv-lite@​0.5.2
expressjs/body-parser (body-parser)
v2.2.2

Compare Source

=========================

  • deps: qs@^6.14.1
  • refactor(json): simplify strict mode error string construction
v2.2.1

Compare Source

=========================

  • Security fix for GHSA-wqch-xfxh-vrr4
  • deps:
    • type-is@^2.0.1
    • iconv-lite@^0.7.0
      • Handle split surrogate pairs when encoding UTF-8
      • Avoid false positives in encodingExists by using prototype-less objects
    • raw-body@^3.0.1
    • debug@^4.4.3
v2.2.0

Compare Source

=========================

  • refactor: normalize common options for all parsers
  • deps:
    • iconv-lite@^0.6.3
v2.1.0

Compare Source

=========================

  • deps:
    • type-is@^2.0.0
    • debug@^4.4.0
    • Removed destroy
  • refactor: prefix built-in node module imports
  • use the node require cache instead of custom caching
v2.0.2

Compare Source

=========================

  • remove unpipe package and use native unpipe() method
v2.0.1

Compare Source

=========================

  • Restore expected behavior extended to false
v2.0.0

Compare Source

=========================

Breaking Changes
  • Node.js 18 is the minimum supported version
  • req.body is no longer always initialized to {}
    • it is left undefined unless a body is parsed
  • Remove deprecated bodyParser() combination middleware
  • urlencoded parser now defaults extended to false as released, this is not the case, fixed in 2.0.1
  • urlencoded simple parser now uses qs module instead of querystring module
Features
  • Add brotli support #​406
  • urlencoded: Add option to customize the depth with a default value of 32
  • urlencoded: Support iso-8859-1, utf8 sentinel, and numeric entities
  • Use on-finished to determine when body read
Dependencies
  • deps: raw-body@^3.0.0
  • deps: qs@​6.12.3
  • deps: debug@​3.1.0
  • deps: iconv-lite@​0.5.2
List of commits

a4bb84b (Update dependency body-parser to v2, 2026-01-16)
b12ba3e (Drop unneeded dependency @types/body-parser, 2026-01-16)
aec9484 (server: Add optional chain after request.body, 2026-01-16)
cebc4c9 (server.spec: Test for undefined bodies, 2026-01-16)
cd265ac (Deduplicate dependencies, 2026-01-16)

v23.2.28

Compare Source

Update dependency balena-semver to v4

Notable changes
balena-io-modules/balena-semver (balena-semver)
[v4.0.1](https://redirect.github.com/balena-io-modules/balena-semver/blob/HEAD/CHANGELOG.md#401
List of commits

99b1d42 (Update dependency balena-semver to v4, 2026-01-15)

v23.2.27

Compare Source

43c24a5 (Update actions/setup-node digest to 6044e13, 2026-01-15)

v23.2.26

Compare Source

Update apple-actions/import-codesign-certs action to v6

Notable changes
apple-actions/import-codesign-certs (apple-actions/import-codesign-certs)
v6

Compare Source

List of commits

31ad365 (Update apple-actions/import-codesign-certs action to v6, 2026-01-15)

v23.2.25

Compare Source

Update actions/download-artifact action to v7

Notable changes
actions/download-artifact (actions/download-artifact)
v7.0.0

Compare Source

v7 - What's new

[!IMPORTANT]
actions/download-artifact@​v7 now runs on Node.js 24 (runs.using: node24) and requires a minimum Actions Runner version of 2.327.1. If you are using self-hosted runners, ensure they are updated before upgrading.

Node.js 24

This release updates the runtime to Node.js 24. v6 had preliminary support for Node 24, however this action was by default still running on Node.js 20. Now this action by default will run on Node.js 24.

What's Changed
New Contributors

Full Changelog: actions/download-artifact@v6.0.0...v7.0.0

List of commits

8bde334 (Update actions/download-artifact action to v7, 2026-01-15)

v23.2.24

Compare Source

Update actions/upload-artifact action to v6

Notable changes
actions/upload-artifact (actions/upload-artifact)
v6

Compare Source

List of commits

c5e6f3a (Update actions/upload-artifact action to v6, 2026-01-15)

v23.2.23

Compare Source

836ce0c (Change common-flags modules to factories instead of static object, 2026-01-14)

v23.2.22

Compare Source

2697746 (Remove unused setMaxListeners function, 2026-01-13)
9f72030 (Reduce overall usage of require, 2026-01-13)

v23.2.21

Compare Source

0a43fa0 (Update balena-image-fs to 7.6.0, 2026-01-13)
2216598 (Remove no longer needed code in favor of balena-image-fs, 2026-01-13)
7c978a0 (Remove no longer needed direct dependencies file-disk and partitioninfo, 2026-01-13)

v23.2.20

Compare Source

eb140db (Add getPackageJson lazy getter to centralize package.json access, 2026-01-13)

v23.2.19

Compare Source

d3392a9 (README: remove david-dm link, 2026-01-12)
156af67 (Remove unused dev dependencies, 2026-01-12)
6c90666 (Add missing dependency indent-string, 2026-01-12)
7eb41c3 (Add missing dev dependency pinejs-client-core, 2026-01-12)
a54c4d1 (Add missing dependency file-disk, 2026-01-12)
2e4cf49 (Add missing dependency partitioninfo, 2026-01-12)
e10fdcb (Run npm audit fix, 2026-01-13)
8c1cb04 (Deduplicate dependencies, 2026-01-13)

v23.2.18

Compare Source

09cea86 (Deduplicate dependencies, 2026-01-13)
2eaa5c1 (Add tests for balena config generate, 2026-01-13)

v23.2.17

Compare Source

23c645a (os download: Correct img names to match devices type in examples, 2026-01-01)
59b639d (Update reconfix to 1.0.2, 2026-01-12)
15bf2d6 (Update balena-device-init to 8.2.1, 2026-01-12)
d8f50d0 (Drop exit-hook patch, 2026-01-02)
bd3acf1 (Deduplicate dependencies, 2026-01-12)

v23.2.16

Compare Source

ff73fed (tests: Replace nock, mock-require and rewire with mockttp and sinon, 2025-10-17)
81e6537 (Unpin balena-request from v14.0.6, 2026-01-09)

v23.2.15

Compare Source

d0b98ad (Fix intermitent test on image-manager, 2026-01-09)

v23.2.14

Compare Source

9ebf244 (Update balena-sdk to 22.4.5, 2025-12-30)
df95136 (Use the device.is_connected_to_vpn field for device actions, ssh & tunnel checks, 2025-11-13)

v23.2.13

Compare Source

11745cd (Update docker-progress to 5.4.0, 2025-12-04)

v23.2.12

Compare Source

aaaebf4 (Update oclif from 4.22.0 to 4.22.61, 2025-12-29)

v23.2.11

Compare Source

Update aws-actions/configure-aws-credentials action to v5

Notable changes
aws-actions/configure-aws-credentials (aws-actions/configure-aws-credentials)
v5.1.1

Compare Source

Miscellaneous Chores
  • release 5.1.1 (56d6a58)
  • various dependency updates
v5.1.0

Compare Source

Features
Bug Fixes
v5.0.0

Compare Source

⚠ BREAKING CHANGES
  • Cleanup input handling. Changes invalid boolean input behavior (see #​1445)
Features
List of commits

6ff189c (Update aws-actions/configure-aws-credentials action to v5, 2025-12-15)

v23.2.10

Compare Source

Update apple-actions/import-codesign-certs action to v5

Notable changes
apple-actions/import-codesign-certs (apple-actions/import-codesign-certs)
v5

Compare Source

v4

Compare Source

List of commits

68c8deb (Update apple-actions/import-codesign-certs action to v5, 2025-12-12)

v23.2.9

Compare Source

b2b7c99 (renovate: Only run npm dedupe for github-actions updates, 2025-12-11)
6423901 (Fix Node.js 22+ JSON import error by using require(), 2025-12-11)
1bd2b62 (npm dedupe, 2025-12-12)

v23.2.8

Compare Source

55f230c (os configure, device init: Validate that the config.json's installer.secureboot is a boolean when set, 2025-12-05)
b138ce3 (Add test for os configure --config using secureboot, 2025-12-05)

v23.2.7

Compare Source

0bc9b48 (os configure: Fix asking interactive questions when --config is used, 2025-12-05)
b85ccb7 (Add tests for os configure --config, 2025-12-06)
adde762 (Update @​balena/lint to 9.3.7 to support async disposables, 2025-12-06)

v23.2.6

Compare Source

Update apple-actions/import-codesign-certs action to v3

Notable changes
apple-actions/import-codesign-certs (apple-actions/import-codesign-certs)
v3

Compare Source

Upgrade to node 20 plus some other changes

List of commits

e840195 (Update apple-actions/import-codesign-certs action to v3, 2025-12-05)

v23.2.5

Compare Source

65daaaa (os configure: Fix detecting the OS version of flasher images, 2025-12-02)
b7a7baa (Deduplicate dependencies, 2025-12-04)

v23.2.4

Compare Source

Update GitHub Actions

Notable changes
aws-actions/configure-aws-credentials (aws-actions/configure-aws-credentials)
v4.3.1

Compare Source

Bug Fixes
v4.3.0

Compare Source

NOTE: This release tag originally pointed to 59b4418, but a critical bug was discovered shortly after publishing. We updated this tag to d0834ad to prevent anyone using the 4.3.0 tag from encountering the bug, and we published 4.3.1 to allow workflows to auto update correctly.

Features
Bug Fixes
  • docs: readme samples versioning (5b3c895)
  • the wrong example region for China partition in README (37fe9a7)
  • properly set proxy environment variable (cbea708)
Miscellaneous Chores
actions/python-versions (python)
v3.14.1: 3.14.1

Compare Source

Python 3.14.1

v3.14.0: 3.14.0

Compare Source

Python 3.14.0

v3.13.10: 3.13.10

Compare Source

Python 3.13.10

v3.13.9: 3.13.9

[Compare Source](https://redirect.github.com/a

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate.

@balena-renovate balena-renovate Bot enabled auto-merge April 28, 2026 15:34
@balena-renovate balena-renovate Bot temporarily deployed to balena-cloud.com April 28, 2026 15:43 Inactive
@balena-renovate balena-renovate Bot temporarily deployed to balena-cloud.com April 28, 2026 15:43 Inactive
@balena-renovate balena-renovate Bot temporarily deployed to balena-cloud.com April 28, 2026 15:43 Inactive
@balena-renovate balena-renovate Bot force-pushed the renovate/balena-io-balena-cli-25.x branch from ade8288 to 0332ce3 Compare April 29, 2026 07:14
@balena-renovate balena-renovate Bot temporarily deployed to balena-cloud.com April 29, 2026 07:23 Inactive
@balena-renovate balena-renovate Bot temporarily deployed to balena-cloud.com April 29, 2026 07:23 Inactive
@balena-renovate balena-renovate Bot temporarily deployed to balena-cloud.com April 29, 2026 07:23 Inactive
@balena-renovate balena-renovate Bot force-pushed the renovate/balena-io-balena-cli-25.x branch from 0332ce3 to fa86289 Compare May 4, 2026 16:56
@balena-renovate balena-renovate Bot temporarily deployed to balena-cloud.com May 4, 2026 17:04 Inactive
@balena-renovate balena-renovate Bot temporarily deployed to balena-cloud.com May 4, 2026 17:04 Inactive
@balena-renovate balena-renovate Bot force-pushed the renovate/balena-io-balena-cli-25.x branch from fa86289 to 7a3fa95 Compare May 4, 2026 22:39
@balena-renovate balena-renovate Bot temporarily deployed to balena-cloud.com May 4, 2026 22:46 Inactive
@balena-renovate balena-renovate Bot force-pushed the renovate/balena-io-balena-cli-25.x branch from 7a3fa95 to 1e5926f Compare May 5, 2026 01:15
@balena-renovate balena-renovate Bot temporarily deployed to balena-cloud.com May 5, 2026 01:22 Inactive
@balena-renovate balena-renovate Bot temporarily deployed to balena-cloud.com May 5, 2026 01:22 Inactive
@balena-renovate

Copy link
Copy Markdown
Contributor Author

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@balena-renovate balena-renovate Bot force-pushed the renovate/balena-io-balena-cli-25.x branch from 1e5926f to 6261e2a Compare May 13, 2026 22:58
@balena-renovate balena-renovate Bot force-pushed the renovate/balena-io-balena-cli-25.x branch from 6261e2a to d8841ab Compare May 14, 2026 01:33
@balena-renovate balena-renovate Bot force-pushed the renovate/balena-io-balena-cli-25.x branch from d8841ab to 59630a9 Compare May 15, 2026 15:16
Update balena-io/balena-cli from 22.5.5 to 25.1.6

Change-type: patch
@balena-renovate balena-renovate Bot force-pushed the renovate/balena-io-balena-cli-25.x branch from 59630a9 to 2122500 Compare May 20, 2026 19:40
@balena-renovate balena-renovate Bot temporarily deployed to balena-cloud.com May 20, 2026 19:45 Inactive
@balena-renovate balena-renovate Bot temporarily deployed to balena-cloud.com May 20, 2026 19:45 Inactive
@balena-renovate balena-renovate Bot temporarily deployed to balena-cloud.com May 21, 2026 12:57 Inactive
Signed-off-by: Kyle Harding <kyle@balena.io>
@klutchell klutchell force-pushed the renovate/balena-io-balena-cli-25.x branch from 3aad07f to b06104a Compare May 21, 2026 13:42
@klutchell klutchell temporarily deployed to balena-cloud.com May 21, 2026 13:49 — with GitHub Actions Inactive
@klutchell klutchell temporarily deployed to balena-cloud.com May 21, 2026 13:49 — with GitHub Actions Inactive
@klutchell klutchell temporarily deployed to balena-cloud.com May 21, 2026 13:49 — with GitHub Actions Inactive
@klutchell klutchell temporarily deployed to balena-cloud.com May 21, 2026 13:49 — with GitHub Actions Inactive

@ycardaillac ycardaillac left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM assuming v25.1.6 is legit 👍

@balena-renovate balena-renovate Bot merged commit af9d725 into master May 21, 2026
63 checks passed
@balena-renovate balena-renovate Bot deleted the renovate/balena-io-balena-cli-25.x branch May 21, 2026 13:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants