Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions rust/agama-utils/src/api/network/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,11 @@ use std::default::Default;
#[serde(rename_all = "camelCase")]
pub struct Config {
/// Connections to use in the installation
#[serde(skip_serializing_if = "Option::is_none")]
#[merge(strategy = merge::option::overwrite_none)]
pub connections: Option<NetworkConnectionsCollection>,
/// Network general settings
#[serde(skip_serializing_if = "Option::is_none")]
#[merge(strategy = merge::option::recurse)]
pub state: Option<StateSettings>,
}
Expand Down
6 changes: 6 additions & 0 deletions rust/package/agama.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Thu Jan 29 22:30:05 UTC 2026 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>

- Do not export neither network/connections nor network/state when
they are None (related to bsc#1257400).

-------------------------------------------------------------------
Thu Jan 29 21:10:18 UTC 2026 - Josef Reidinger <jreidinger@suse.com>

Expand Down
Loading