diff options
author | Dmitry V. Levin <ldv@altlinux.org> | 2020-10-30 08:00:00 +0000 |
---|---|---|
committer | Dmitry V. Levin <ldv@altlinux.org> | 2020-11-03 12:20:32 +0000 |
commit | 7ca6333146237f92f2490417c2704da340c11946 (patch) | |
tree | b3fa170a63d67973dbf3df51b0f5305b33c9ae3d | |
parent | 2d919d0b404711ff1c08cbb0443e868f0fb79846 (diff) | |
download | pam-7ca6333146237f92f2490417c2704da340c11946.tar.gz pam-7ca6333146237f92f2490417c2704da340c11946.tar.bz2 pam-7ca6333146237f92f2490417c2704da340c11946.zip |
Prepare for 1.5.0 release
* configure.ac (AC_INIT): Raise version to 1.5.0.
* NEWS: Update.
-rw-r--r-- | NEWS | 8 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 9 insertions, 1 deletions
@@ -1,7 +1,15 @@ Linux-PAM NEWS -- history of user-visible changes. Release 1.5.0 +* Multiple minor bug fixes, portability fixes, and documentation improvements. +* Extended libpam API with pam_modutil_check_user_in_passwd function. +* configure: added --disable-unix option to disable build of pam_unix module. +* pam_faillock: changed /run/faillock/$USER permissions from 0600 to 0660. +* pam_limits: added support for nonewprivs item. * pam_motd: read motd files with target user credentials skipping unreadable ones. +* pam_pwhistory: added a SELinux helper executable. +* pam_unix, pam_usertype: implemented avoidance of certain timing attacks. +* pam_wheel: implemented PAM_RUSER fallback for the case when getlogin fails. * Removed deprecated pam_cracklib module, use pam_passwdqc (from passwdqc project) or pam_pwquality (from libpwquality project) instead. * Removed deprecated pam_tally and pam_tally2 modules, use pam_faillock instead. diff --git a/configure.ac b/configure.ac index ad36a6bc..77f9d43b 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT([Linux-PAM], [1.4.0], , [Linux-PAM]) +AC_INIT([Linux-PAM], [1.5.0], , [Linux-PAM]) AC_CONFIG_SRCDIR([conf/pam_conv1/pam_conv_y.y]) AC_CONFIG_AUX_DIR([build-aux]) AM_INIT_AUTOMAKE([-Wall -Wno-portability]) |