Bump version to 1.4.3.5
Issue 50994 - Fix latest UI bugs found by QE Issue 50933 - rfc2307compat.ldif Issue 50337 - Replace exec() with setattr() Issue 50984 - Memory leaks in disk monitoring Issue 50984 - Memory leaks in disk monitoring Issue 49731 - dscreate fails in silent mode because of db_home_dir Issue 50975 - Revise UI branding with new minimized build Issue 49437 - Fix memory leak with indirect COS Issue 49731 - Do not add db_home_dir to template-dse.ldif Issue 49731 - set and use db_home_directory by default Issue 50971 - fix BSD_SOURCE Issue 50744 - -n option of dbverify does not work Issue 50952 - SSCA lacks basicConstraint:CA Issue 50976 - Clean up Web UI source directory from unused files Issue 50955 - Fix memory leaks in chaining plugin(part 2) Issue 50966 - UI - Database indexes not using typeAhead correctly Issue 50974 - UI - wrong title in "Delete Suffix" popup Issue 50972 - Fix cockpit plugin build Issue 49761 - Fix CI test suite issues Issue 50971 - Support building on FreeBSD. Issue 50960 - [RFE] Advance options in RHDS Disk Monitoring Framework Issue 50800 - wildcards in rootdn-allow-ip attribute are not accepted Issue 50963 - We should bundle *.min.js files of Console Issue 50860 - Port Password Policy test cases from TET to python3 Password grace limit section. Issue 50860 - Port Password Policy test cases from TET to python3 series of bugs Port final Issue 50954 - buildnum.py - fix date formatting issue
This commit is contained in:
parent
5a6ac14eb5
commit
a0a8d33632
1
.gitignore
vendored
1
.gitignore
vendored
@ -190,3 +190,4 @@
|
|||||||
/389-ds-base-1.4.3.2.tar.bz2
|
/389-ds-base-1.4.3.2.tar.bz2
|
||||||
/389-ds-base-1.4.3.3.tar.bz2
|
/389-ds-base-1.4.3.3.tar.bz2
|
||||||
/389-ds-base-1.4.3.4.tar.bz2
|
/389-ds-base-1.4.3.4.tar.bz2
|
||||||
|
/389-ds-base-1.4.3.5.tar.bz2
|
||||||
|
@ -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.3.4
|
Version: 1.4.3.5
|
||||||
Release: %{?relprefix}1%{?prerel}%{?dist}
|
Release: %{?relprefix}1%{?prerel}%{?dist}
|
||||||
License: GPLv3+
|
License: GPLv3+
|
||||||
URL: https://www.port389.org
|
URL: https://www.port389.org
|
||||||
@ -280,7 +280,8 @@ This module contains tools and libraries for accessing, testing,
|
|||||||
%package -n cockpit-389-ds
|
%package -n cockpit-389-ds
|
||||||
Summary: Cockpit UI Plugin for configuring and administering the 389 Directory Server
|
Summary: Cockpit UI Plugin for configuring and administering the 389 Directory Server
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
Requires: cockpit > 200
|
Requires: cockpit
|
||||||
|
Requires: 389-ds-base
|
||||||
Requires: python%{python3_pkgversion}
|
Requires: python%{python3_pkgversion}
|
||||||
Requires: python%{python3_pkgversion}-lib389
|
Requires: python%{python3_pkgversion}-lib389
|
||||||
|
|
||||||
@ -387,6 +388,7 @@ popd
|
|||||||
mkdir -p $RPM_BUILD_ROOT/var/log/%{pkgname}
|
mkdir -p $RPM_BUILD_ROOT/var/log/%{pkgname}
|
||||||
mkdir -p $RPM_BUILD_ROOT/var/lib/%{pkgname}
|
mkdir -p $RPM_BUILD_ROOT/var/lib/%{pkgname}
|
||||||
mkdir -p $RPM_BUILD_ROOT/var/lock/%{pkgname}
|
mkdir -p $RPM_BUILD_ROOT/var/lock/%{pkgname}
|
||||||
|
mkdir -p $RPM_BUILD_ROOT/dev/shm/%{pkgname}
|
||||||
|
|
||||||
# for systemd
|
# for systemd
|
||||||
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/systemd/system/%{groupname}.wants
|
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/systemd/system/%{groupname}.wants
|
||||||
@ -577,6 +579,7 @@ exit 0
|
|||||||
%{_prefix}/lib/sysctl.d/*
|
%{_prefix}/lib/sysctl.d/*
|
||||||
%dir %{_localstatedir}/lib/%{pkgname}
|
%dir %{_localstatedir}/lib/%{pkgname}
|
||||||
%dir %{_localstatedir}/log/%{pkgname}
|
%dir %{_localstatedir}/log/%{pkgname}
|
||||||
|
%dir /dev/shm/%{pkgname}
|
||||||
%ghost %dir %{_localstatedir}/lock/%{pkgname}
|
%ghost %dir %{_localstatedir}/lock/%{pkgname}
|
||||||
%exclude %{_sbindir}/ldap-agent*
|
%exclude %{_sbindir}/ldap-agent*
|
||||||
%exclude %{_mandir}/man1/ldap-agent.1.gz
|
%exclude %{_mandir}/man1/ldap-agent.1.gz
|
||||||
@ -757,6 +760,35 @@ exit 0
|
|||||||
%doc README.md
|
%doc README.md
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Apr 1 2020 Mark Reynolds <mreynolds@redhat.com> - 1.4.3.5-1
|
||||||
|
- Bump version to 1.4.3.5
|
||||||
|
- Issue 50994 - Fix latest UI bugs found by QE
|
||||||
|
- Issue 50933 - rfc2307compat.ldif
|
||||||
|
- Issue 50337 - Replace exec() with setattr()
|
||||||
|
- Issue 50984 - Memory leaks in disk monitoring
|
||||||
|
- Issue 50984 - Memory leaks in disk monitoring
|
||||||
|
- Issue 49731 - dscreate fails in silent mode because of db_home_dir
|
||||||
|
- Issue 50975 - Revise UI branding with new minimized build
|
||||||
|
- Issue 49437 - Fix memory leak with indirect COS
|
||||||
|
- Issue 49731 - Do not add db_home_dir to template-dse.ldif
|
||||||
|
- Issue 49731 - set and use db_home_directory by default
|
||||||
|
- Issue 50971 - fix BSD_SOURCE
|
||||||
|
- Issue 50744 - -n option of dbverify does not work
|
||||||
|
- Issue 50952 - SSCA lacks basicConstraint:CA
|
||||||
|
- Issue 50976 - Clean up Web UI source directory from unused files
|
||||||
|
- Issue 50955 - Fix memory leaks in chaining plugin(part 2)
|
||||||
|
- Issue 50966 - UI - Database indexes not using typeAhead correctly
|
||||||
|
- Issue 50974 - UI - wrong title in "Delete Suffix" popup
|
||||||
|
- Issue 50972 - Fix cockpit plugin build
|
||||||
|
- Issue 49761 - Fix CI test suite issues
|
||||||
|
- Issue 50971 - Support building on FreeBSD.
|
||||||
|
- Issue 50960 - [RFE] Advance options in RHDS Disk Monitoring Framework
|
||||||
|
- Issue 50800 - wildcards in rootdn-allow-ip attribute are not accepted
|
||||||
|
- Issue 50963 - We should bundle *.min.js files of Console
|
||||||
|
- Issue 50860 - Port Password Policy test cases from TET to python3 Password grace limit section.
|
||||||
|
- Issue 50860 - Port Password Policy test cases from TET to python3 series of bugs Port final
|
||||||
|
- Issue 50954 - buildnum.py - fix date formatting issue
|
||||||
|
|
||||||
* Mon Mar 16 2020 Mark Reynolds <mreynolds@redhat.com> - 1.4.3.4-1
|
* Mon Mar 16 2020 Mark Reynolds <mreynolds@redhat.com> - 1.4.3.4-1
|
||||||
- Bump version to 1.4.3.4
|
- Bump version to 1.4.3.4
|
||||||
- Issue 50954 - Port buildnum.pl to python(part 2)
|
- Issue 50954 - Port buildnum.pl to python(part 2)
|
||||||
|
2
sources
2
sources
@ -1,2 +1,2 @@
|
|||||||
SHA512 (389-ds-base-1.4.3.4.tar.bz2) = 013403f49000e80b42565191153fb0e535ff6b2cbd1fc9127fb917e2bd9379e57c5e7562259d47a72126761b642af87eb854058b842fc33077e98d6e123d556f
|
SHA512 (389-ds-base-1.4.3.5.tar.bz2) = b6af931a8aed7140220061b5d370880acce606901a0087ef8c22a51b16a111e0a13b4893ddd0166ec8a70ca4041f457b9890d137ae037cea2d3433dcc818a9cf
|
||||||
SHA512 (jemalloc-5.2.1.tar.bz2) = 0bbb77564d767cef0c6fe1b97b705d368ddb360d55596945aea8c3ba5889fbce10479d85ad492c91d987caacdbbdccc706aa3688e321460069f00c05814fae02
|
SHA512 (jemalloc-5.2.1.tar.bz2) = 0bbb77564d767cef0c6fe1b97b705d368ddb360d55596945aea8c3ba5889fbce10479d85ad492c91d987caacdbbdccc706aa3688e321460069f00c05814fae02
|
||||||
|
Loading…
Reference in New Issue
Block a user