Hello community,

here is the log from the commit of package netdata for openSUSE:Factory checked 
in at 2017-09-20 17:07:33
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/netdata (Old)
 and      /work/SRC/openSUSE:Factory/.netdata.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "netdata"

Wed Sep 20 17:07:33 2017 rev:4 rq:526806 version:1.8.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/netdata/netdata.changes  2017-08-24 
18:42:42.143345526 +0200
+++ /work/SRC/openSUSE:Factory/.netdata.new/netdata.changes     2017-09-20 
17:07:34.204807069 +0200
@@ -1,0 +2,77 @@
+Sun Sep 17 19:25:13 UTC 2017 - [email protected]
+
+- Add return statement to main function (-Wreturn-type)
+  * netdata-main-return.patch
+
+-------------------------------------------------------------------
+Sun Sep 17 17:40:14 UTC 2017 - [email protected]
+
+- Update to v1.8.0
+  * fixed bugs:
+    - streaming slaves consuming 100% CPU
+    - missing alarm notifications on netdata masters
+    - API generating corrupted JSON
+    - crashing when starting on systems without writable disks
+    - python.d.plugin URLService did not support HTTP keep-alive
+    - streamed charts with duplicate names
+  * netdata enhancements:
+    - netdata can now listen on UNIX domain sockets
+    - systemd netdata.service now allows setting negative netdata
+      OOM score and restarts netdata if it crashes
+  * new plugins:
+    - CPU thermal throttling charts
+    - chrony plugin
+    - Stiebel Eltron plugin to collect metrics from heat pumps and
+      hot water installations from Stiebel Eltron ISG
+  * improved plugins:
+    - web_log bugfixes, enhancements and optimizations
+      (including squid logs)
+    - web_log now enables parsing HTTP/2 logs in custom_log_format
+    - redis bugfixes
+    - haproxy bugfixes
+    - elasticsearch bugfixes and optimizations
+    - rabbitmq bugfixes and optimizations
+    - mdstat bugfixes
+    - tomcat improvements
+    - mysql improvements
+    - dovecot improvements
+    - postgres improvements
+    - cpufreq fixed a bug that prevented accurate reporting of
+      CPU frequencies.
+    - cpuidle performance improvements (faster under load)
+    - fail2ban bugfixes
+    - SNMP plugin new uses latest net-snmp and the corrupted 64-bit
+      counters encountered under certain node.js versions is fixed
+  * dashboard improvements:
+    - easypiecharts and gauges can now render arbitrary ranges and
+      animate clockwise or counterclockwise
+    - container network interfaces are now moved to the container
+      section
+    - containers and VMs now have summary gauges on the dashboard
+    - traditionally netdata was using 1024 bits = 1 kilobit.
+      It is fixed: 1000 bits = 1 kilobit.
+    - netdata charts should now work on wordpress pages
+  * alarms and notifications:
+    - alarm-notify.sh now supports debug mode, showing the exact
+      commands it runs to send notifications,
+      when export NETDATA_ALARM_NOTIFY_DEBUG=1
+    - alarm-notify.sh now supports setting the sender email address
+      of the emails it sends
+    - emails sent by alarm-notify.sh now include headers to reduce
+      the possibility of them being scored as spam
+    - network related alarms got new thresholds and improved badges
+    - netdata now detects if the system has been suspended and
+      pauses all alarms for 60 seconds on resume, to prevent false
+      alarms
+    - netdata alarms now support filtering based on hostname and OS
+    - slack notifications now show the host that sent the alarm
+  * statsd:
+    - the number of fractional points supported by statsd is now
+      configurable (1 to 7)
+    - fixed: 95th percentile calculation on statsd histograms and
+      timers was incorrectly averaging the values
+    - fixed: statsd metrics with non-ASCII text were processed by
+      the statsd server, but were breaking JSON data generated by
+      netdata
+
+-------------------------------------------------------------------

Old:
----
  netdata-1.7.0.tar.gz

New:
----
  netdata-1.8.0.tar.gz
  netdata-main-return.patch

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

Other differences:
------------------
++++++ netdata.spec ++++++
--- /var/tmp/diff_new_pack.f6bnmh/_old  2017-09-20 17:07:35.016692780 +0200
+++ /var/tmp/diff_new_pack.f6bnmh/_new  2017-09-20 17:07:35.016692780 +0200
@@ -24,7 +24,7 @@
 %bcond_with    systemd
 %endif
 Name:           netdata
-Version:        1.7.0
+Version:        1.8.0
 Release:        0
 Summary:        A system for distributed real-time performance and health 
monitoring
 # netdata is GPL-3.0+ other licenses refer to included third-party software 
(see LICENSE.md)
@@ -36,6 +36,7 @@
 Patch0:         netdata-logrotate-su.patch
 Patch1:         netdata-automake-no-dist-xz.patch
 Patch2:         netdata-smartd-log-path.patch
+Patch3:         netdata-main-return.patch
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  dos2unix
@@ -79,6 +80,7 @@
 %patch0
 %patch1 -p1
 %patch2 -p1
+%patch3 -p1
 dos2unix web/lib/tableExport-1.6.0.min.js
 
 %build

++++++ netdata-1.7.0.tar.gz -> netdata-1.8.0.tar.gz ++++++
++++ 29747 lines of diff (skipped)

++++++ netdata-main-return.patch ++++++
diff -ru netdata-1.8.0.orig/src/main.c netdata-1.8.0/src/main.c
--- netdata-1.8.0.orig/src/main.c       2017-09-17 18:59:28.000000000 +0200
+++ netdata-1.8.0/src/main.c    2017-09-17 21:19:51.513457840 +0200
@@ -997,4 +997,6 @@
     // Handle signals
 
     signals_handle();
+
+    return 0;
 }

Reply via email to