Branch: refs/heads/testing Home: https://github.com/openSUSE/wicked Commit: b1943f8b943e83452bc017ea2d1d614c619f7ff1 https://github.com/openSUSE/wicked/commit/b1943f8b943e83452bc017ea2d1d614c61... Author: Marius Tomaschewski <mt@suse.com> Date: 2021-03-09 (Tue, 09 Mar 2021) Changed paths: M include/wicked/util.h M src/util.c Log Message: ----------- utils: add initial byte_array utilities Signed-off-by: Clemens Famulla-Conrad <cfamullaconrad@suse.de> Commit: 6d8c9c016c148bbe1e3a6507b339cc024e0cc5d6 https://github.com/openSUSE/wicked/commit/6d8c9c016c148bbe1e3a6507b339cc024e... Author: Clemens Famulla-Conrad <cfamullaconrad@suse.de> Date: 2021-03-09 (Tue, 09 Mar 2021) Changed paths: M include/wicked/dbus-service.h M src/dbus-object.c Log Message: ----------- dbus: Add generic byte-array property macros Add the ability to use byte arrays as generic property. The data is stored in a dynamic ni_byte_array_t. Commit: 5ddb8d4027a7717abbf86016731128da38b8d6d8 https://github.com/openSUSE/wicked/commit/5ddb8d4027a7717abbf86016731128da38... Author: Clemens Famulla-Conrad <cfamullaconrad@suse.de> Date: 2021-03-09 (Tue, 09 Mar 2021) Changed paths: M include/wicked/dbus-service.h Log Message: ----------- dbus: Format code in ni_dbus_property Commit: f5aacaebce5591f46879f2ddd0aaa70e392551c8 https://github.com/openSUSE/wicked/commit/f5aacaebce5591f46879f2ddd0aaa70e39... Author: Marius Tomaschewski <mt@suse.de> Date: 2021-03-10 (Wed, 10 Mar 2021) Changed paths: M client/ethtool.c M src/ethtool.c Log Message: ----------- client: expose ethtool --get-permanent-address option Commit: 56ad5bcd581aaa38c35be4ed37aa216d0f7d6d5f https://github.com/openSUSE/wicked/commit/56ad5bcd581aaa38c35be4ed37aa216d0f... Author: Clemens Famulla-Conrad <cfamullaconrad@suse.de> Date: 2021-03-11 (Thu, 11 Mar 2021) Changed paths: M src/xml-schema.c Log Message: ----------- xml-schema: Do not allow anon types in union or struct We do not allow anon types in `union` or `struct`, as we already to with `dict`. This is forbidden after this commit: ```xml <define name="certificate" class="union" switch="type"> <path type="string"/> <external-file/> <hex-string/> </define> ``` Each child element of a union or a struct need to be defined in the "complex" way like: ```xml <define name="certificate" class="union" switch="type"> <path type="string"/> <file type="external-file"/> <hex type="hex-string"/> </define> ``` Commit: bbf7148ea26369e05fb622a47232103c6f9f4daa https://github.com/openSUSE/wicked/commit/bbf7148ea26369e05fb622a47232103c6f... Author: Clemens Famulla-Conrad <cfamullaconrad@suse.de> Date: 2021-03-11 (Thu, 11 Mar 2021) Changed paths: M src/xml-schema.c Log Message: ----------- xml-schema: Fix ni_xs_name_type_array_find_local() with NULL check Anon types have `ni_xs_name_type_array_t->name` equal to NULL. This fix a NULL pointer exception in such a case. Commit: d47aa2101029238c9526914e454452c97beb26ce https://github.com/openSUSE/wicked/commit/d47aa2101029238c9526914e454452c97b... Author: Marius Tomaschewski <mt@suse.de> Date: 2021-03-18 (Thu, 18 Mar 2021) Changed paths: M src/dhcp4/device.c M src/dhcp4/dhcp4.h M src/dhcp4/fsm.c Log Message: ----------- dhcp4: discover on reboot timeout after start-delay (bsc#1181812) When enabled, randomize start delay in range 1..config, max 10sec. Commit: add770c2e6dec1e1cca7929e23c6fcaa948c3ae6 https://github.com/openSUSE/wicked/commit/add770c2e6dec1e1cca7929e23c6fcaa94... Author: Marius Tomaschewski <mt@suse.com> Date: 2021-03-19 (Fri, 19 Mar 2021) Changed paths: M include/wicked/dbus-service.h M include/wicked/util.h M src/dbus-object.c M src/util.c Log Message: ----------- Merge pull request #861 from cfconrad/master_mr_115_byte_array [dbus] Add generic property for `byte_array` Commit: 8964ba2fa10efe8993d5cd987dbfbfeefeb55c3c https://github.com/openSUSE/wicked/commit/8964ba2fa10efe8993d5cd987dbfbfeefe... Author: Marius Tomaschewski <mt@suse.com> Date: 2021-03-19 (Fri, 19 Mar 2021) Changed paths: M src/xml-schema.c Log Message: ----------- Merge pull request #863 from cfconrad/cfconrad_github_pr_schema_improvements xml-schema: Do not allow anon types for union and struct Commit: 6004207734f57e10ac74b7c2f87c55aae4689288 https://github.com/openSUSE/wicked/commit/6004207734f57e10ac74b7c2f87c55aae4... Author: Rubén Torrero Marijnissen <rtorreromarijnissen@suse.com> Date: 2021-03-25 (Thu, 25 Mar 2021) Changed paths: M client/ethtool.c M src/ethtool.c Log Message: ----------- Merge pull request #862 from mtomaschewski/ethtool-perm-addr client: expose ethtool --get-permanent-address option Commit: ded7f66ccbc8b98ef6d8a78534df53f1a2108e16 https://github.com/openSUSE/wicked/commit/ded7f66ccbc8b98ef6d8a78534df53f1a2... Author: Marius Tomaschewski <mt@suse.de> Date: 2021-03-31 (Wed, 31 Mar 2021) Changed paths: M configure.ac M src/config.c M wicked.spec.in Log Message: ----------- dhcp6: request nis options on sle15 by default Commit: c2bc6a9b5d4dfb425ed2bc67337d2cd934b004b2 https://github.com/openSUSE/wicked/commit/c2bc6a9b5d4dfb425ed2bc67337d2cd934... Author: Marius Tomaschewski <mt@suse.de> Date: 2021-03-31 (Wed, 31 Mar 2021) Changed paths: M client/suse/compat-suse.c M src/config.c M src/names.c Log Message: ----------- config: fix to init update flag mask to defaults Commit: 8ed6e3d3c7708042fad51cc2acae13b5fde39d2d https://github.com/openSUSE/wicked/commit/8ed6e3d3c7708042fad51cc2acae13b5fd... Author: Marius Tomaschewski <mt@suse.de> Date: 2021-03-31 (Wed, 31 Mar 2021) Changed paths: M include/wicked/util.h M src/util.c Log Message: ----------- utils: add an string array find match utility Commit: 4d07106a2330dd02883a9af317e1bc45a32a0731 https://github.com/openSUSE/wicked/commit/4d07106a2330dd02883a9af317e1bc45a3... Author: Marius Tomaschewski <mt@suse.de> Date: 2021-03-31 (Wed, 31 Mar 2021) Changed paths: M include/wicked/nis.h M src/nis.c M src/state.c Log Message: ----------- nis: cleanup nis definitions for wicked Commit: 0e54a64f3cfdb19304095bf4b77437a66ac68b1e https://github.com/openSUSE/wicked/commit/0e54a64f3cfdb19304095bf4b77437a66a... Author: Marius Tomaschewski <mt@suse.de> Date: 2021-03-31 (Wed, 31 Mar 2021) Changed paths: M schema/addrconf.xml M src/dbus-objects/misc.c M src/dhcp6/lease.c M src/leasefile.c M src/leaseinfo.c Log Message: ----------- lease: consider nis with multiple domains for dhcp6 Commit: fc278e2c5b4320726f3213c7382b39351cc8760e https://github.com/openSUSE/wicked/commit/fc278e2c5b4320726f3213c7382b39351c... Author: Marius Tomaschewski <mt@suse.de> Date: 2021-03-31 (Wed, 31 Mar 2021) Changed paths: M src/dhcp6/protocol.c Log Message: ----------- dhcp6: set nis servers from response msg in lease Commit: a5f942f2ff0f3384eb2e0513ef099407a2f23ddf https://github.com/openSUSE/wicked/commit/a5f942f2ff0f3384eb2e0513ef099407a2... Author: Marius Tomaschewski <mt@suse.de> Date: 2021-03-31 (Wed, 31 Mar 2021) Changed paths: M src/dhcp4/device.c M src/dhcp4/dhcp4.h M src/dhcp4/fsm.c Log Message: ----------- Merge pull request https://github.com/openSUSE/wicked/pull/865 Commit: a7118e0692e7b61733a17660c47f016041e04fd6 https://github.com/openSUSE/wicked/commit/a7118e0692e7b61733a17660c47f016041... Author: Marius Tomaschewski <mt@suse.de> Date: 2021-03-31 (Wed, 31 Mar 2021) Changed paths: M client/suse/compat-suse.c M configure.ac M include/wicked/nis.h M include/wicked/util.h M schema/addrconf.xml M src/config.c M src/dbus-objects/misc.c M src/dhcp6/lease.c M src/dhcp6/protocol.c M src/leasefile.c M src/leaseinfo.c M src/names.c M src/nis.c M src/state.c M src/util.c M wicked.spec.in Log Message: ----------- Merge pull request https://github.com/openSUSE/wicked/pull/866 Compare: https://github.com/openSUSE/wicked/compare/805b4929aa30...a7118e0692e7