summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 8eac3d8)
raw | patch | inline | side by side (parent: 8eac3d8)
author | Florian Forster <octo@noris.net> | |
Fri, 2 Jan 2009 17:31:11 +0000 (18:31 +0100) | ||
committer | Florian Forster <octo@noris.net> | |
Fri, 2 Jan 2009 17:31:11 +0000 (18:31 +0100) |
ChangeLog | patch | blob | history | |
version-gen.sh | patch | blob | history |
diff --git a/ChangeLog b/ChangeLog
index 1f5a0212111727314b44a94923a4295fa8c29cac..be7f35056e8f62f97925b1b1060fb4773a9cc442 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
+2009-01-02, Version 4.4.5
+ * build system: Check for `mysql.h' and `mysql/mysql.h', since the
+ file may be in both locations, especially when the database was
+ installed in a non-standard path. Thanks to Dusty Doris for
+ reporting this.
+ * build system: Handle the _POSIX_PTHREAD_SEMANTICS defined, needed by
+ Solaris, in the configure script automatically.
+ * collectd.conf(5): Various fixes and clarifications.
+ * apcups plugin: Include "collectd.h" before <stdlib.h>. This solves
+ portability problems, especially for Solaris.
+ * dns plugin: Fix a portability problem with NetBSD.
+ * network plugin: Fix the handling of `type' in the network protocol.
+ Due to a programming mistake, only 4 or 8 bytes would be copied to a
+ much larger buffer. This caused the `type' to be transferred much
+ more often than necessary. In some cases, e. g. the `cpu' and
+ `cpufreq' plugins being used at the same time, data may be corrupted
+ in those files. Thanks to Bruno Prémont for debugging and reporting
+ this issue.
+ * unixsock plugin: Make sure the initialization function is run only
+ once. This resolves a file descriptor leak under systems which run
+ the initialization more than once, such as Solaris.
+
2008-10-16, Version 4.4.4
* build system: Change `--enable-<plugin>' to abort with an error if
dependencies are not met. Thanks to Bruno Prémont for the patch.
daemon.
* perl plugin: Fail noisily, but don't shutdown the daemon, if
initialization has errors. An issue with Perl 5.10 has been fixed.
- * teamspeak2 plugin: Fixed an out of bounce array access. Thanks to
+ * teamspeak2 plugin: Fixed an out of bound array access. Thanks to
René Rebe and Siegmund Gorr for reporting this.
2008-05-06, Version 4.4.0
diff --git a/version-gen.sh b/version-gen.sh
index 271e513c0edd05e85c3f2e4b6fe18857ede33ab8..b73c8486fc86b8b2b1ffbd83c4b9ed4558ffc865 100755 (executable)
--- a/version-gen.sh
+++ b/version-gen.sh
#!/bin/sh
-DEFAULT_VERSION="4.4.4.git"
+DEFAULT_VERSION="4.4.5.git"
VERSION="$( git describe 2> /dev/null | sed -e 's/^collectd-//' )"