Hello community,

here is the log from the commit of package NetworkManager for openSUSE:Factory 
checked in at 2018-05-22 16:59:41
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/NetworkManager (Old)
 and      /work/SRC/openSUSE:Factory/.NetworkManager.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "NetworkManager"

Tue May 22 16:59:41 2018 rev:184 rq:606960 version:1.10.8

Changes:
--------
--- /work/SRC/openSUSE:Factory/NetworkManager/NetworkManager.changes    
2018-05-08 13:31:40.761809237 +0200
+++ /work/SRC/openSUSE:Factory/.NetworkManager.new/NetworkManager.changes       
2018-05-22 16:59:44.117087381 +0200
@@ -1,0 +2,23 @@
+Sun May 13 19:18:48 UTC 2018 - [email protected]
+
+- Don't fall back to writing /etc/resolv.conf if launching
+  netconfig fails for some reason (boo#1092352,
+  NetworkManager-1.10.6-netconfig.patch).
+
+-------------------------------------------------------------------
+Fri May 11 16:52:27 UTC 2018 - [email protected]
+
+- Update to version 1.10.8:
+  + Fix connectivity timeout handling (bgo#794464).
+  + Retry activating devices when the parent becomes managed
+    (rh#1553595).
+  + Correctly set the rp_filter value (rh#1565529).
+  + A fix to ensure teamd is respawned after daemon restart
+    (rh#1551958).
+  + Better handle DHCP expiry (bgo#783391).
+  + Fix configuration of IPv6 over master interfaces (rh#1575944).
+  + Other various bug fixes including possible crashes.
+  + Updated translations.
+- Drop NM-look-at-all-rp-filter-value.patch: Fixed upstream.
+
+-------------------------------------------------------------------

Old:
----
  NM-look-at-all-rp-filter-value.patch
  NetworkManager-1.10.6.tar.xz

New:
----
  NetworkManager-1.10.6-netconfig.patch
  NetworkManager-1.10.8.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ NetworkManager.spec ++++++
--- /var/tmp/diff_new_pack.C6eDui/_old  2018-05-22 16:59:45.421039935 +0200
+++ /var/tmp/diff_new_pack.C6eDui/_new  2018-05-22 16:59:45.425039789 +0200
@@ -22,7 +22,7 @@
 %define with_cacert_patch 0
 %define _udevdir %(pkg-config --variable udevdir udev)
 Name:           NetworkManager
-Version:        1.10.6
+Version:        1.10.8
 Release:        0
 Summary:        Network Link Manager and User Applications
 License:        GPL-2.0-or-later
@@ -33,6 +33,7 @@
 Source2:        NetworkManager.conf
 Source3:        baselibs.conf
 Source99:       NetworkManager-rpmlintrc
+
 # PATCH-FEATURE-OPENSUSE systemd-network-config.patch -- don't try to start NM 
under systemd if it is disabled in system configuration
 Patch0:         systemd-network-config.patch
 # PATCH-FIX-UPSTREAM nm-probe-radius-server-cert.patch bnc#574266 
[email protected] -- Probe the RADIUS server certificate
@@ -43,8 +44,9 @@
 Patch3:         networkmanager-obs-net.patch
 # PATCH-FIX-OPENSUSE nm-dont-overwrite-resolv-conf.patch bsc#1021665, 
bsc#960153 [email protected] -- NetworkManager spawns netconfig to update DNS 
settings, and terminates netconfig after 1s. But 1s isn't quite long enough for 
netconfig to complete the task. Adjust it to 0 seconds(don't send SIGKILL) to 
avoid NM overwriting /etc/resolv.conf.
 Patch4:         nm-dont-overwrite-resolv-conf.patch
-# PATCH-FIX-UPSTREAM NM-look-at-all-rp-filter-value.patch bsc#1084336 
bgo#794689 [email protected] -- device: look at 'all' rp_filter value too to 
determine actual value
-Patch5:         NM-look-at-all-rp-filter-value.patch
+# PATCH-FIX-OPENSUSE NetworkManager-1.10.6-netconfig.patch boo#1092352 -- 
Don't return SR_NOTFOUND if netconfig fails to launch
+Patch5:         NetworkManager-1.10.6-netconfig.patch
+
 BuildRequires:  dnsmasq
 BuildRequires:  fdupes
 BuildRequires:  intltool

++++++ NetworkManager-1.10.6-netconfig.patch ++++++
Index: NetworkManager-1.10.6/src/dns/nm-dns-manager.c
===================================================================
--- NetworkManager-1.10.6.orig/src/dns/nm-dns-manager.c
+++ NetworkManager-1.10.6/src/dns/nm-dns-manager.c
@@ -402,9 +402,17 @@ dispatch_netconfig (NMDnsManager *self,
        gint fd;
        int status;
 
+       if (!g_file_test (NETCONFIG_PATH, G_FILE_TEST_IS_EXECUTABLE)) {
+               g_set_error_literal (error,
+                                    NM_MANAGER_ERROR,
+                                    NM_MANAGER_ERROR_FAILED,
+                                    NETCONFIG_PATH " is not executable");
+               return SR_NOTFOUND;
+       }
+
        pid = run_netconfig (self, error, &fd);
        if (pid <= 0)
-               return SR_NOTFOUND;
+               return SR_ERROR;
 
        /* NM is writing already-merged DNS information to netconfig, so it
         * does not apply to a specific network interface.
++++++ NetworkManager-1.10.6.tar.xz -> NetworkManager-1.10.8.tar.xz ++++++
++++ 13534 lines of diff (skipped)


Reply via email to