nss-pam-ldapd commit: r1109 - in nss-pam-ldapd: . debian man
[
Date Prev][
Date Next]
[
Thread Prev][
Thread Next]
nss-pam-ldapd commit: r1109 - in nss-pam-ldapd: . debian man
- From: "Commits of the nss-pam-ldapd project." <nss-pam-ldapd-commits [at] lists.arthurdejong.org>
- To: nss-pam-ldapd-commits [at] lists.arthurdejong.org
- Reply-to: nss-pam-ldapd-users [at] lists.arthurdejong.org
- Subject: nss-pam-ldapd commit: r1109 - in nss-pam-ldapd: . debian man
- Date: Fri, 14 May 2010 22:49:50 +0200 (CEST)
Author: arthur
Date: Fri May 14 22:49:48 2010
New Revision: 1109
URL: http://arthurdejong.org/viewvc/nss-pam-ldapd?view=rev&revision=1109
Log:
get files ready for 0.7.5 release
Modified:
nss-pam-ldapd/ChangeLog
nss-pam-ldapd/NEWS
nss-pam-ldapd/configure.ac
nss-pam-ldapd/debian/changelog
nss-pam-ldapd/man/nslcd.8.xml
nss-pam-ldapd/man/nslcd.conf.5.xml
nss-pam-ldapd/man/pam_ldap.8.xml
Modified: nss-pam-ldapd/ChangeLog
==============================================================================
--- nss-pam-ldapd/ChangeLog Fri May 14 22:38:26 2010 (r1108)
+++ nss-pam-ldapd/ChangeLog Fri May 14 22:49:48 2010 (r1109)
@@ -1,3 +1,68 @@
+2010-05-14 20:38 arthur
+
+ * [r1108] Makefile.am, debian/source, debian/source/format: switch
+ to source format 3.0 (native)
+
+2010-05-14 20:32 arthur
+
+ * [r1107] pam/pam.c: print uid as a long
+
+2010-05-14 10:20 arthur
+
+ * [r1106] compat/pam_compat.h, configure.ac, man/pam_ldap.8.xml,
+ pam/common.h, pam/pam.c: perform logging from PAM module to
+ syslog and support the debug option to log debugging information
+
+2010-05-13 21:27 arthur
+
+ * [r1105] pam/pam.c: centralise initialising functions needed for
+ every PAM call into one function
+
+2010-05-13 19:13 arthur
+
+ * [r1104] common/nslcd-prot.h, nslcd/common.h: make logging of
+ buffer checks consistent
+
+2010-05-13 16:31 arthur
+
+ * [r1103] pam/pam.c: also use PAM username instead of one from
+ context for session open and close
+
+2010-05-13 16:30 arthur
+
+ * [r1102] pam/pam.c: replace my_pam_get_authtok() with standard
+ pam_get_authtok() function, get rid of get_old_password() and
+ general cleanups and simplifications
+
+2010-05-12 21:12 arthur
+
+ * [r1101] pam/pam.c: make parsing configuration options global,
+ reorganise a bit and make code more consistent and easier to read
+
+2010-05-12 20:37 arthur
+
+ * [r1100] compat/pam_compat.h, nslcd/pam.c: small compatibility
+ improvements
+
+2010-05-10 21:09 arthur
+
+ * [r1099] pam/pam.c: only log "LDAP session failed" if we actually
+ tried
+
+2010-05-10 20:59 arthur
+
+ * [r1098] compat/Makefile.am, compat/pam_compat.h,
+ compat/pam_get_authtok.c, compat/pam_prompt.c, configure.ac,
+ pam/pam.c: replace my_pam_warn() with pam_info() and pam_error()
+ and provide replacement for pam_prompt() also using it in our
+ pam_get_authtok() replacement
+
+2010-05-09 11:40 arthur
+
+ * [r1096] ChangeLog, NEWS, TODO, configure.ac, debian/changelog,
+ man/nslcd.8.xml, man/nslcd.conf.5.xml, man/pam_ldap.8.xml: get
+ files ready for 0.7.4 release
+
2010-05-09 10:44 arthur
* [r1095] nslcd/myldap.c: only log "connected to LDAP server" if
Modified: nss-pam-ldapd/NEWS
==============================================================================
--- nss-pam-ldapd/NEWS Fri May 14 22:38:26 2010 (r1108)
+++ nss-pam-ldapd/NEWS Fri May 14 22:49:48 2010 (r1109)
@@ -1,3 +1,13 @@
+changes from 0.7.4 to 0.7.5
+---------------------------
+
+* fix a problem in the session handling of the PAM module if the minimum_uid
+ option was used
+* refactor the PAM module code to be simpler and better maintainable
+* perform logging from PAM module to syslog and support the debug option to
+ log more information
+
+
changes from 0.7.3 to 0.7.4
---------------------------
Modified: nss-pam-ldapd/configure.ac
==============================================================================
--- nss-pam-ldapd/configure.ac Fri May 14 22:38:26 2010 (r1108)
+++ nss-pam-ldapd/configure.ac Fri May 14 22:49:48 2010 (r1109)
@@ -32,7 +32,7 @@
configure.ac file for more details.])
# initialize and set version and bugreport address
-AC_INIT([nss-pam-ldapd],[0.7.4],[nss-pam-ldapd-users@lists.arthurdejong.org])
+AC_INIT([nss-pam-ldapd],[0.7.5],[nss-pam-ldapd-users@lists.arthurdejong.org])
RELEASE_MONTH="May 2010"
AC_SUBST(RELEASE_MONTH)
AC_CONFIG_SRCDIR([nslcd.h])
Modified: nss-pam-ldapd/debian/changelog
==============================================================================
--- nss-pam-ldapd/debian/changelog Fri May 14 22:38:26 2010 (r1108)
+++ nss-pam-ldapd/debian/changelog Fri May 14 22:49:48 2010 (r1109)
@@ -1,3 +1,14 @@
+nss-pam-ldapd (0.7.5) unstable; urgency=low
+
+ * fix a problem in the session handling of the PAM module if the minimum_uid
+ option was used (Debian package default)
+ * refactor the PAM module code to be simpler and better maintainable
+ * perform logging from PAM module to syslog and support the debug option to
+ log more information
+ * Switch to "3.0 (native)" format.
+
+ -- Arthur de Jong <adejong@debian.org> Thu, 13 May 2010 20:17:39 +0200
+
nss-pam-ldapd (0.7.4) unstable; urgency=low
* fix a buffer overflow that should have no security consequences
Modified: nss-pam-ldapd/man/nslcd.8.xml
==============================================================================
--- nss-pam-ldapd/man/nslcd.8.xml Fri May 14 22:38:26 2010 (r1108)
+++ nss-pam-ldapd/man/nslcd.8.xml Fri May 14 22:49:48 2010 (r1109)
@@ -36,7 +36,7 @@
<refmeta>
<refentrytitle>nslcd</refentrytitle>
<manvolnum>8</manvolnum>
- <refmiscinfo class="version">Version 0.7.4</refmiscinfo>
+ <refmiscinfo class="version">Version 0.7.5</refmiscinfo>
<refmiscinfo class="manual">System Manager's Manual</refmiscinfo>
<refmiscinfo class="date">May 2010</refmiscinfo>
</refmeta>
Modified: nss-pam-ldapd/man/nslcd.conf.5.xml
==============================================================================
--- nss-pam-ldapd/man/nslcd.conf.5.xml Fri May 14 22:38:26 2010 (r1108)
+++ nss-pam-ldapd/man/nslcd.conf.5.xml Fri May 14 22:49:48 2010 (r1109)
@@ -36,7 +36,7 @@
<refmeta>
<refentrytitle>nslcd.conf</refentrytitle>
<manvolnum>5</manvolnum>
- <refmiscinfo class="version">Version 0.7.4</refmiscinfo>
+ <refmiscinfo class="version">Version 0.7.5</refmiscinfo>
<refmiscinfo class="manual">System Manager's Manual</refmiscinfo>
<refmiscinfo class="date">May 2010</refmiscinfo>
</refmeta>
Modified: nss-pam-ldapd/man/pam_ldap.8.xml
==============================================================================
--- nss-pam-ldapd/man/pam_ldap.8.xml Fri May 14 22:38:26 2010 (r1108)
+++ nss-pam-ldapd/man/pam_ldap.8.xml Fri May 14 22:49:48 2010 (r1109)
@@ -35,7 +35,7 @@
<refmeta>
<refentrytitle>pam_ldap</refentrytitle>
<manvolnum>8</manvolnum>
- <refmiscinfo class="version">Version 0.7.4</refmiscinfo>
+ <refmiscinfo class="version">Version 0.7.5</refmiscinfo>
<refmiscinfo class="manual">System Manager's Manual</refmiscinfo>
<refmiscinfo class="date">May 2010</refmiscinfo>
</refmeta>
--
To unsubscribe send an email to
nss-pam-ldapd-commits-unsubscribe@lists.arthurdejong.org or see
http://lists.arthurdejong.org/nss-pam-ldapd-commits
- nss-pam-ldapd commit: r1109 - in nss-pam-ldapd: . debian man,
Commits of the nss-pam-ldapd project.