From 38c636c0492eeaed7bfddbcd3467581b651c259a Mon Sep 17 00:00:00 2001 From: Arthur de Jong Date: Sun, 18 Nov 2012 20:40:59 +0000 Subject: get files ready for 0.8.12 release git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-pam-ldapd@1834 ef36b2f9-881f-0410-afb5-c4e39611909c --- ChangeLog | 109 +++++++++++++++++++++++++++++++++++++++++++++++++++ NEWS | 18 +++++++++ TODO | 1 - configure.ac | 4 +- man/nslcd.8.xml | 4 +- man/nslcd.conf.5.xml | 4 +- man/pam_ldap.8.xml | 4 +- man/pynslcd.8.xml | 4 +- 8 files changed, 137 insertions(+), 11 deletions(-) diff --git a/ChangeLog b/ChangeLog index 5b85179..fa64203 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,112 @@ +2012-11-17 16:40 arthur + + * [r1832] pam/pam.c: use pam_modutil_getpwnam() instead of + getpwnam() in PAM module + +2012-11-17 16:38 arthur + + * [r1831] man/nslcd.8.xml, man/pynslcd.8.xml: fix formatting and + improve consistency in manaual pages + +2012-11-16 19:56 arthur + + * [r1828] man/nslcd.8.xml, man/pynslcd.8.xml: remove dots from + short description in manual page + +2012-11-16 16:57 arthur + + * [r1827] nslcd/config.c: fix comment in header + +2012-11-13 20:03 arthur + + * [r1824] man/nslcd.conf.5.xml, nslcd/cfg.c, nslcd/myldap.c, + pynslcd/cfg.py, pynslcd/pynslcd.py: to only set + LDAP_OPT_X_SASL_NOCANON if the sasl_canonicalize option is + explicitly set in the configuration file + +2012-11-11 22:46 arthur + + * [r1823] pam/pam.c: log the PAM error message along with the + message from nslcd if it is available + +2012-11-11 16:44 arthur + + * [r1822] .gitignore: add a .gitignore file for those working with + git + +2012-11-11 16:40 arthur + + * [r1821] common/nslcd-prot.c: set FD_CLOEXEC in NSS and PAM + modules to ensure that nslcd file descriptor is not leaked to + child processes + +2012-11-11 14:02 arthur + + * [r1814] nslcd/myldap.c: log connection message before clearing + error indicators to not hide these log messages in most + configurations (fixes r1095) + +2012-10-28 20:13 arthur + + * [r1812] nss/Makefile.am, nss/common.h, nss/group.c, nss/hosts.c, + nss/networks.c, nss/passwd.c, nss/protocols.c, nss/rpc.c, + nss/services.c, nss/shadow.c, nss/solnss.h: refactor the + read_result() functions into a common macro and move all the + Solaris-specific definitions to solnss.h + +2012-10-28 19:14 arthur + + * [r1811] nss/hosts.c: combine read_hostent_erronempty() and + read_hostent_nextonempty() into a read_hostent() with a retry + parameter + +2012-10-28 15:09 arthur + + * [r1810] nss/group.c: fix typo (thanks Ted C. Cheng) + +2012-10-26 11:51 arthur + + * [r1809] nss/group.c: fix buffer size checking in group by member + NSS function on Solaris + +2012-10-26 11:48 arthur + + * [r1808] nss/ethers.c, nss/group.c, nss/hosts.c, nss/netgroup.c, + nss/networks.c, nss/passwd.c, nss/protocols.c, nss/rpc.c, + nss/services.c, nss/shadow.c: introduce ent2str() functions for + each database (except ether and netgroup) and make buffer + handling consistent (for Solaris) + +2012-10-21 14:36 arthur + + * [r1807] configure.ac: remove duplicate checks from the configure + script + +2012-10-21 14:26 arthur + + * [r1806] man: ignore generated pynslcd manual pages + +2012-10-21 14:24 arthur + + * [r1805] nss/passwd.c: fix a problem on Solaris (fixes r1793) + +2012-10-21 13:46 arthur + + * [r1804] man/Makefile.am, man/nslcd.8.xml, man/pynslcd.8.xml: make + a pynslcd manual page and install it if pynslcd is enabled (and + small fix in nslcd manual page) + +2012-10-19 20:34 arthur + + * [r1803] common/expr.c, tests/test_expr.c: allow attribute options + in attribute mapping expressions + +2012-10-14 20:22 arthur + + * [r1798] ChangeLog, NEWS, configure.ac, man/nslcd.8.xml, + man/nslcd.conf.5.xml, man/pam_ldap.8.xml: get files ready for + 0.8.11 release + 2012-10-14 16:09 arthur * [r1797] configure.ac: remove extra code that sets PACKAGE_URL diff --git a/NEWS b/NEWS index 3940fc0..9328064 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,21 @@ +changes from 0.8.11 to 0.8.12 +----------------------------- + +* fix a problem with the sasl_canonicalize option that would cause errors + on non-SASL enabled systems +* ensure that the file descriptors in the NSS and PAM modules for connecting + to nslcd are closed on exec of the process +* allow attribute options in attribute mapping expressions +* show reconnect messages when failing over to a different LDAP server or + re-establishing the connection to an LDAP server (the message accidentally + got hidden in 0.7.4) +* fix a problem with the pw_class attribute in FreeBSD (fixes 0.8.11) +* more fixes and improvements for Solaris (running under nscd may still give + problems though) +* small improvement to PAM error logging +* provide a pynslcd manual if pynslcd is built + + changes from 0.8.10 to 0.8.11 ----------------------------- diff --git a/TODO b/TODO index c0a08cf..b711776 100644 --- a/TODO +++ b/TODO @@ -17,7 +17,6 @@ as a user (see pam_ldap) * implement nested groups * implement other services in nslcd: sudo and autofs are candidates -* fix buffer handling in read_**string() functions (Solaris support) * complete pynslcd implementation * implement chsh and chfn in nslcd PAM code and make chsh.ldap and chfn.ldap binaries diff --git a/configure.ac b/configure.ac index b3b25bf..8feb376 100644 --- a/configure.ac +++ b/configure.ac @@ -33,10 +33,10 @@ configure.ac file for more details.]) # initialize and set version and bugreport address AC_INIT([nss-pam-ldapd], - [0.8.11], + [0.8.12], [nss-pam-ldapd-users@lists.arthurdejong.org],, [http://arthurdejong.org/nss-pam-ldapd/]) -RELEASE_MONTH="Oct 2012" +RELEASE_MONTH="Nov 2012" AC_SUBST(RELEASE_MONTH) AC_CONFIG_SRCDIR([nslcd.h]) diff --git a/man/nslcd.8.xml b/man/nslcd.8.xml index fe1ffe3..873f6a5 100644 --- a/man/nslcd.8.xml +++ b/man/nslcd.8.xml @@ -36,9 +36,9 @@ nslcd 8 - Version 0.8.11 + Version 0.8.12 System Manager's Manual - Oct 2012 + Nov 2012 diff --git a/man/nslcd.conf.5.xml b/man/nslcd.conf.5.xml index 14aa923..653d2f8 100644 --- a/man/nslcd.conf.5.xml +++ b/man/nslcd.conf.5.xml @@ -36,9 +36,9 @@ nslcd.conf 5 - Version 0.8.11 + Version 0.8.12 System Manager's Manual - Oct 2012 + Nov 2012 diff --git a/man/pam_ldap.8.xml b/man/pam_ldap.8.xml index 41ac9e8..dc35cc3 100644 --- a/man/pam_ldap.8.xml +++ b/man/pam_ldap.8.xml @@ -35,9 +35,9 @@ pam_ldap 8 - Version 0.8.11 + Version 0.8.12 System Manager's Manual - Oct 2012 + Nov 2012 diff --git a/man/pynslcd.8.xml b/man/pynslcd.8.xml index 5714634..efafaca 100644 --- a/man/pynslcd.8.xml +++ b/man/pynslcd.8.xml @@ -35,9 +35,9 @@ pynslcd 8 - Version 0.8.11 + Version 0.8.12 System Manager's Manual - Oct 2012 + Nov 2012 -- cgit v1.2.3