diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2011-09-18 20:24:23 +0200 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2011-09-18 20:24:23 +0200 |
commit | fa25d090b2ab9698dff42e65bc0aa5b1b16de3f1 (patch) | |
tree | e33cc2774e358b755d12e5a94347f7d22f4e6365 | |
parent | 2fc94eee6b51bb1c3ef3b331bdaa987f38927a23 (diff) |
get files ready for 0.7.14 release0.7.14
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-pam-ldapd-0.7@1544 ef36b2f9-881f-0410-afb5-c4e39611909c
-rw-r--r-- | ChangeLog | 39 | ||||
-rw-r--r-- | NEWS | 13 | ||||
-rw-r--r-- | configure.ac | 8 | ||||
-rw-r--r-- | debian/changelog | 13 | ||||
-rw-r--r-- | debian/copyright | 2 | ||||
-rw-r--r-- | man/nslcd.8.xml | 6 | ||||
-rw-r--r-- | man/nslcd.conf.5.xml | 6 | ||||
-rw-r--r-- | man/pam_ldap.8.xml | 6 |
8 files changed, 79 insertions, 14 deletions
@@ -1,3 +1,42 @@ +2011-08-24 20:45 arthur + + * [r1516] ., nslcd/cfg.c: fix a problem with uninitialised memory + while parsing the tls_ciphers option (r1471 from development) + +2011-07-02 21:28 arthur + + * [r1477] ., nslcd/group.c, nslcd/passwd.c, nslcd/shadow.c: grow + static buffers so that they should be large enough (part of r1476 + from trunk) + +2011-06-05 09:18 arthur + + * [r1472] ., common/expr.c, tests/test_expr.c: handle expressions + where the expander function returns NULL (handle it as an empty + string) (r1471 from development) + +2011-06-05 08:55 arthur + + * [r1469] nslcd/myldap.c: fix r1465 to split attribute/value at + right place + +2011-05-21 14:54 arthur + + * [r1465] ., nslcd/myldap.c: fix problem with partial attribute + name matches in DN (e.g. uid vs. uidNumber) (thanks to Timothy + White for the fix) (r1464 from trunk) + +2011-04-22 10:03 arthur + + * [r1432] ., nslcd/myldap.c: report correct reported error from + ldap_abandon() (merge r1431 from development) + +2010-12-11 21:57 arthur + + * [r1323] ChangeLog, NEWS, configure.ac, debian/changelog, + man/nslcd.8.xml, man/nslcd.conf.5.xml, man/pam_ldap.8.xml: get + files ready for 0.7.13 release + 2010-12-11 20:11 arthur * [r1321] ., nslcd/pam.c: return correct kind of error code from @@ -1,3 +1,16 @@ +changes from 0.7.13 to 0.7.14 +----------------------------- + +* log correct error from ldap_abandon() +* fix problem with partial attribute name matches in DN (thanks Timothy + White) +* handle expressions where some variable would expand to NULL +* make buffer sizes consistent and grow all buffers holding string + representations of numbers to be able to hold 64-bit numbers +* fix a problem with uninitialised memory while parsing the tls_ciphers + option + + changes from 0.7.12 to 0.7.13 ----------------------------- diff --git a/configure.ac b/configure.ac index fcf419e..c829ca3 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # # Copyright (C) 2006 Luke Howard # Copyright (C) 2006 West Consulting -# Copyright (C) 2006, 2007, 2008, 2009, 2010 Arthur de Jong +# Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Arthur de Jong # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -23,7 +23,7 @@ AC_PREREQ(2.61) AC_COPYRIGHT( [Copyright (C) 2006 Luke Howard Copyright (C) 2006 West Consulting -Copyright (C) 2006, 2007, 2008, 2009, 2010 Arthur de Jong +Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Arthur de Jong This configure script is derived from configure.ac which is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser @@ -32,8 +32,8 @@ 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-pam-ldapd],[0.7.13],[nss-pam-ldapd-users@lists.arthurdejong.org]) -RELEASE_MONTH="Dec 2010" +AC_INIT([nss-pam-ldapd],[0.7.14],[nss-pam-ldapd-users@lists.arthurdejong.org]) +RELEASE_MONTH="Sep 2011" AC_SUBST(RELEASE_MONTH) AC_CONFIG_SRCDIR([nslcd.h]) diff --git a/debian/changelog b/debian/changelog index 17ab37b..3b033fa 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,16 @@ +nss-pam-ldapd (0.7.14) stable; urgency=low + + * log correct error from ldap_abandon() + * fix problem with partial attribute name matches in DN (thanks Timothy + White) + * handle expressions where some variable would expand to NULL + * make buffer sizes consistent and grow all buffers holding string + representations of numbers to be able to hold 64-bit numbers + * fix a problem with uninitialised memory while parsing the tls_ciphers + option (closes: #638872) + + -- Arthur de Jong <adejong@debian.org> Fri, 18 Sep 2011 20:00:00 +0200 + nss-pam-ldapd (0.7.13) unstable; urgency=low * fix handling of idle_timelimit option diff --git a/debian/copyright b/debian/copyright index 25ed843..3a34cac 100644 --- a/debian/copyright +++ b/debian/copyright @@ -18,7 +18,7 @@ Davide Puricelli (evo), Sami Haahtinen and Stephen Frost. Copyright (C) 1997-2006 Luke Howard Copyright (C) 2006-2007 West Consulting - Copyright (C) 2006-2009 Arthur de Jong + Copyright (C) 2006-2011 Arthur de Jong Copyright (C) 2009 Howard Chu This library is free software; you can redistribute it and/or diff --git a/man/nslcd.8.xml b/man/nslcd.8.xml index 5f2bbb7..446dfbc 100644 --- a/man/nslcd.8.xml +++ b/man/nslcd.8.xml @@ -6,7 +6,7 @@ nslcd.8.xml - docbook manual page for nslcd Copyright (C) 2006 West Consulting - Copyright (C) 2006, 2007, 2008, 2009, 2010 Arthur de Jong + Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Arthur de Jong This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -36,9 +36,9 @@ <refmeta> <refentrytitle>nslcd</refentrytitle> <manvolnum>8</manvolnum> - <refmiscinfo class="version">Version 0.7.13</refmiscinfo> + <refmiscinfo class="version">Version 0.7.14</refmiscinfo> <refmiscinfo class="manual">System Manager's Manual</refmiscinfo> - <refmiscinfo class="date">Dec 2010</refmiscinfo> + <refmiscinfo class="date">Sep 2011</refmiscinfo> </refmeta> <refnamediv id="name"> diff --git a/man/nslcd.conf.5.xml b/man/nslcd.conf.5.xml index e1b244d..a6fc300 100644 --- a/man/nslcd.conf.5.xml +++ b/man/nslcd.conf.5.xml @@ -6,7 +6,7 @@ nslcd.conf.5.xml - docbook manual page for nslcd.conf Copyright (C) 1997-2005 Luke Howard - Copyright (C) 2007, 2008, 2009, 2010 Arthur de Jong + Copyright (C) 2007, 2008, 2009, 2010, 2011 Arthur de Jong This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -36,9 +36,9 @@ <refmeta> <refentrytitle>nslcd.conf</refentrytitle> <manvolnum>5</manvolnum> - <refmiscinfo class="version">Version 0.7.13</refmiscinfo> + <refmiscinfo class="version">Version 0.7.14</refmiscinfo> <refmiscinfo class="manual">System Manager's Manual</refmiscinfo> - <refmiscinfo class="date">Dec 2010</refmiscinfo> + <refmiscinfo class="date">Sep 2011</refmiscinfo> </refmeta> <refnamediv id="name"> diff --git a/man/pam_ldap.8.xml b/man/pam_ldap.8.xml index f247c6d..de6741c 100644 --- a/man/pam_ldap.8.xml +++ b/man/pam_ldap.8.xml @@ -5,7 +5,7 @@ <!-- pam_ldap.8.xml - docbook manual page for pam_ldap PAM module - Copyright (C) 2009, 2010 Arthur de Jong + Copyright (C) 2009, 2010, 2011 Arthur de Jong This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -35,9 +35,9 @@ <refmeta> <refentrytitle>pam_ldap</refentrytitle> <manvolnum>8</manvolnum> - <refmiscinfo class="version">Version 0.7.13</refmiscinfo> + <refmiscinfo class="version">Version 0.7.14</refmiscinfo> <refmiscinfo class="manual">System Manager's Manual</refmiscinfo> - <refmiscinfo class="date">Dec 2010</refmiscinfo> + <refmiscinfo class="date">Sep 2011</refmiscinfo> </refmeta> <refnamediv id="name"> |