commits
Thread
Date
Earlier messages
Later messages
Messages by Thread
[lucenenet] 06/06: BREAKING: Lucene.Net.Analysis.Kuromoji.Token: Renamed IsKnown() > IsKnown, IsUnknown() > IsUnknown, IsUser() > IsUser.
nightowl888
[lucenenet] 03/06: SWEEP: Renamed concrete TokenAttribute type file names to be suffixed with "Impl" so the file it was ported from is clear.
nightowl888
[lucenenet] 05/06: SWEEP: Added guard clauses for all TokenAttribute members
nightowl888
[lucenenet] 01/06: PERFORMANCE: Lucene.Net.Analysis.Sinks.DateRecognizerSinkFilter: Prefer ReadOnlySpan<char> overloads of DateTime.TryParse() and DateTime.TryParseExact(), when available.
nightowl888
[lucenenet] 02/06: BUG: Changed TokenAttribute usage from concrete implementation type to interface type to align with Lucene 4.8.0. We were using the concrete type in several places where it shouldn't have been.
nightowl888
[lucenenet] branch master updated: BREAKING: Lucene.Net.Index.IndexReader: De-nested IReaderClosedListener and renamed to IReaderDisposedListener.
nightowl888
[lucenenet] branch master updated: BREAKING: Lucene.Net.Index.IndexWriter: Fixed Dispose() overloads so there is no method signature conflict between the public Dispose(waitForMerges) method and the protected Dispose(disposing) method that can be overridden and called from a finalizer. See #265.
nightowl888
[lucenenet] branch master updated (fdf6f34f0 -> dfae964ce)
nightowl888
[lucenenet] 01/04: BREAKING: Lucene.Net.Search.FieldCacheRangeFilter<T>: Changed accessibility from protected internal to private protected. This class was not intended to be subclassed by users. (see #677)
nightowl888
[lucenenet] 04/04: SWEEP: Changed all internal constructors of abstract classes to private protected. (fixes #677)
nightowl888
[lucenenet] 03/04: SWEEP: Changed all protected internal constructors of abstract classes to protected. (fixes #677)
nightowl888
[lucenenet] 02/04: SWEEP: Changed all public constructors of abstract classes to protected, except where it would be a problem for Reflection calls. (fixes #677)
nightowl888
[lucenenet] branch master updated: Deleted src/Lucene.Net.Spatial.Overview.html (legacy doc)
nightowl888
[lucenenet] branch master updated: ci: Added sonar workflow (#709)
nightowl888
[lucenenet] branch ci/sonarcloud updated (3c2a7d170 -> 275946c41)
nightowl888
[lucenenet] branch ci/sonarcloud updated (97169c74e -> 3c2a7d170)
nightowl888
[lucenenet] branch ci/sonarcloud updated (15d417e80 -> 97169c74e)
nightowl888
[lucenenet] branch ci/sonarcloud created (now 15d417e80)
nightowl888
[lucenenet] 03/05: Force a scan
nightowl888
[lucenenet] 04/05: sonar.yml: Use SONARCLOUD_TOKEN secret directly
nightowl888
[lucenenet] 01/05: Force a scan
nightowl888
[lucenenet] 02/05: Updated sonar.yml to use Apache SONARCLOUD_TOKEN
nightowl888
[lucenenet] 05/05: sonar.yml: Corrected SonarCloud key
nightowl888
[lucenenet] branch master updated (ada899027 -> c076e40b1)
nightowl888
[lucenenet] 01/02: Lucene.Net.Support.IO.FileSupport::GetFileIOExceptionHResult(): Avoid Path.GetTempFileName() because it is not secure. https://rules.sonarsource.com/csharp/RSPEC-5445
nightowl888
[lucenenet] 02/02: Lucene.Net.Search.Suggest.Fst.ExternalRefSorter: Changed temp path generation to use FileSupport.CreateTempFile() with named prefix and extension because it more closely matches Lucene and makes the files more easily identifiable.
nightowl888
[lucenenet] branch NightOwl888-patch-1 deleted (was 0e3518b1b)
nightowl888
[lucenenet] branch NightOwl888-patch-1 created (now 0e3518b1b)
nightowl888
[lucenenet] 01/01: Force a test run
nightowl888
[lucenenet] branch master updated (36fbd60d7 -> a2b4c3119)
nightowl888
[lucenenet] 01/04: BUG: Lucene.Net.Util.OfflineSorter: Fixed the Sort() and SortPartition() methods so they use the tempDirectory parameter that is passed through the constructor, as was the case in Lucene. Added a constructor overload to specify the directory as a string (a .NET convention).
nightowl888
[lucenenet] 04/04: Lucene.Net.Util.OfflineSorter (ByteSequencesReader + ByteSequencesWriter): Added constructor overloads to pass the file name as a string (.NET convention)
nightowl888
[lucenenet] 02/04: BREAKING: Lucene.Net.Util.OfflineSorter: Changed DefaultTempDir() > GetDefaultTempDir().
nightowl888
[lucenenet] 03/04: Lucene.Net.Util.OfflineSorter: Added guard clauses (and removed asserts). Enabled nullable reference type support. Added disposed flag to ensure dispose only happens once.
nightowl888
[lucenenet] branch master updated: Update SlowSynonymFilter.cs
nightowl888
[lucenenet] branch master updated (31ac9f6b7 -> 3fbee37ed)
nightowl888
[lucenenet] 02/14: PERFORMANCE: Lucene.Net.Codecs.SimpleText.SimpleTextUtil::Write(): Removed unnecessary ToCharArray() allocation
nightowl888
[lucenenet] 03/14: PERFORMANCE: Lucene.Net.Analysis.CharFilters.HTMLStripCharFilter: Removed allocation during parse of hexadecimal number by using J2N.Numerics.Int32 to specify index and length. Also added a CharArrayFormatter struct to defer the allocation of constructing a string until after an assertion failure.
nightowl888
[lucenenet] 05/14: PERFORMANCE: Lucene.Net.Analysis.Miscellaneous.StemmerOverrideFilter: Added overloads to Add for ICharSequence and char[] to reduce allocations. Added guard clauses.
nightowl888
[lucenenet] 08/14: PERFORMANCE: Lucene.Net.Analysis.Ja.GraphvizFormatter: Removed unnecessary surfaceForm string allocation.
nightowl888
[lucenenet] 06/14: Lucene.Net.Util.TestUnicodeUtil::TestUTF8toUTF32(): Added additional tests for ICharSequence and char[] overloads, changed the original test to test string.
nightowl888
[lucenenet] 11/14: PERFORMANCE: Lucene.Net.Analysis.Th.ThaiWordBreaker: Removed unnecessary string allocations and concatenation. Use CharsRef to reuse the same memory. Removed Regex and replaced with UnicodeSet to detect Thai code points.
nightowl888
[lucenenet] 09/14: PERFORMANCE: Lucene.Net.Analysis.In.IndicNormalizer: Replaced static constructor with inline LoadScripts() method. Moved location of scripts field to ensure decompositions is initialized first.
nightowl888
[lucenenet] 01/14: PERFORMANCE: Lucene.Net.Document.CompressionTools::CompressString(): Eliminated unnecessary ToCharArray() allocation
nightowl888
[lucenenet] 07/14: PERFORMANCE: Lucene.Net.Analysis.Util.SegmentingTokenizerBase: Removed unnecessary string allocations that were added during the port due to missing APIs.
nightowl888
[lucenenet] 12/14: PERFORAMANCE: Lucene.Net.Analysis.Ga.IrishLowerCaseFilter: Use stack and spans to reduce allocations and improve throughput.
nightowl888
[lucenenet] 04/14: PERFORMANCE: Lucene.Net.Analysis.Util.CharacterUtils: Use spans and stackalloc to reduce heap allocations when lowercasing. Added system property named "maxStackLimit" that defaults to 2048 bytes.
nightowl888
[lucenenet] 13/14: PERFORMANCE: Lucene.Net.Analysis.Util.OpenStringBuilder: Added overloads of UnsafeWrite() for string an ICharSequence. Optimized Append() methods to call UnsafeWrite with index and count to optimize the operation depending on the type of object passed.
nightowl888
[lucenenet] 10/14: PERFORMANCE: Lucene.Net.Analysis.In.IndicNormalizer: Refactored ScriptData to change Dictionary<Regex, ScriptData> to List<ScriptData> and eliminated unnecessary hashtable lookup. Use static fields for unknownScript and [ThreadStatic] previousScriptData to optimize character script matching.
nightowl888
[lucenenet] 14/14: PERFORMANCE: Lucene.Net.Analsis.Util.HTMLStripCharFilter: Refactored to remove YyText property (method) which allocates a string every time it is called. Instead, we pass the underlying array to J2N.Numerics.TryParse() and OpenStringBuilder.Append() with the calculated startIndex and length to directly copy the characters without allocating substrings.
nightowl888
[lucenenet] branch master updated: Sonar changes required for #671 (#730)
nightowl888
[lucenenet] branch master updated: Updated Azure DevOps Mac OS used for Net3.1 Testing (#728)
rclabo
[lucenenet] branch master updated: changes made for Redundant jump statements #684 (#724)
nightowl888
[lucenenet] branch master updated (a1ae345de -> 3f54dce14)
rclabo
[lucenenet] branch master updated: .github/workflows/Generate-TestWorkflows.ps1: Disabled slow tests for PR test runs
nightowl888
[lucenenet] branch master updated: Lucene.Net.Analysis.Token: Removed extra code in default constructor
nightowl888
[lucenenet] branch master updated: sweep: Review for CA1822: Mark members as static
nightowl888
[lucenenet] branch master updated: sweep: Review for CA1822: Mark members as static
nightowl888
[lucenenet] branch master updated: Removed 2 private nested classes that were not in use (#713)
nightowl888
[lucenenet] branch master updated: Lucene.Net.Analysis.Kuromoji.Util.CSVUtil: Applied SOLR-9413 patch to fix the QuoteEscape() method and add tests. Fixes #660.
nightowl888
[lucenenet] branch master updated: Lucene.Net.Search.Similarities: Statically imported SimilarityBase where appropriate so the Log2 method doesn't have to be qualified (like in Lucene). Fixes #694.
nightowl888
[lucenenet] branch master updated (599f3b7f8 -> 84e379e09)
nightowl888
[lucenenet] branch master updated: Lucene.Net.Analysis.Fa/PersianAnalyzer: Reverted changes from #571 as was done in apache/lucene#904. Changed TestPersianStemFilter to use mocks.
nightowl888
[lucenenet] branch master updated: chore: Added suppression attributes to CA1822 (#693)
nightowl888
[lucenenet] branch master updated: .editorconfig: Suppressed IDE0090: Simplify new expression
nightowl888
[lucenenet] branch master updated: PERFORMANCE: Use 'StringBuilder.Append(char)' instead of 'StringBuilder.Append(string)' when the input is a constant unit string. (#708)
nightowl888
[lucenenet] branch master updated: Fix for net461 dependency conflict after upgrading Newtonsoft.Json. Fixes #699.
nightowl888
[lucenenet] branch master updated: BUG: Lucene.Net.Tests.Index.TestIndexWriter: Finished port of RandomFailingFieldEnumerable. Fixes #695.
nightowl888
[lucenenet] branch master updated: SWEEP: Removed call to ToString() for StringBuilder.Append() methods, so strongly typed StringBuilder overloads can be used on target frameworks that support it. Fixes #668.
nightowl888
[lucenenet] branch master updated (c2809e9fd -> 36527a061)
nightowl888
[lucenenet] 01/02: BUG: Lucene.Net.Benchmark.Support.TagSoup.Parser::SetProperty(): Removed duplicate guard clause
nightowl888
[lucenenet] 02/02: Lucene.Net.Benchmark.Support.TagSoup.HTMLScanner: Reworked initialization to return statetableIndexMaxChar and set statetableIndex via out parameter.
nightowl888
[lucenenet] branch master updated: SWEEP: Marked all singleton "Holder" classes static. Fixes #659.
nightowl888
[lucenenet] branch master updated: BUG: Lucene.Net.Analysis.Cjk.CJKBigramFilter: Changed the value of ALL to set all flags (was 0xff instead of 0xffff). Fixes #657.
nightowl888
[lucenenet] branch master updated (80d8cacc5 -> dac2a8c85)
nightowl888
[lucenenet] 03/03: SWEEP: Renamed classes from using Iterable and Iterator to Enumerable and Enumerator, where appropriate - some were missed in #698.
nightowl888
[lucenenet] 01/03: Lucene.Net.Util.Fst.BytesStore: Suffix anonymous classes with "AnonymousClass". See #666.
nightowl888
[lucenenet] branch master updated: SWEEP: Renamed classes from using Iterable and Iterator to Enumerable and Enumerator, where appropropriate. See #279.
nightowl888
[lucenenet] branch master updated: PERFORMANCE: Lucene.Net.Util.MergedEnumerator: Changed from using inline string conversions when the generic type is string to J2N.Collections.Generic.Comparer<T>, which is statically initialized with the optimal comparer that matches Java behaviors.
nightowl888
[lucenenet] branch master updated (b5802f870 -> e2ae17398)
nightowl888
[lucenenet] 01/02: publish-test-results.yml: Added check for assembly binding failure to detect crashed runs. See #699.
nightowl888
[lucenenet] 02/02: .github/workflows: Added Lucene-Net-Dependency-Conflict-Warning.yml to post a message to post a reminder comment to a PR to run the tests in Azure DevOps if it contains changes to dependences.props or any .csproj file. See #699.
nightowl888
[lucenenet] branch master updated: SWEEP: Add a nested comment explaining why this method is empty. Fixes #681.
nightowl888
[lucenenet] branch master updated: SWEEP: Lucene.Net.Benchmark.Support.TagSoup: Reviewed API for accessibility issues. Fixed error handling and guard clauses. Changed to generic collections. Renamed method arguments.
nightowl888
[lucenenet] branch master updated: Review for CA1822: Mark members as static (#690)
nightowl888
[lucenenet] branch master updated: SWEEP: Prefer 'AsSpan' over 'Substring' when span-based overloads are available. Fixes #675.
nightowl888
[lucenenet] branch master updated: SWEEP: Fixed ArgumentOutOfRange parameters so the message is passed into the 2nd parameter, not the first (which is for argumentName). Fixes #665. Also addressed potential int overflow issues when checking for "index + length must be <= array length".
nightowl888
[lucenenet] branch master updated: fix: Fixed '&' to '&&'
nightowl888
[lucenenet] branch master updated: Lucene.Net.Analysis.Cn.Smart.Utility: Changed SPACES to use an encoded character for '\u3000' so it is visible in the designer. Fixes #680.
nightowl888
[lucenenet] branch master updated: Lucene.Net.Tests.Analysis.SmartCn.TestHMMChineseTokenizerFactory: Added LuceneNetSpecificAttribute to TestHHMMSegmenter() and renamed TestHHMMSegmenterInitialization(), since this is a smoke test that was added to test initialization of HHMMSegmenter.
nightowl888
[lucenenet] branch master updated: .editorconfig: Added suppression for CA2249: Consider using String.Contains instead of String.IndexOf
nightowl888
[lucenenet] branch master updated: Spellchecking on markdown and text files (#646)
nightowl888
[lucenenet] branch master updated: fix: Order of precedence for translation of Remove() method args in FrenchStemmer.cs (#654)
nightowl888
[lucenenet] branch master updated: fix: Fixed Infinite lopp in HttpClientBase
nightowl888
[lucenenet] branch master updated: .asf.yaml: Added hacktoberfest label
nightowl888
[lucenenet] branch master updated: fix: Fixed throw statement in BinaryDictionary
nightowl888
[lucenenet] branch master updated: fix: Fixed use of insecure 'Path.GetTempFileName' in ExternalRefSorter.cs (#651)
nightowl888
[lucenenet] branch master updated: Remove NET45, NET451, NET452 Support & update website framework ver (#650)
rclabo
[lucenenet] branch master updated: chore(deps): Update Newtonsoft.Json to 13.0.1 to avoid vulnerability (#647)
shazwazza
[lucenenet] branch master updated (dd54e578a -> b5ea527c5)
nightowl888
[lucenenet] 01/02: azure-pipelines.yml: Removed x86 tests for .NET Core on Linux/macOS, as they are not supported
nightowl888
[lucenenet] 02/02: install-dotnet-sdk.yml, run-tests-on-os.yml: Added performMultiLevelLookup parameter for x86 tests
nightowl888
[lucenenet] branch master updated: .build.runbuild.ps1: Specify to roll forward if another SDK version is installed
nightowl888
[lucenenet] branch master updated: Add DebuggerDisplay for SegToken (#634)
nightowl888
[lucenenet] branch master updated: Added PersianStemmer (#571)
nightowl888
[lucenenet] branch master updated: website: fixed horizontal rule
rclabo
[lucenenet-site] branch task/website-build-95520cb8addd960fb4f670cf971576fa45bc4e3d updated (ae6184f -> c9e764e)
nightowl888
[lucenenet-site] branch task/website-build-95520cb8addd960fb4f670cf971576fa45bc4e3d updated (fc0ea2e -> ae6184f)
nightowl888
[lucenenet] branch master updated: Fixed dotnet --info syntax error
rclabo
[lucenenet] branch master updated (f605017 -> 3f91669)
rclabo
[lucenenet] 04/08: website: bug fix so that Improve this Doc is always clickable.
rclabo
[lucenenet] 06/08: website: body font larger. Hyperlinks now brighter and provide better hover feedback. Body Hyperlinks now not same styles as main nav.
rclabo
[lucenenet] 03/08: website: fixed home page responsive bug at 751px
rclabo
[lucenenet] 02/08: website: updated home page includig title, meta title, hero text, and install command.
rclabo
[lucenenet] 01/08: website: updated copyright in footer
rclabo
[lucenenet] 08/08: Website: Converted smart quotes to regular quotes and other small tweaks related to code review.
rclabo
[lucenenet] 05/08: website: home page books are smaller now and fixed one books link so it's not just the kindle version.
rclabo
[lucenenet] 07/08: website: New Quick Start area. Contains Index, Introduction, Tutorial & Learning Resources pages.
rclabo
[lucenenet] branch master updated: SWEEP: Increased timeouts on tests to keep them from intermittently failing during nightly builds.
nightowl888
[lucenenet-site] branch asf-site updated: Quick Start - Added two images and renamed one
rclabo
[lucenenet-site] branch asf-site updated: Delete lucene-high-level-diagram.svg
rclabo
[lucenenet-site] branch asf-site updated: Quickstart Introduction - fixed Lucene High Level Diagram (#36)
rclabo
[lucenenet-site] branch asf-site updated: Quickstart Introduction - added Lucene High Level Diagram svg (#35)
rclabo
[lucenenet-site] branch asf-site updated: Introduction page - 2 images
rclabo
[lucenenet] branch docs/4.8.0-beta00016 updated (1223691 -> a932d69)
nightowl888
[lucenenet] 01/02: Update StandardQueryParser.cs
nightowl888
[lucenenet] 02/02: Update StandardQueryParser doc string
nightowl888
[lucenenet] branch master updated (67b28e4 -> d6f3c3e)
nightowl888
[lucenenet] 01/02: Update StandardQueryParser.cs
nightowl888
[lucenenet] 02/02: Update StandardQueryParser doc string
nightowl888
[lucenenet] branch master updated: BREAKING: Lucene.Net.IndexWriter.IEvent: Marked internal (as it was in Java). This interface is only used in non-public contexts by Lucene.
nightowl888
[lucenenet] branch master updated: Update migration-guide.md
nightowl888
[lucenenet] branch docs/4.8.0-beta00016 updated: Update migration-guide.md
nightowl888
[lucenenet] branch master updated: PERFORMANCE: Lucene.Net.Index.BaseCompositeReader: Removed unnecessary list allocation
nightowl888
[lucenenet] branch docs/4.8.0-beta00016 updated (243976c -> e75b86e)
nightowl888
[lucenenet] branch master updated (e0c394b -> e75b86e)
nightowl888
[lucenenet] 03/03: BUG: Lucene.Net.Search.package.md: Corrected link to TooManyClausesException
nightowl888
[lucenenet] 02/03: Docs: Updated View Source link to use current version tag rather than master branch
nightowl888
[lucenenet] 01/03: docs: Updated docs.ps1 and plugins to update the Changes link on the docs home page to point to the correct tag in the GitHub repository (fixes #621).
nightowl888
[lucenenet-site] branch asf-site updated: added quickstart tutorial images
rclabo
[lucenenet] branch master updated (243976c -> e0c394b)
nightowl888
[lucenenet] 01/02: website: Updated Lucene.Net.Codecs namespace documentation to demonstrate the registration using the Initialize() method rather than TestFrameworkSetUp() method.
nightowl888
[lucenenet] 02/02: docs: Lucene_Net_Codecs.md: Updated version in example to 4.8.0-beta00016
nightowl888
[lucenenet] branch master updated (3b69393 -> 243976c)
nightowl888
[lucenenet] branch docs/4.8.0-beta00016 updated: website: Added link for 4.8.0-beta00016 API docs
nightowl888
[lucenenet-site] branch asf-site updated: Added link to 4.8.0-beta00016 API docs
nightowl888
[lucenenet] branch docs/4.8.0-beta00016 created (now 3b69393)
nightowl888
[lucenenet] branch master updated (f1eefd8 -> 3b69393)
nightowl888
[lucenenet] 01/02: Lucene.Net.Classification: Fixed hyperlinks in doc comments
nightowl888
[lucenenet] 02/02: lucene-cli docs: Updated version to 4.8.0-beta00016
nightowl888
[lucenenet-site] branch asf-site updated: Added download page for 4.8.0-beta00016
nightowl888
[lucenenet] branch master updated: website: Added download page for 4.8.0-beta00016
nightowl888
svn commit: r52604 - /dev/lucenenet/4.8.0-beta00016/
nightowl888
svn commit: r52603 - /release/lucenenet/4.8.0-beta00016/
nightowl888
svn commit: r52539 - /dev/lucenenet/4.8.0-beta00016/
nightowl888
[lucenenet] annotated tag Lucene.Net_4_8_0_beta00016 created (now 8690a5a)
nightowl888
[lucenenet] branch master updated (bed207a -> f4280e6)
nightowl888
[lucenenet] 02/03: BUG: .build/runbuild.ps1: Add SYSTEM_DEFAULTWORKINGDIRECTORY environment variable if it doesn't exist to let the lucene-cli installation tests know where to scan for the NuGet package so it doesn't need to rebuild it.
nightowl888
[lucenenet] 01/03: websites/site/contributing/make-release.md: Fixed build command, added step to review the LICENSE.txt file to ensure licenses are all included and authorized for use by Apache.
nightowl888
[lucenenet] 03/03: BUG: build.ps1: Added missing prepareForBuild and backupFiles properties, which must be set to false when doing a distribution build (i.e. when the version.props file exists)
nightowl888
[lucenenet] branch master updated (e6ca4a7 -> bed207a)
nightowl888
[lucenenet] 01/03: Lucene.Net.Support.ExceptionHandling.Exceptions.ServletException: Added license header
nightowl888
[lucenenet] 03/03: LICENSE.txt: Added license info for 3rd party code and removed licenses for items that have been deleted from the Support folder
nightowl888
[lucenenet] 02/03: .rat-excludes: Added exception for DateTimeOffsetUtil because it falls under a different license
nightowl888
[lucenenet-site] branch asf-site updated: Added release notes page for 4.8.0-beta00016
nightowl888
[lucenenet] branch master updated: website: Added release notes for 4.8.0-beta00016
nightowl888
[lucenenet] branch master updated: Lucene.Net.Documents.DateTools::StringToTime(string, NumericRepresentation): Updated doc comments to indicate upgrade path for prior Lucene.NET versions.
nightowl888
[lucenenet] branch master updated: Lucene.Net.Expressions.JS.JavascriptCompiler: fixed doc comment code example (removed Put() and PutAll() references, which are internal)
nightowl888
[lucenenet] branch master updated (11806ed -> ef70977)
nightowl888
[lucenenet] 02/02: Lucene.Net.csproj: Exclude readme.md so we can edit the data manually in the NuGet.org portal
nightowl888
[lucenenet] 01/02: .build/nuget.props: Updated release notes URL
nightowl888
[lucenenet] branch master updated: Factored out WeakDictionary in favor of weak events using Prism.Core (#613)
nightowl888
[lucenenet] branch master updated (41ffbc7 -> 5900b3d)
nightowl888
[lucenenet] 05/05: .github/workflows/Lucene-Net-Documentation.yml: Added .NET 6 SDK setup prior to running docs.ps1
nightowl888
[lucenenet] 04/05: azure-pipelines.yml: Upgraded docs and website to use windows-latest (fixes #601)
nightowl888
[lucenenet] 02/05: src/docs/LuceneDocsPlugins: Upgraded to use new .csproj format and build tools (see #601)
nightowl888
[lucenenet] 03/05: websites/apidocs/docs.ps1: Upgraded project to use new .csproj format and .NET Core SDK build chain (see #601)
nightowl888
[lucenenet] 01/05: Directory.Build.targets: Fixed project import references so they will work from nested solutions
nightowl888
[lucenenet] branch master updated (3229957 -> 41ffbc7)
nightowl888
[lucenenet] 02/02: .github/workflows: Regenerated workflows for lucene-cli tests
nightowl888
[lucenenet] 01/02: lucene-cli + tests: added multi-targets for net6.0, net5.0, and netcoreapp3.1
nightowl888
[lucenenet] branch master updated (e41e2a3 -> 3229957)
nightowl888
[lucenenet] 02/02: Lucene.Net.Store: Changed documentation on FSDirectory implementations to pertain to .NET and removed the irrelevant Java-centric information.
nightowl888
[lucenenet] 01/02: PERFORMANCE: Lucene.Net.Support.IO.StreamExtensions::Read(Stream, ByteBuffer, long): Use a lock per stream so instances of NIOFSDirectory can run independently on separate threads without competing for a lock.
nightowl888
[lucenenet] branch master updated (7831b4f -> e41e2a3)
nightowl888
[lucenenet] branch master updated (b030c40 -> 7831b4f)
nightowl888
[lucenenet] branch master updated (bd0394f -> b030c40)
nightowl888
[lucenenet] 01/02: Lucene.Net.Tests (_E-I, _I-J): Shifted IndexWriter tests to I-J to balance the amount of time each test assembly takes to between 1 and 2 minutes
nightowl888
[lucenenet] 02/02: .github/workflows: Regenerated test templates for Lucene.Net.Tests._E-I and Lucene.Net.Tests._I-J
nightowl888
[lucenenet] branch master updated (de810ea -> bd0394f)
nightowl888
[lucenenet] 03/04: .build/dependencies.props: Upgraded RandomizedTesting.Generators to 2.7.8
nightowl888
[lucenenet] 04/04: .build/dependencies.props: Upgraded Morfologik to 2.1.7
nightowl888
[lucenenet] 02/04: .build/dependencies.props: Upgraded ICU4N to 60.1.0-alpha.356
nightowl888
[lucenenet] 01/04: .build/dependencies.props: Upgraded J2N to 2.0.0
nightowl888
[lucenenet-site] branch asf-site updated: Manually deploying latest files
rclabo
[lucenenet] branch master updated: Fixed broken book link for Instant Lucene.NET
rclabo
[lucenenet] branch master updated (4ab69b8 -> 2fe5d36)
rclabo
[lucenenet] 02/04: Fixed "lines of code" indicated on source code page and linked to related image.
rclabo
[lucenenet] 04/04: Fixed PR based on feedback
rclabo
[lucenenet] 01/04: Added gray boxes around images on "Setup Java Debugging" page.
rclabo
Earlier messages
Later messages