You are viewing a plain text version of this content. The canonical link for it is here.
- [lucenenet] branch master updated: Lucene.Net.Index.IndexWriter: Removed call to ThreadJob.Interrupted() which internally calls Thread.Sleep(0) which was causing performance issues and deadlocks during IndexWriter.Dispose() - posted by ni...@apache.org on 2021/10/11 10:43:29 UTC, 0 replies.
- [lucenenet] branch master updated (d7a68e4 -> 3dcffb2) - posted by ni...@apache.org on 2021/10/17 15:55:45 UTC, 0 replies.
- [lucenenet] 01/08: Removed [Deadlock] attribute from tests that were deadlocking due to extra Thread.Sleep(0) call in IndexWriter.Dispose(). - posted by ni...@apache.org on 2021/10/17 15:55:46 UTC, 0 replies.
- [lucenenet] 02/08: SWEEP: Added Lucene.Net.Util.ThreadInterruptedException and re-throw it in all of the places that Lucene does. - posted by ni...@apache.org on 2021/10/17 15:55:47 UTC, 0 replies.
- [lucenenet] 03/08: Lucene.Net.Support.Threading: Created UninterruptableMonitor class to handle entering locks without throwing System.Threading.ThreadInterruptedException (which is what happens in Java) - posted by ni...@apache.org on 2021/10/17 15:55:48 UTC, 0 replies.
- [lucenenet] 04/08: SWEEP: Lucene.Net: Changed all lock statements to UninterruptableMonitor.Enter and UninterruptableMonitor.Exit to prevent ThreadInterruptedException from occurring when entering a lock. - posted by ni...@apache.org on 2021/10/17 15:55:49 UTC, 0 replies.
- [lucenenet] 05/08: SWEEP: Lucene.Net.TestFramework: Changed all lock statements to UninterruptableMonitor.Enter and UninterruptableMonitor.Exit to prevent ThreadInterruptedException from occurring when entering a lock. - posted by ni...@apache.org on 2021/10/17 15:55:50 UTC, 0 replies.
- [lucenenet] 06/08: SWEEP: Changed all lock statements to UninterruptableMonitor.Enter and UninterruptableMonitor.Exit to prevent ThreadInterruptedException from occurring when entering a lock. - posted by ni...@apache.org on 2021/10/17 15:55:51 UTC, 0 replies.
- [lucenenet] 07/08: Lucene.Net.Index.DocumentsWriter::UnlockAllAfterAbortAll() Added missing when clause on catch block - posted by ni...@apache.org on 2021/10/17 15:55:52 UTC, 0 replies.
- [lucenenet] 08/08: Lucene.Net.Tests.Index.TestIndexWriter: Removed [AwaitsFix] attribute from TestThreadInterruptDeadlock() and TestTwoThreadsInterruptDeadlock(), since they now are passing - posted by ni...@apache.org on 2021/10/17 15:55:53 UTC, 0 replies.
- [lucenenet] branch master updated (3dcffb2 -> dd7ed62) - posted by ni...@apache.org on 2021/10/19 18:44:49 UTC, 0 replies.
- [lucenenet] 01/06: BREAKING: Lucene.Net.Analysis.Stempel.Egothor.Stemmer.MultiTrie: Changed protected m_tries field from List to IList - posted by ni...@apache.org on 2021/10/19 18:44:50 UTC, 0 replies.
- [lucenenet] 02/06: BREAKING: Lucene.Net.Search.BooleanQuery: Changed protected m_weights field from List to IList - posted by ni...@apache.org on 2021/10/19 18:44:51 UTC, 0 replies.
- [lucenenet] 03/06: BREAKING: Lucene.Net.Search.DisjunctionMaxQuery: Changed protected m_weights field from List to IList - posted by ni...@apache.org on 2021/10/19 18:44:52 UTC, 0 replies.
- [lucenenet] 04/06: SWEEP: Changed all instances of System.Collections.Generic.List to J2N.Collections.Generic.List, which is structurally equatable and structurally formattable. - posted by ni...@apache.org on 2021/10/19 18:44:53 UTC, 0 replies.
- [lucenenet] 05/06: Lucene.Net.Util.ListExtensions: Added optimized path for J2N.Collections.Generic.List in AddRange and Sort methods - posted by ni...@apache.org on 2021/10/19 18:44:54 UTC, 0 replies.
- [lucenenet] 06/06: BUG: Lucene.Net.Tests.Suggest.Suggest.Analyzing.TestFreeTextSuggester::TestRandom(): LookupResult calculation in the test was using different order of parentheses than the production code. This bug existed in Java, but apparently the order makes no difference on that platform. This test was getting a false positive because it was using List.ToString() to make the result comparison, which J2N's List corrects. - posted by ni...@apache.org on 2021/10/19 18:44:55 UTC, 0 replies.
- [lucenenet] branch master updated (dd7ed62 -> 6632a68) - posted by ni...@apache.org on 2021/10/23 23:49:08 UTC, 0 replies.
- [lucenenet] 01/09: BUG: Lucene.Net.Search.TestBooleanQuery::TestBS2DisjunctionNextVsAdvance(): Use Assert.AreEqual instead of Asssert.IsTrue with == to fix floating point comparison on x86 .NET Framework with optimizations enabled. - posted by ni...@apache.org on 2021/10/23 23:49:09 UTC, 0 replies.
- [lucenenet] 02/09: BUG: Lucene.Net.Search.FuzzyTermsEnum: Compare using Lucene.Net.Util.NumericUtils.SingleToSortableInt32() to prevent test failures on x86 .NET Framework. This fixes Lucene.Net.Search.TestBooleanQuery.TestBS2DisjunctionNextVsAdvance(), Lucene.Net.Search.TestFuzzyQuery.TestTieBreaker(), and Lucene.Net.Sandbox.Queries.TestSlowFuzzyQuery.TestTieBreaker(). See #269. - posted by ni...@apache.org on 2021/10/23 23:49:10 UTC, 0 replies.
- [lucenenet] 03/09: BUG: Lucene.Net.Search.TopScoreDocCollector: Compare using Lucene.Net.Util.NumericUtils.SingleToSortableInt32() to prevent test failures on x86 .NET Framework. This fixes Lucene.Net.Search.TestTopDocsMerge::TestSort_1(), Lucene.Net.Search.TestTopDocsMerge::TestSort_2(), and Lucene.Net.Search.TestSearchAfter.TestQueries(). See #269. - posted by ni...@apache.org on 2021/10/23 23:49:11 UTC, 0 replies.
- [lucenenet] 04/09: BUG: Lucene.Net.Sandbox.Queries.SlowFuzzyTermsEnum::Accept(): Compare using Lucene.Net.Util.NumericUtils.SingleToSortableInt32() to prevent test failures on x86 .NET Framework. This fixes Lucene.Net.Sandbox.Queries.TestSlowFuzzyQuery.TestTokenLengthOpt(). See #269. - posted by ni...@apache.org on 2021/10/23 23:49:12 UTC, 0 replies.
- [lucenenet] 05/09: Lucene.Net.Sandbox.Queries.FuzzyLikeThisQuery: Compare using NumericUtils.SingleToSortableInt32() to prevent test failures on x86 .NET Framework. See #269. - posted by ni...@apache.org on 2021/10/23 23:49:13 UTC, 0 replies.
- [lucenenet] 06/09: SWEEP: Lucene.Net: Use NumericUtils.SingleToSortableInt32() to compare floating point numbers (except in cases where we are testing for whole numbers). - posted by ni...@apache.org on 2021/10/23 23:49:14 UTC, 0 replies.
- [lucenenet] 07/09: BUG: Lucene.Net.Expressions.ScoreFunctionValues::DoubleVal(): Assigning float to double loses precision in x86 .NET Framework. Do an intermediate cast to decimal to fix Lucene.Net.Expressions.TestExpressionSorts::TestQueries(). See #269. - posted by ni...@apache.org on 2021/10/23 23:49:15 UTC, 0 replies.
- [lucenenet] 08/09: Lucene.Net.Expressions.ExpressionComparer: Use J2N.Collections.Generic.Comparer to ensure we use the same comparison logic as in Java. - posted by ni...@apache.org on 2021/10/23 23:49:16 UTC, 0 replies.
- [lucenenet] 09/09: azure-pipelines.yml: Decreased maximum allowed failures to 2 on all test jobs - posted by ni...@apache.org on 2021/10/23 23:49:17 UTC, 0 replies.
- [lucenenet] branch master updated (6632a68 -> 942e2ab) - posted by ni...@apache.org on 2021/10/25 05:40:25 UTC, 0 replies.
- [lucenenet] 01/05: build/Dependencies.props: Downgraded minimum dependency requirement of Microsoft.Extensions.Configuration components on .NET 6 to 2.0.0. - posted by ni...@apache.org on 2021/10/25 05:40:26 UTC, 0 replies.
- [lucenenet] 02/05: build/Dependencies.props: Changed SystemTextEncodingPagesPackageVersion_NET4_6_1 MSBuild property to SystemTextEncodingPagesPackageVersion with a condition - posted by ni...@apache.org on 2021/10/25 05:40:27 UTC, 0 replies.
- [lucenenet] 03/05: azure-pipelines.yml, run-tests-on-os.yml: Upgraded to use .NET 6 RC2 SDK for building and testing - posted by ni...@apache.org on 2021/10/25 05:40:28 UTC, 0 replies.
- [lucenenet] 04/05: build/Dependencies.props: Upgraded ICU4N to 60.1.0-alpha.355, J2N to 2.0.0-beta-0017, Morfologik to 2.1.7-beta-0004, and RandomizedTesting.Generators to 2.7.8-beta-0002 - posted by ni...@apache.org on 2021/10/25 05:40:29 UTC, 0 replies.
- [lucenenet] 05/05: README.md: Corrected the build.bat filename. - posted by ni...@apache.org on 2021/10/25 05:40:30 UTC, 0 replies.
- [lucenenet] branch master updated: SWEEP: Added missing license headers - posted by ni...@apache.org on 2021/10/25 06:00:15 UTC, 0 replies.
- [lucenenet] branch master updated: Revert "Lucene.Net.Support.WeakDictionary: Changed backing collection from J2N.Collections.Generic.Dictionary to ConcurrentDictionary to allow reap to function while doing a forward iteration through the collection." - posted by ni...@apache.org on 2021/10/25 17:34:02 UTC, 0 replies.
- [lucenenet] branch master updated (f68cbb3 -> 671cb83) - posted by ni...@apache.org on 2021/10/25 20:40:04 UTC, 0 replies.
- [lucenenet] 01/03: BUG: build/build.ps1: Added special case for running Lucene.Net.Tests.CodeAnalysis only on .NET 5. - posted by ni...@apache.org on 2021/10/25 20:40:05 UTC, 0 replies.
- [lucenenet] 02/03: BUG: build/build.ps1: Fixed special case to only test on .NET Framework 4.8 and not on .NET Framework 4.6.1 (which is just to test .NET Standard 2.0 support) - posted by ni...@apache.org on 2021/10/25 20:40:06 UTC, 0 replies.
- [lucenenet] 03/03: README.md: Added recommendation to close Visual Studio before running a command line build - posted by ni...@apache.org on 2021/10/25 20:40:07 UTC, 0 replies.
- [lucenenet] branch master updated: website: Added release notes for 4.8.0-beta00015 - posted by ni...@apache.org on 2021/10/25 21:52:25 UTC, 0 replies.
- [lucenenet-site] branch asf-site updated: Added release notes page for 4.8.0-beta00015 - posted by ni...@apache.org on 2021/10/26 03:21:33 UTC, 0 replies.
- [lucenenet] branch master updated (2023eda -> 2f67981) - posted by ni...@apache.org on 2021/10/26 04:03:29 UTC, 0 replies.
- [lucenenet] 01/02: run-tests-on-os.yml: Added JobId so to the artifact name so re-running a failed test job will succeed if the artifact exists - posted by ni...@apache.org on 2021/10/26 04:03:30 UTC, 0 replies.
- [lucenenet] 02/02: azure-pipelines.yml: Use macOS-10.14 instead of macOS-latest to prevent PlatformNotSupported and FileNotFoundException that appear to be related to the test fixture (we get no failed tests and they complete, but the run crashes) - posted by ni...@apache.org on 2021/10/26 04:03:31 UTC, 0 replies.
- [lucenenet] annotated tag Lucene.Net_4_8_0_beta00015 created (now e5ce74d) - posted by ni...@apache.org on 2021/10/26 05:49:48 UTC, 0 replies.
- svn commit: r50622 - /dev/lucenenet/4.8.0-beta00015/ - posted by ni...@apache.org on 2021/10/26 06:12:39 UTC, 0 replies.
- [lucenenet] branch master updated: Website build automation (#533) - posted by sh...@apache.org on 2021/10/26 18:41:30 UTC, 0 replies.
- [lucenenet-site] branch asf-site updated: New website version built - posted by sh...@apache.org on 2021/10/26 19:03:22 UTC, 0 replies.
- [lucenenet-site] branch asf-site updated: Updated release notes page for 4.8.0-beta00015 - posted by ni...@apache.org on 2021/10/28 01:00:58 UTC, 0 replies.
- [lucenenet] branch master updated: website: Updated release notes for 4.8.0-beta00015 - posted by ni...@apache.org on 2021/10/28 19:53:52 UTC, 0 replies.
- svn commit: r50675 - /release/lucenenet/4.8.0-beta00015/ - posted by ni...@apache.org on 2021/10/29 10:05:01 UTC, 0 replies.
- svn commit: r50676 - /dev/lucenenet/4.8.0-beta00015/ - posted by ni...@apache.org on 2021/10/29 10:06:36 UTC, 0 replies.
- [lucenenet-site] branch asf-site updated: Added download page for 4.8.0-beta00015 and updated release procedure - posted by ni...@apache.org on 2021/10/29 15:49:38 UTC, 0 replies.
- [lucenenet] branch master updated (ae7d844 -> 96dc74c) - posted by ni...@apache.org on 2021/10/29 15:51:46 UTC, 0 replies.
- [lucenenet] 01/02: website: Updated release procedure to include putting the release notes on the website and made several improvements - posted by ni...@apache.org on 2021/10/29 15:51:47 UTC, 0 replies.
- [lucenenet] 02/02: website: Added download page for 4.8.0-beta00015 - posted by ni...@apache.org on 2021/10/29 15:51:48 UTC, 0 replies.
- [lucenenet] branch docs/4.8.0-beta00015 created (now 96dc74c) - posted by ni...@apache.org on 2021/10/30 07:32:14 UTC, 0 replies.
- [lucenenet] branch master updated (96dc74c -> f5792a0) - posted by ni...@apache.org on 2021/10/30 11:06:19 UTC, 0 replies.
- [lucenenet] 01/02: src/docs/LuceneDocsPlugins/LuceneNoteTokenRendererPart.cs: Changed internal/experimental messages to match Lucene - posted by ni...@apache.org on 2021/10/30 11:06:20 UTC, 0 replies.
- [lucenenet] 02/02: docs: Updated version-specific files to 4.8.0-beta00015 - posted by ni...@apache.org on 2021/10/30 11:06:21 UTC, 0 replies.
- [lucenenet] branch master updated: Lucene.Net.sln: Added websites project to the solution and removed broken apidocs project - posted by ni...@apache.org on 2021/10/30 12:53:37 UTC, 0 replies.
- [lucenenet-site] branch asf-site updated: Adds 4.8.0-beta00015 API docs - posted by ni...@apache.org on 2021/10/30 13:39:34 UTC, 0 replies.
- [lucenenet-site] branch asf-site updated: Adds link to API docs for 4.8.0-beta00015 - posted by ni...@apache.org on 2021/10/30 14:25:28 UTC, 0 replies.
- [lucenenet] branch master updated: website: Added API docs link for 4.8.0-beta00015 - posted by ni...@apache.org on 2021/10/31 02:51:12 UTC, 0 replies.
- [lucenenet] branch docs/4.8.0-beta00015 updated (96dc74c -> 7ee09cf) - posted by ni...@apache.org on 2021/10/31 02:52:21 UTC, 0 replies.