-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
684739e
commit 6c2417b
Showing
4 changed files
with
37 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,21 @@ | ||
- commits: | ||
- subject: Add auth. header to /os/v1/config requests | ||
hash: 4ea6bf45a6cefa470a1f5d50dcd882443fc71920 | ||
body: > | ||
* this allows the API to identify devices requesting configuration and | ||
apply routing logic (e.g. switch from TCP to UDP OpenVPN configuration) | ||
* | ||
https://github.com/balena-os/meta-balena/pull/3443/commits/c401ebbf551420a0c2a91eff3cb0ecd83f12a056 | ||
footer: | ||
change-type: minor | ||
Signed-off-by: Anton Belodedenko <[email protected]> | ||
signed-off-by: Anton Belodedenko <[email protected]> | ||
author: Anton Belodedenko | ||
nested: [] | ||
version: 1.4.0 | ||
title: "" | ||
date: 2024-06-13T17:42:58.493Z | ||
- commits: | ||
- subject: Migrate existing functionality to new os-config schema | ||
hash: f0882b960fa8810be462e7c23a64f39b5d1594ae | ||
|
@@ -26,13 +44,17 @@ | |
there is an assertion to check every code branch in those functions. | ||
TODO: read_config_json & write_config_json write to the filesystem because | ||
TODO: read_config_json & write_config_json write to the filesystem | ||
because | ||
they read/write to/from the actual filesystem. There are already some utility | ||
they read/write to/from the actual filesystem. There are already some | ||
utility | ||
functions (validate_json_file and create_tmp_file) in tests/integration.rs | ||
functions (validate_json_file and create_tmp_file) in | ||
tests/integration.rs | ||
that can help here. This file handling functionality could be moved to an internal | ||
that can help here. This file handling functionality could be moved to | ||
an internal | ||
crate so it can be used in both places. | ||
footer: | ||
|
@@ -427,15 +449,17 @@ | |
``` | ||
could not initialize thread_rng: All entropy sources failed (permanently unavailable); | ||
could not initialize thread_rng: All entropy sources failed (permanently | ||
unavailable); | ||
cause: getrandom not ready (not ready yet); | ||
cause: Resource temporarily unavailable; | ||
``` | ||
This change makes sure we are cycling until a random sequence is populated successfully. | ||
This change makes sure we are cycling until a random sequence is | ||
populated successfully. | ||
- hash: 14a19bf24e258c01a294bd7adfa808fddee59096 | ||
author: Zubair Lutfullah Kakakhel | ||
footers: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ members = ["test_utils"] | |
|
||
[package] | ||
name = "os-config" | ||
version = "1.3.0" | ||
version = "1.4.0" | ||
authors = ["Zahari Petkov <[email protected]>", "Andrei Gherzan <[email protected]>"] | ||
description = "balenaOS configuration tool" | ||
repository = "https://github.com/balena-os/os-config" | ||
|