diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2007-10-26 10:46:14 +0200 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2007-10-26 10:46:14 +0200 |
commit | a618d315aadff957a6f78cd61a64cd791e3ffdb6 (patch) | |
tree | 54392984f608c207e51119484f43e8721c443b38 | |
parent | f25e3adebf3ce566073e1981db5e2c111e9bbc10 (diff) |
integrate changes from 0.4.1 release
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-ldapd@460 ef36b2f9-881f-0410-afb5-c4e39611909c
-rw-r--r-- | NEWS | 14 | ||||
-rw-r--r-- | TODO | 4 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | debian/changelog | 13 | ||||
-rw-r--r-- | man/nslcd.8.xml | 2 | ||||
-rw-r--r-- | man/nss-ldapd.conf.5.xml | 2 |
6 files changed, 31 insertions, 6 deletions
@@ -1,3 +1,15 @@ +changes from 0.4 to 0.4.1 +------------------------- + +* added French debconf translation by Cyril Brulebois +* added Japanese debconf translation by Kenshi Muto +* fix a problem with network name lookups where the lookup would result + in the wrong call to nslcd +* fix wrong default filter for rpc lookups +* fix a number of memory leaks (thanks valgrind) + (all memory leaks during normal operation should be fixed now) + + changes from 0.3 to 0.4 ----------------------- @@ -9,7 +21,7 @@ changes from 0.3 to 0.4 * added missing docbook sources for manual pages to tarball * major cleanups and simplifications in the core LDAP query code (we don't need to worry about SIGPIPE because nslcd does that globally, locking - because a connection is only used by one thread and simplifications the the + because a connection is only used by one thread and simplifications the the LDAP connection and query state) * get base, scope, filter and map configfile directives properly working * simplifications in LDAP reconnect logic (some work remains to be done in @@ -39,7 +39,6 @@ other items * in mkfilter_*() functions: add some check to see if the filter fits and log an error (also see to it that the caller exists (e.g. declare return value as must use)) -* update online documentation * maybe document how to set up automounting in LDAP (Linux and Solaris) * make sure to translate timelimit 0 into timelimit -1 where needed * split out idle checking into separate function so we may be able to call it @@ -48,4 +47,5 @@ other items chroot jails) * make number of thread configurable in config * make I/O timeout between NSS lib and daemon configurable at configure -* check for memory leaks +* document the timout mechanism between client and server and document some + cases where this may cause problems diff --git a/configure.ac b/configure.ac index b8188e1..cf326a9 100644 --- a/configure.ac +++ b/configure.ac @@ -32,7 +32,7 @@ version 2.1 of the License, or (at your option) any later version. See the configure.ac file for more details.]) # initialize and set version and bugreport address -AC_INIT([nss-ldapd],[0.4],[arthur@ch.tudelft.nl]) +AC_INIT([nss-ldapd],[0.4.1],[arthur@ch.tudelft.nl]) RELEASE_MONTH="Oct 2007" AC_SUBST(RELEASE_MONTH) AC_CONFIG_SRCDIR([nslcd.h]) diff --git a/debian/changelog b/debian/changelog index 6a1dc3b..a266e6b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,16 @@ +nss-ldapd (0.4.1) unstable; urgency=low + + * updated French debconf translation by Cyril Brulebois (closes: #433248) + * updated Japanese debconf translation by Kenshi Muto (closes: #446580) + * remove S runlevel from Default-Stop in init script (closes: #447949) + * fix a problem with network name lookups where the lookup would result + in the wrong call to nslcd + * fix wrong default filter for rpc lookups + * fix a number of memory leaks (thanks valgrind) (closes: #447997) + (all memory leaks during normal operation should be fixed now) + + -- Arthur de Jong <adejong@debian.org> Thu, 26 Oct 2007 10:00:00 +0200 + nss-ldapd (0.4) unstable; urgency=low * remove nss_schema configfile option diff --git a/man/nslcd.8.xml b/man/nslcd.8.xml index c03d028..3bc7892 100644 --- a/man/nslcd.8.xml +++ b/man/nslcd.8.xml @@ -36,7 +36,7 @@ <refmeta> <refentrytitle>nslcd</refentrytitle> <manvolnum>8</manvolnum> - <refmiscinfo class="version">Version 0.4</refmiscinfo> + <refmiscinfo class="version">Version 0.4.1</refmiscinfo> <refmiscinfo class="manual">System Manager's Manual</refmiscinfo> <refmiscinfo class="date">Oct 2007</refmiscinfo> </refmeta> diff --git a/man/nss-ldapd.conf.5.xml b/man/nss-ldapd.conf.5.xml index dbda805..b531d69 100644 --- a/man/nss-ldapd.conf.5.xml +++ b/man/nss-ldapd.conf.5.xml @@ -36,7 +36,7 @@ <refmeta> <refentrytitle>nss-ldapd.conf</refentrytitle> <manvolnum>5</manvolnum> - <refmiscinfo class="version">Version 0.4</refmiscinfo> + <refmiscinfo class="version">Version 0.4.1</refmiscinfo> <refmiscinfo class="manual">System Manager's Manual</refmiscinfo> <refmiscinfo class="date">Oct 2007</refmiscinfo> </refmeta> |