bump version to 1.3.3.7
- Coverity 12970 - Explicit null dereference - Ticket 47988: Schema learning mechanism, in replication, unable to extend an existing definition - Ticket 47996 - ldclt needs to support SSL Version range - Ticket 47738 - use PL_strcasestr instead of strcasestr - Ticket 47462 - Stop using DES in the reversible password encryption plug-in - Ticket 47807 - SLAPI_REQUESTOR_ISROOT not set for extended operation plugins - Ticket 47991 - upgrade script fails if /etc and /var are on different file systems - Ticket 47989 - Windows Sync accidentally cleared raw_entry - Ticket 47964 - v2 - Incorrect search result after replacing an empty attribute - Ticket 47934 - nsslapd-db-locks modify not taking into account. - Ticket 47617 - replication changelog trimming setting validation - Ticket 47905 - Bad manipulation of passwordhistory - Ticket 47973 - During schema reload sometimes the search returns no results - Ticket 47981 - COS cache doesn't properly mark vattr cache as invalid when there are multiple suffixes - Ticket 47980 - Nested COS definitions can be incorrectly processed - Ticket 47451 - Dynamic plugins - fixed thread synchronization - Ticket 47750 - During delete operation do not refresh cache entry if it is a tombstone - Ticket 47947 - start dirsrv after chrony on RHEL7 and Fedora - fix jenkins warning - Ticket 47526 - Additional fix for ticket 47526 v3 - Ticket 47451 - Add Dynamic Plugin CI Suite - Ticket 47965 - Fix coverity issues (2014/12/16) - Ticket 47451 - Fix jenkins errors - Ticket 47451 - Dynamic Plugin - various fixes - Ticket 47935 - Error: failed to open an LDAP connection to host 'example.org' port '389' as user 'cn=Directory Manager'. Error: unknown. - Ticket 47750 - Need to refresh cache entry after called betxn postop plugins - Ticket 47942 - DS hangs during online total update - Ticket 47960 - cookie_change_info returns random negative number if there was no change in a tree - Ticket 47960 - cookie_change_info returns random negative number if there was no change in a tree - Ticket 47722 - Using the filter file does not work - Ticket 47636 - Error log levels not displayed correctly - Ticket 47965 - Fix coverity issues (2014/11/24) - Ticket 47969 - Fix coverity issue - Ticket 47949 - logconv.pl -- support parsing/showing/reporting different protocol versions - Ticket 47525 - Crash if setting invalid plugin config area for MemberOf Plugin - Ticket 47970 - add lib389 testcase - Ticket 47970 - Account lockout attributes incorrectly updated after failed SASL Bind - Ticket 47969 - COS memory leak when rebuilding the cache - Ticket 47967 - cos_cache_build_definition_list does not stop during server shutdown - Ticket 47451 - Running a plugin task can crash the server - Ticket 47963 - skip nested groups breaks memberof fixup task - Ticket 47963 - RFE - memberOf - add option to skip nested group lookups during delete operations - Ticket 47810 - RI plugin does not return result code if update fails
This commit is contained in:
parent
6692dca111
commit
e744861755
1
.gitignore
vendored
1
.gitignore
vendored
@ -109,3 +109,4 @@
|
||||
/389-ds-base-1.3.3.4.tar.bz2
|
||||
/389-ds-base-1.3.3.5.tar.bz2
|
||||
/389-ds-base-1.3.3.6.tar.bz2
|
||||
/389-ds-base-1.3.3.7.tar.bz2
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
DATE=`date +%Y%m%d`
|
||||
# use a real tag name here
|
||||
VERSION=1.3.3.6
|
||||
VERSION=1.3.3.7
|
||||
PKGNAME=389-ds-base
|
||||
TAG=${TAG:-$PKGNAME-$VERSION}
|
||||
#SRCNAME=$PKGNAME-$VERSION-$DATE
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
DATE=`date +%Y%m%d`
|
||||
# use a real tag name here
|
||||
VERSION=1.3.3.6
|
||||
VERSION=1.3.3.7
|
||||
PKGNAME=389-ds-base
|
||||
TAG=${TAG:-$PKGNAME-$VERSION}
|
||||
URL="http://git.fedorahosted.org/git/?p=389/ds.git;a=snapshot;h=$TAG;sf=tgz"
|
||||
|
@ -24,8 +24,8 @@
|
||||
|
||||
Summary: 389 Directory Server (base)
|
||||
Name: 389-ds-base
|
||||
Version: 1.3.3.6
|
||||
Release: %{?relprefix}1%{?prerel}%{?dist}.1
|
||||
Version: 1.3.3.7
|
||||
Release: %{?relprefix}1%{?prerel}%{?dist}
|
||||
License: GPLv2 with exceptions
|
||||
URL: http://port389.org/
|
||||
Group: System Environment/Daemons
|
||||
@ -309,6 +309,52 @@ fi
|
||||
%{_libdir}/%{pkgname}/libns-dshttpd.so*
|
||||
|
||||
%changelog
|
||||
* Wed Jan 28 2015 Noriko Hosoi <nhosoi@redhat.com> - 1.3.3.7-1
|
||||
- bump version to 1.3.3.7
|
||||
- Coverity 12970 - Explicit null dereference
|
||||
- Ticket 47988: Schema learning mechanism, in replication, unable to extend an existing definition
|
||||
- Ticket 47996 - ldclt needs to support SSL Version range
|
||||
- Ticket 47738 - use PL_strcasestr instead of strcasestr
|
||||
- Ticket 47462 - Stop using DES in the reversible password encryption plug-in
|
||||
- Ticket 47807 - SLAPI_REQUESTOR_ISROOT not set for extended operation plugins
|
||||
- Ticket 47991 - upgrade script fails if /etc and /var are on different file systems
|
||||
- Ticket 47989 - Windows Sync accidentally cleared raw_entry
|
||||
- Ticket 47964 - v2 - Incorrect search result after replacing an empty attribute
|
||||
- Ticket 47934 - nsslapd-db-locks modify not taking into account.
|
||||
- Ticket 47617 - replication changelog trimming setting validation
|
||||
- Ticket 47905 - Bad manipulation of passwordhistory
|
||||
- Ticket 47973 - During schema reload sometimes the search returns no results
|
||||
- Ticket 47981 - COS cache doesn't properly mark vattr cache as invalid when there are multiple suffixes
|
||||
- Ticket 47980 - Nested COS definitions can be incorrectly processed
|
||||
- Ticket 47451 - Dynamic plugins - fixed thread synchronization
|
||||
- Ticket 47750 - During delete operation do not refresh cache entry if it is a tombstone
|
||||
- Ticket 47947 - start dirsrv after chrony on RHEL7 and Fedora
|
||||
- fix jenkins warning
|
||||
- Ticket 47526 - Additional fix for ticket 47526 v3
|
||||
- Ticket 47451 - Add Dynamic Plugin CI Suite
|
||||
- Ticket 47965 - Fix coverity issues (2014/12/16)
|
||||
- Ticket 47451 - Fix jenkins errors
|
||||
- Ticket 47451 - Dynamic Plugin - various fixes
|
||||
- Ticket 47935 - Error: failed to open an LDAP connection to host 'example.org' port '389' as user 'cn=Directory Manager'. Error: unknown.
|
||||
- Ticket 47750 - Need to refresh cache entry after called betxn postop plugins
|
||||
- Ticket 47942 - DS hangs during online total update
|
||||
- Ticket 47960 - cookie_change_info returns random negative number if there was no change in a tree
|
||||
- Ticket 47960 - cookie_change_info returns random negative number if there was no change in a tree
|
||||
- Ticket 47722 - Using the filter file does not work
|
||||
- Ticket 47636 - Error log levels not displayed correctly
|
||||
- Ticket 47965 - Fix coverity issues (2014/11/24)
|
||||
- Ticket 47969 - Fix coverity issue
|
||||
- Ticket 47949 - logconv.pl -- support parsing/showing/reporting different protocol versions
|
||||
- Ticket 47525 - Crash if setting invalid plugin config area for MemberOf Plugin
|
||||
- Ticket 47970 - add lib389 testcase
|
||||
- Ticket 47970 - Account lockout attributes incorrectly updated after failed SASL Bind
|
||||
- Ticket 47969 - COS memory leak when rebuilding the cache
|
||||
- Ticket 47967 - cos_cache_build_definition_list does not stop during server shutdown
|
||||
- Ticket 47451 - Running a plugin task can crash the server
|
||||
- Ticket 47963 - skip nested groups breaks memberof fixup task
|
||||
- Ticket 47963 - RFE - memberOf - add option to skip nested group lookups during delete operations
|
||||
- Ticket 47810 - RI plugin does not return result code if update fails
|
||||
|
||||
* Mon Jan 26 2015 David Tardon <dtardon@redhat.com> - 1.3.3.6-1.1
|
||||
- rebuild for ICU 54.1
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user