Skip to content

Commit 39c1967

Browse files
committed
Prepare release 1.1.0
1 parent 78170f6 commit 39c1967

File tree

6 files changed

+61
-5
lines changed

6 files changed

+61
-5
lines changed

ChangeLog

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
netdata (1.1.0) - 2016-04-20
2+
3+
Dozens of commits that improve netdata in several ways:
4+
5+
- Data collection: added IPv6 monitoring
6+
- Data collection: added SYNPROXY DDoS protection monitoring
7+
- Data collection: apps.plugin: added charts for users and user groups
8+
- Data collection: apps.plugin: grouping of processes now support patterns
9+
- Data collection: apps.plugin: now it is faster, after the new features added
10+
- Data collection: better auto-detection of partitions for disk monitoring
11+
- Data collection: better fireqos intergation for QoS monitoring
12+
- Data collection: squid monitoring now uses squidclient
13+
- Data collection: SNMP monitoring now supports 64bit counters
14+
- API: fixed issues in CSV output generation
15+
- API: netdata can now be restricted to listen on a specific IP
16+
- Core and apps.plugin: error log flood protection
17+
- Dashboard: better error handling when the netdata server is unreachable
18+
- Dashboard: each chart now has a toolbox
19+
- Dashboard: on-line help support
20+
- Dashboard: check for netdata updates button
21+
- Dashboard: added example /tv.html dashboard
22+
- Packaging: now compiles with musl libc (alpine linux)
23+
- Packaging: added debian packaging
24+
- Packaging: support non-root installations
25+
- Packaging: the installer generates uninstall script
26+
127
netdata (1.0.0) - 2016-03-22
228

329
- first public release

Makefile.am

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ SUBDIRS = \
3535
src \
3636
system \
3737
web \
38+
contrib \
3839
$(NULL)
3940

4041
dist_noinst_DATA = netdata.spec

configure.ac

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
AC_PREREQ(2.60)
55

66
define([VERSION_MAJOR], [1])
7-
define([VERSION_MINOR], [0])
8-
define([VERSION_FIX], [1])
7+
define([VERSION_MINOR], [1])
8+
define([VERSION_FIX], [0])
99
define([VERSION_NUMBER], VERSION_MAJOR[.]VERSION_MINOR[.]VERSION_FIX)
10-
define([VERSION_SUFFIX], [_master])
10+
define([VERSION_SUFFIX], [])
1111

1212
dnl Set to "1" for a first RPM release of a new version
13-
PACKAGE_RPM_RELEASE="0.0.$(echo VERSION_SUFFIX | sed 's/^_//')"
13+
PACKAGE_RPM_RELEASE="1"
1414

1515
AC_INIT([netdata], VERSION_NUMBER[]VERSION_SUFFIX)
1616

@@ -164,6 +164,7 @@ AC_CONFIG_FILES([
164164
src/Makefile
165165
system/Makefile
166166
web/Makefile
167+
contrib/Makefile
167168
])
168169
AC_OUTPUT
169170

contrib/Makefile.am

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
MAINTAINERCLEANFILES= $(srcdir)/Makefile.in
2+
3+
dist_noinst_DATA = \
4+
README.md \
5+
debian/copyright \
6+
debian/netdata.conf \
7+
debian/source/format \
8+
debian/compat \
9+
debian/netdata.install \
10+
debian/netdata.lintian-overrides \
11+
debian/rules \
12+
debian/netdata.docs \
13+
debian/netdata.default \
14+
debian/control \
15+
debian/netdata.postinst.in \
16+
debian/netdata.service \
17+
debian/changelog \
18+
debian/netdata.postrm \
19+
$(NULL)
20+
21+
dist_noinst_SCRIPTS = \
22+
debian/netdata.init \
23+
$(NULL)

netdata.spec.in

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
%undefine with_systemd
99
%endif
1010

11-
Summary: Linux real time system monitoring, over the web
11+
Summary: Real-time performance monitoring, done right
1212
Name: @PACKAGE_NAME@
1313
Version: @PACKAGE_RPM_VERSION@
1414
Release: @PACKAGE_RPM_RELEASE@%{?release_suffix}%{?dist}
@@ -100,6 +100,9 @@ rm -rf $RPM_BUILD_ROOT
100100
%{_datadir}/%{name}/web
101101

102102
%changelog
103+
* Wed Apr 20 2016 Costa Tsaousis <costa@tsaousis.gr> - 1.1.0-1
104+
- Several new features (IPv6, SYNPROXY, Users, Users Groups).
105+
- A lot of bug fixes and optimizations.
103106
* Tue Mar 22 2016 Costa Tsaousis <costa@tsaousis.gr> - 1.0.0-1
104107
- First public release.
105108
* Sun Nov 15 2015 Alon Bar-Lev <alonbl@redhat.com> - 0.0.0-1

packaging/tar-compare

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ diff -r "$1" $MYTMP/unpack/* | grep "^Only" | sed \
5454
-e '/: unittest$/d' \
5555
-e '/: iprange$/d' \
5656
-e '/: .*\.o$/d' \
57+
-e '/: CMakeLists.txt/d' \
58+
-e '/: .travis.yml/d' \
5759
-e '/sbin: \(firehol\|fireqos\|link-balancer\)$/d' \
5860
-e '/sbin: \(update-ipsets\|vnetbuild\|commands.sed\)$/d' > $MYTMP/out
5961

0 commit comments

Comments
 (0)