diff options
author | Thorsten Kukuk <kukuk@thkukuk.de> | 2010-10-28 09:36:25 +0000 |
---|---|---|
committer | Thorsten Kukuk <kukuk@thkukuk.de> | 2010-10-28 09:36:25 +0000 |
commit | 46cdce51ed99e5b86c613fb19dafa973c219d255 (patch) | |
tree | e9b3dd5ad3e20461f685b0fc6635b0499d1b25f9 | |
parent | 4a662fcabd2c3914206cce3c7fb4d932fa9fcd9d (diff) | |
download | pam-46cdce51ed99e5b86c613fb19dafa973c219d255.tar.gz pam-46cdce51ed99e5b86c613fb19dafa973c219d255.tar.bz2 pam-46cdce51ed99e5b86c613fb19dafa973c219d255.zip |
Relevant BUGIDs:
Purpose of commit: release
Commit summary:
---------------
2010-10-28 Thorsten Kukuk <kukuk@thkukuk.de>
* release version 1.1.3
* configure.in: Increase version to 1.1.3
* NEWS: document visible changes
* libpam/Makefile.am (libpam_la_LDFLAGS): Bump version number.
-rw-r--r-- | ChangeLog | 10 | ||||
-rw-r--r-- | NEWS | 12 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | libpam/Makefile.am | 2 |
4 files changed, 23 insertions, 3 deletions
@@ -1,3 +1,13 @@ +2010-10-28 Thorsten Kukuk <kukuk@thkukuk.de> + + * release version 1.1.3 + + * configure.in: Increase version to 1.1.3 + + * NEWS: document visible changes + + * libpam/Makefile.am (libpam_la_LDFLAGS): Bump version number. + 2010-10-27 Thorsten Kukuk <kukuk@thkukuk.de> * doc/adg/Makefile.am: Use UTF-8 for html docu. @@ -1,6 +1,16 @@ Linux-PAM NEWS -- history of user-visible changes. +Release 1.1.3 + +* pam_namespace: Clean environment for childs (CVE-2010-3853) +* libpam: New interface to drop/regain privilegs +* Drop root privilegs in pam_env, pam_mail and pam_xauth before + accessing user files (CVE-2010-3430, CVE-2010-3431) +* pam_unix: Add minlen option, change default from 6 to 0 +* Documentation improvements +* Lot of small bug fixes + Release 1.1.2 * pam_unix: Add minlen= option @@ -14,7 +24,7 @@ Release 1.1.1 * Update translations * pam_access: Revert netgroup match to original behavior, add new syntax for adding the local hostname to netgroup match -* libpam: Add new functions pam_get_authtok_noverify() and +* libpam: Add new functions pam_get_authtok_noverify() and pam_get_authtok_verify() * Add sepermit.conf.5 manual page * Lot of bug fixes diff --git a/configure.in b/configure.in index a6f659da..d09d753f 100644 --- a/configure.in +++ b/configure.in @@ -1,7 +1,7 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT AC_CONFIG_SRCDIR([conf/pam_conv1/pam_conv_y.y]) -AM_INIT_AUTOMAKE("Linux-PAM", 1.1.2) +AM_INIT_AUTOMAKE("Linux-PAM", 1.1.3) AC_PREREQ(2.61) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_MACRO_DIR([m4]) diff --git a/libpam/Makefile.am b/libpam/Makefile.am index 57080fcf..3c7ae1d6 100644 --- a/libpam/Makefile.am +++ b/libpam/Makefile.am @@ -20,7 +20,7 @@ include_HEADERS = include/security/_pam_compat.h \ noinst_HEADERS = pam_prelude.h pam_private.h pam_tokens.h \ pam_modutil_private.h pam_static_modules.h -libpam_la_LDFLAGS = -no-undefined -version-info 82:3:82 +libpam_la_LDFLAGS = -no-undefined -version-info 83:0:83 libpam_la_LIBADD = @LIBAUDIT@ $(LIBPRELUDE_LIBS) @LIBDL@ if STATIC_MODULES |