Bump version to 1.4.1.6
Issue 50355 - SSL version min and max not correctly applied Issue 50497 - Port cl-dump.pl tool to Python using lib389 Issue 48851 - investigate and port TET matching rules filter tests(Final) Issue 50417 - fix regression from previous commit Issue 50425 - Add jemalloc LD_PRELOAD to systemd drop-in file Issue 50325 - Add Security tab to UI Issue 49789 - By default, do not manage unhashed password Issue 49421 - Implement password hash upgrade on bind. Issue 49421 - on bind password upgrade proof of concept Issue 50493 - connection_is_free to trylock Issue 50459 - Correct issue with allocation state Issue 50499 - Fix audit issues and remove jquery from the whitelist Issue 50459 - c_mutex to use pthread_mutex to allow ns sharing Issue 50484 - Add a release build dockerfile and dscontainer improvements Issue 50486 - Update jemalloc to 5.2.0
This commit is contained in:
parent
be762d94db
commit
f786fdfe8d
2
.gitignore
vendored
2
.gitignore
vendored
@ -178,3 +178,5 @@
|
|||||||
/389-ds-base-1.4.1.3.tar.bz2
|
/389-ds-base-1.4.1.3.tar.bz2
|
||||||
/389-ds-base-1.4.1.4.tar.bz2
|
/389-ds-base-1.4.1.4.tar.bz2
|
||||||
/389-ds-base-1.4.1.5.tar.bz2
|
/389-ds-base-1.4.1.5.tar.bz2
|
||||||
|
/jemalloc-5.2.0.tar.bz2
|
||||||
|
/389-ds-base-1.4.1.6.tar.bz2
|
||||||
|
@ -25,7 +25,7 @@ ExcludeArch: i686
|
|||||||
|
|
||||||
%if %{bundle_jemalloc}
|
%if %{bundle_jemalloc}
|
||||||
%global jemalloc_name jemalloc
|
%global jemalloc_name jemalloc
|
||||||
%global jemalloc_ver 5.1.0
|
%global jemalloc_ver 5.2.0
|
||||||
%global __provides_exclude ^libjemalloc\\.so.*$
|
%global __provides_exclude ^libjemalloc\\.so.*$
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
@ -44,7 +44,7 @@ ExcludeArch: i686
|
|||||||
|
|
||||||
Summary: 389 Directory Server (base)
|
Summary: 389 Directory Server (base)
|
||||||
Name: 389-ds-base
|
Name: 389-ds-base
|
||||||
Version: 1.4.1.5
|
Version: 1.4.1.6
|
||||||
Release: %{?relprefix}1%{?prerel}%{?dist}
|
Release: %{?relprefix}1%{?prerel}%{?dist}
|
||||||
License: GPLv3+
|
License: GPLv3+
|
||||||
URL: https://www.port389.org
|
URL: https://www.port389.org
|
||||||
@ -545,7 +545,6 @@ exit 0
|
|||||||
%dir %{_sysconfdir}/systemd/system/%{groupname}.wants
|
%dir %{_sysconfdir}/systemd/system/%{groupname}.wants
|
||||||
%config(noreplace)%{_sysconfdir}/%{pkgname}/config/slapd-collations.conf
|
%config(noreplace)%{_sysconfdir}/%{pkgname}/config/slapd-collations.conf
|
||||||
%config(noreplace)%{_sysconfdir}/%{pkgname}/config/certmap.conf
|
%config(noreplace)%{_sysconfdir}/%{pkgname}/config/certmap.conf
|
||||||
%config(noreplace)%{_sysconfdir}/%{pkgname}/config/template-initconfig
|
|
||||||
%{_datadir}/%{pkgname}
|
%{_datadir}/%{pkgname}
|
||||||
%exclude %{_datadir}/%{pkgname}/script-templates
|
%exclude %{_datadir}/%{pkgname}/script-templates
|
||||||
%exclude %{_datadir}/%{pkgname}/updates
|
%exclude %{_datadir}/%{pkgname}/updates
|
||||||
@ -590,7 +589,6 @@ exit 0
|
|||||||
%{_mandir}/man8/vlvindex.8.gz
|
%{_mandir}/man8/vlvindex.8.gz
|
||||||
%{_mandir}/man5/99user.ldif.5.gz
|
%{_mandir}/man5/99user.ldif.5.gz
|
||||||
%{_mandir}/man5/certmap.conf.5.gz
|
%{_mandir}/man5/certmap.conf.5.gz
|
||||||
%{_mandir}/man5/template-initconfig.5.gz
|
|
||||||
%{_mandir}/man5/slapd-collations.conf.5.gz
|
%{_mandir}/man5/slapd-collations.conf.5.gz
|
||||||
%{_mandir}/man5/dirsrv.5.gz
|
%{_mandir}/man5/dirsrv.5.gz
|
||||||
%{_mandir}/man5/dirsrv.systemd.5.gz
|
%{_mandir}/man5/dirsrv.systemd.5.gz
|
||||||
@ -686,6 +684,8 @@ exit 0
|
|||||||
%{_sbindir}/stop-dirsrv
|
%{_sbindir}/stop-dirsrv
|
||||||
%{_mandir}/man8/stop-dirsrv.8.gz
|
%{_mandir}/man8/stop-dirsrv.8.gz
|
||||||
%if %{use_perl}
|
%if %{use_perl}
|
||||||
|
%config(noreplace)%{_sysconfdir}/%{pkgname}/config/template-initconfig
|
||||||
|
%{_mandir}/man5/template-initconfig.5.gz
|
||||||
%{_datadir}/%{pkgname}/properties/*.res
|
%{_datadir}/%{pkgname}/properties/*.res
|
||||||
%{_datadir}/%{pkgname}/script-templates
|
%{_datadir}/%{pkgname}/script-templates
|
||||||
%{_datadir}/%{pkgname}/updates
|
%{_datadir}/%{pkgname}/updates
|
||||||
@ -765,6 +765,24 @@ exit 0
|
|||||||
%doc README.md
|
%doc README.md
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Jul 19 2019 Mark Reynolds <mreynolds@redhat.com> - 1.4.1.6-1
|
||||||
|
- Bump version to 1.4.1.6
|
||||||
|
- Issue 50355 - SSL version min and max not correctly applied
|
||||||
|
- Issue 50497 - Port cl-dump.pl tool to Python using lib389
|
||||||
|
- Issue 48851 - investigate and port TET matching rules filter tests(Final)
|
||||||
|
- Issue 50417 - fix regression from previous commit
|
||||||
|
- Issue 50425 - Add jemalloc LD_PRELOAD to systemd drop-in file
|
||||||
|
- Issue 50325 - Add Security tab to UI
|
||||||
|
- Issue 49789 - By default, do not manage unhashed password
|
||||||
|
- Issue 49421 - Implement password hash upgrade on bind.
|
||||||
|
- Issue 49421 - on bind password upgrade proof of concept
|
||||||
|
- Issue 50493 - connection_is_free to trylock
|
||||||
|
- Issue 50459 - Correct issue with allocation state
|
||||||
|
- Issue 50499 - Fix audit issues and remove jquery from the whitelist
|
||||||
|
- Issue 50459 - c_mutex to use pthread_mutex to allow ns sharing
|
||||||
|
- Issue 50484 - Add a release build dockerfile and dscontainer improvements
|
||||||
|
- Issue 50486 - Update jemalloc to 5.2.0
|
||||||
|
|
||||||
* Mon Jul 8 2019 Mark Reynolds <mreynolds@redhat.com> - 1.4.1.5-1
|
* Mon Jul 8 2019 Mark Reynolds <mreynolds@redhat.com> - 1.4.1.5-1
|
||||||
- Bump version to 1.4.1.5
|
- Bump version to 1.4.1.5
|
||||||
- Issue 50431 - Fix regression from coverity fix (crash in memberOf plugin)
|
- Issue 50431 - Fix regression from coverity fix (crash in memberOf plugin)
|
||||||
|
4
sources
4
sources
@ -1,2 +1,2 @@
|
|||||||
SHA512 (jemalloc-5.1.0.tar.bz2) = d9abebe54d303ca931b8c31c1033f23ff5fb060f2377ec8386f4d79c352e65c78ed34f680c352dac14f7d7115d10245782d553d988bc13df2eb34a2f0942ef6f
|
SHA512 (jemalloc-5.2.0.tar.bz2) = e3be4d534770126caf10f2684aed9fe4ba1422dd47625fe50343cfb750f26eff869fcc7d1e30a96dd6c73f6614c4bbcd560fd24fc26b55ac731c43e60fd05234
|
||||||
SHA512 (389-ds-base-1.4.1.5.tar.bz2) = b70a91441111d57481b298cb6c3d4a8c7182e7f74e2127079b162c47b817940e6be8586932626a521245e4b52d696fd3c4d32c7ad6f660d96d15f1a97114ce13
|
SHA512 (389-ds-base-1.4.1.6.tar.bz2) = 0a943453cbcd8b43b4fdc58563c8802d9270d9a3cf4dcd76e3f77168d45e84b8e07d8df8ddadb09ba9294e7ba7e9304ce329bc37edeb16a9161797c902fadc1c
|
||||||
|
Loading…
Reference in New Issue
Block a user