LUCENE-5626: Move changes entry

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1589813 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Uwe Schindler 2014-04-24 18:14:44 +00:00
parent 54cfa922ae
commit d1b821dec7
1 changed files with 5 additions and 5 deletions

View File

@ -106,11 +106,6 @@ Bug fixes
* LUCENE-5600: HttpClientBase did not properly consume a connection if a server
error occurred. (Christoph Kaser via Shai Erera)
* LUCENE-5626: Fix bug in SimpleFSLockFactory's obtain() that sometimes throwed
IOException (ERROR_ACESS_DENIED) on Windows if the lock file was created
concurrently. This error is now handled the same way like in NativeFSLockFactory
by returning false. (Uwe Schindler, Robert Muir, Dawid Weiss)
======================= Lucene 4.8.0 =======================
System Requirements
@ -319,6 +314,11 @@ Bug fixes
* LUCENE-5624: Ensure NativeFSLockFactory does not leak file handles if it is unable
to obtain the lock. (Uwe Schindler, Robert Muir)
* LUCENE-5626: Fix bug in SimpleFSLockFactory's obtain() that sometimes throwed
IOException (ERROR_ACESS_DENIED) on Windows if the lock file was created
concurrently. This error is now handled the same way like in NativeFSLockFactory
by returning false. (Uwe Schindler, Robert Muir, Dawid Weiss)
* SOLR-6011: ComplexPhraseQueryParser produced Query objects that did not correctly
implement hashCode and equals (inOrder was ignored), causing issues for any
system using Query objects as keys. (yonik)