Release 1.3.5.11-1

- Ticket 48144 - Add /usr/sbin/status-dirsrv script to get the status of the directory server instance.
- Ticket 48743 - If a cipher is disabled do not attempt to look it up
- Ticket 48755 - moving an entry could make the online init fail
- Ticket 48767 - flow control in replication also blocks receiving results
- Ticket 48912 - ntUserNtPassword schema
- Ticket 48914 - db2bak.pl task enters infinitive loop when bak fs is almost full
- Ticket 48916 - DNA Threshold set to 0 causes SIGFPE
- Ticket 48918 - Upgrade to 389-ds-base >= 1.3.5.5 doesn't install 389-ds-base-snmp
- Ticket 48919 - Compiler warnings while building 389-ds-base on RHEL7
- Ticket 48920 - Memory leak in pwdhash-bin
- Ticket 48922 - Fix crash when deleting backend while import is running
- Ticket 48924 - Fixup tombstone task needs to set proper flag when updating tombstones
- Ticket 48925 - slapd crash with SIGILL: Dsktune should detect lack of CMPXCHG16B
- Bug 1347761  - CVE-2016-4992 389-ds-base: Information disclosure via repeated use of LDAP ADD operation, etc.
- Bug 1353956  - Upgrade from FreeIPA Fedora 23 container to Fedora 24 fails with syntax error at
                 /usr/share/dirsrv/updates/91reindex.pl line 17, near ")
                 Regression introduced by Ticket 48755 to 1.3.5.10-1.
- Bug 1350393  - setup-ds.pl fails on F24 if perl-Errno is not updated (DS 48901)
- Bug 1114928  - etup-ds.pl creates configuration files under /usr (DS 528, 47840)
This commit is contained in:
Noriko Hosoi 2016-07-15 13:59:13 -07:00
parent 0743334d92
commit 36aef546f9
3 changed files with 33 additions and 8 deletions

1
.gitignore vendored
View File

@ -135,3 +135,4 @@
/389-ds-base-1.3.5.5.tar.bz2
/389-ds-base-1.3.5.6.tar.bz2
/389-ds-base-1.3.5.10.tar.bz2
/389-ds-base-1.3.5.11.tar.bz2

View File

@ -33,7 +33,7 @@
Summary: 389 Directory Server (base)
Name: 389-ds-base
Version: 1.3.5.10
Version: 1.3.5.11
Release: %{?relprefix}1%{?prerel}%{?dist}
License: GPLv3+
URL: https://port389.org/
@ -43,6 +43,7 @@ Obsoletes: %{name}-selinux
Conflicts: selinux-policy-base < 3.9.8
Conflicts: freeipa-server < 4.0.3
Requires: %{name}-libs = %{version}-%{release}
Requires: %{name}-snmp = %{version}-%{release}
Provides: ldif2ldbm
BuildRequires: nspr-devel
@ -110,6 +111,7 @@ Requires: libdb-utils
# This picks up libperl.so as a Requires, so we add this versioned one
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
Requires: perl-Errno >= 1.23-360
# for the init script
Requires(post): systemd-units
@ -126,6 +128,9 @@ Requires: perl-NetAddr-IP
Requires: systemd-libs
Requires: svrcore >= 4.1.2
# upgrade path from monolithic %{name} (including -libs & -devel) to %{name} + %{name}-snmp
Obsoletes: %{name} <= 1.3.5.4
Source0: https://port389.org/binaries/%{name}-%{version}%{?prerel}.tar.bz2
# 389-ds-git.sh should be used to generate the source tarball from git
Source1: %{name}-git.sh
@ -136,9 +141,6 @@ Source3: https://git.fedorahosted.org/cgit/nunc-stans.git/snapshot/nunc
389 Directory Server is an LDAPv3 compliant server. The base package includes
the LDAP server and command line utilities for server administration.
# upgrade path from monolithic %{name} (including -libs & -devel) to %{name} + %{name}-snmp
Obsoletes: %{name} <= 1.3.5.4
%package libs
Summary: Core libraries for 389 Directory Server
Group: System Environment/Daemons
@ -198,12 +200,12 @@ Summary: SNMP Agent for 389 Directory Server
Group: System Environment/Daemons
Requires: %{name} = %{version}-%{release}
%description snmp
SNMP Agent for the 389 Directory Server base package.
# upgrade path from monolithic %{name} (including -libs & -devel) to %{name} + %{name}-snmp
Obsoletes: %{name} <= 1.3.5.4
%description snmp
SNMP Agent for the 389 Directory Server base package.
%package tests
Summary: The lib389 Continuous Integration Tests
Group: Development/Libraries
@ -452,6 +454,28 @@ fi
%{_sysconfdir}/%{pkgname}/dirsrvtests
%changelog
* Thu Jul 14 2016 Noriko Hosoi <nhosoi@redhat.com> - 1.3.5.11-1
- Release 1.3.5.11-1
- Ticket 48144 - Add /usr/sbin/status-dirsrv script to get the status of the directory server instance.
- Ticket 48743 - If a cipher is disabled do not attempt to look it up
- Ticket 48755 - moving an entry could make the online init fail
- Ticket 48767 - flow control in replication also blocks receiving results
- Ticket 48912 - ntUserNtPassword schema
- Ticket 48914 - db2bak.pl task enters infinitive loop when bak fs is almost full
- Ticket 48916 - DNA Threshold set to 0 causes SIGFPE
- Ticket 48918 - Upgrade to 389-ds-base >= 1.3.5.5 doesn't install 389-ds-base-snmp
- Ticket 48919 - Compiler warnings while building 389-ds-base on RHEL7
- Ticket 48920 - Memory leak in pwdhash-bin
- Ticket 48922 - Fix crash when deleting backend while import is running
- Ticket 48924 - Fixup tombstone task needs to set proper flag when updating tombstones
- Ticket 48925 - slapd crash with SIGILL: Dsktune should detect lack of CMPXCHG16B
- Bug 1347761 - CVE-2016-4992 389-ds-base: Information disclosure via repeated use of LDAP ADD operation, etc.
- Bug 1353956 - Upgrade from FreeIPA Fedora 23 container to Fedora 24 fails with syntax error at
/usr/share/dirsrv/updates/91reindex.pl line 17, near ")
Regression introduced by Ticket 48755 to 1.3.5.10-1.
- Bug 1350393 - setup-ds.pl fails on F24 if perl-Errno is not updated (DS 48901)
- Bug 1114928 - etup-ds.pl creates configuration files under /usr (DS 528, 47840)
* Fri Jul 1 2016 Noriko Hosoi <nhosoi@redhat.com> - 1.3.5.10-1
-Release 1.3.5.10-1
- Ticket 47538 - Fix repl-monitor color and lag times

View File

@ -1,2 +1,2 @@
6be81763f7bab3c9fd317afce3ea00d6 389-ds-base-1.3.5.10.tar.bz2
183dbef02fac3e9c09e003bc9d56aac2 389-ds-base-1.3.5.11.tar.bz2
22a201e208b82b307ba425e099b066ed nunc-stans-0.1.8.tar.bz2