1. b5e1958 Generated workflow files for each test project to run on GitHub Actions during pull requests by Shad Storhaug · 3 years, 6 months ago
  2. 744ff1c Added Generate-TestWorkflows.ps1 script to generate GitHub Actions workflow files based on project dependencies by Shad Storhaug · 3 years, 6 months ago
  3. 7f9221f Added LiquidTestReports.Markdown to all test projects by Shad Storhaug · 3 years, 6 months ago
  4. 8c53b23 azure-pipelines.yml: Changed default of AwaitsFix to true during CI builds. by Shad Storhaug · 3 years, 6 months ago
  5. aa37f7d Added the AwaitsFixAttribute to the known failing tests described in #363 and #269 by Shad Storhaug · 3 years, 6 months ago
  6. c1a5be1 website: Added link to 4.8.0-beta00013 API docs by Shad Storhaug · 3 years, 6 months ago docs/4.8.0-beta00013
  7. 6a21a0c docs: Updated docfx.global.json for 4.8.0-beta00013 by Shad Storhaug · 3 years, 6 months ago
  8. 4e5f5d4 docs.ps1: Updated footer to match main site by Shad Storhaug · 3 years, 6 months ago
  9. e992ebe websites/apidocs: Updated footer to match main site by Shad Storhaug · 3 years, 6 months ago
  10. 6a1bccd websites/apidocs: Changed main.css to keep Fork me on GitHub from overlapping the menu by Shad Storhaug · 3 years, 6 months ago
  11. 0b448d9 websites/apidocx/docs.ps1: Set the $env:LuceneNetVersion environment variable so our plugin recognizes it by Shad Storhaug · 3 years, 6 months ago
  12. 4051026 websites/apidocs/docs.ps1: Trim any trailing slash from $BaseUrl by Shad Storhaug · 3 years, 6 months ago
  13. 95090b3 fixes comma and language version for net framework plugins by Shannon · 3 years, 6 months ago
  14. 7d555cb streamlines the site build script to be inline with the docs and updates the docs accordingly by Shannon · 3 years, 6 months ago
  15. 2f67776 fixes baseurl to not have double trailing slashes by Shannon · 3 years, 8 months ago
  16. 68de338 re-adds automation step to assign the title in the docs based on environment variable, updates docs script to ensure that the base url is correctly set for the live site, updates the docs building docs to be a bit more clear by Shannon · 3 years, 8 months ago
  17. c72072f website: Added download page for 4.8.0-beta00013 by Shad Storhaug · 3 years, 6 months ago
  18. 7638198 README.md: Updated build and test prerequisites to .NET 5.0 by Shad Storhaug · 3 years, 6 months ago
  19. ca61899 website: Added (temporary) release notes for 4.8.0-beta00013 that can be linked to publicly during the release vote by Shad Storhaug · 3 years, 6 months ago Lucene.Net_4_8_0_beta00013
  20. 56b60f8 website/site/contributing/documentation.md: Fixed website port and minor typos by Shad Storhaug · 3 years, 6 months ago
  21. a7653ee website: Updated make-release.md to provide more reliable way to tag the release commit by Shad Storhaug · 3 years, 6 months ago
  22. c901901 Directory.Build.props: Upgraded to C# 9.0 by Shad Storhaug · 3 years, 6 months ago
  23. adbc298 azure-pipelines.yml: Publish NuGet artifacts before publish results by Shad Storhaug · 3 years, 6 months ago
  24. 8d0aecf azure-pipelines.yml: Run net48_x86 nightly by Shad Storhaug · 3 years, 6 months ago
  25. fe5f1a8 azure-pipelines.yml, run-tests-on-os.yml: Added tests for .NET 5 by Shad Storhaug · 3 years, 6 months ago
  26. 85cf53f build/build.ps1: Updated to test .NET 5 by Shad Storhaug · 3 years, 6 months ago
  27. 486a304 Fixed compiler warnings by Shad Storhaug · 3 years, 6 months ago
  28. 8d43130 Added test target for .NET 5 by Shad Storhaug · 3 years, 6 months ago
  29. 1a02f66 Lucene.Net.Search.FieldCacheImpl: Removed unused outerInstance fields and marked fields readonly, as allowed by Shad Storhaug · 3 years, 6 months ago
  30. c0f9767 Revert "Lucene.Net.Search.FieldCacheImpl: Removed field value types and declared Get methods inline using delegate methods" by Shad Storhaug · 3 years, 6 months ago
  31. d5c5ca4 build/Dependencies.props: Downgraded Microsoft.Extensions.Configuration to 2.0.0 to allow applications using older versions to avoid conflicts (#388) by Shad Storhaug · 3 years, 6 months ago
  32. 5eb0949 Fixes several code quality issues (Code Analysis) (#387) by Shad Storhaug · 3 years, 6 months ago
  33. 6ea55d1 Lucene.Net.Util.Automaton.State: Removed IEquatable<T> and other equality checking, as implementing Equals() to compare other than reference equality causes IndexOutOfRangeException to randomly occur when using FuzzyTermsEnum. Fixes #296. by Shad Storhaug · 3 years, 6 months ago
  34. 3b13b9e Lucene.Net.Codecs.Memory.MemoryPostingsFormat: Added additional comments for System.Enum.CompareTo() to IndexOptionsComparer change by Shad Storhaug · 3 years, 6 months ago
  35. 3c01253 SWEEP: Use IndexOptionsComparer class to avoid the boxing associated with System.Enum.CompareTo() on IndexOptions enum (closes #375, closes #376) by Shad Storhaug · 3 years, 6 months ago
  36. 54aabdf Lucene.Net.Index: Added IndexOptionsComparer to eliminate boxing when comparing IndexOptions enum values with System.Enum.CompareTo() by Shad Storhaug · 3 years, 6 months ago
  37. 427e230 Lucene.Net.Diagnostics: Added tests for Debugging class by Shad Storhaug · 3 years, 6 months ago
  38. 13f381b Lucene.Net.TestFramework: Added DoesNotThrow() overloads to Assert class by Shad Storhaug · 3 years, 6 months ago
  39. ca2ecb2 SWEEP: Fixed Debugging.Assert() calls that format strings with parameters so the parameters are not resolved until a condition fails. There are still some calls that do light math and pick items from arrays, but this performance hit in the tests is something we can live with for better production performance. Closes #346, closes #373, closes #372. by Shad Storhaug · 3 years, 6 months ago
  40. ff2b18d Lucene.Net.Codecs.BlockTreeTermsWriter: Added PendingBlocksFormatter struct used to defer building a string.Format() parameter when using Debugging.Assert<T0>(bool, string, T0) overloads by Shad Storhaug · 3 years, 6 months ago
  41. fb7fb6b Lucene.Net.Util.BytesRef: Added BytesRefFormatter struct used to defer building a string.Format() parameter when using Debugging.Assert<T0>(bool, string, T0) overloads by Shad Storhaug · 3 years, 6 months ago
  42. db10a7d Lucene.Net.Store.Directory: Added ListAllFormatter struct used to defer building a string.Format() parameter when using Debugging.Assert<T0>(bool, string, T0) overloads by Shad Storhaug · 3 years, 6 months ago
  43. 53a2168 Lucene.Net.Diagnostics.Debugging: Updated documentation by Shad Storhaug · 3 years, 6 months ago
  44. fcc9058 Lucene.Net.Diagnostics.Debugging: Use J2N StringFormatter to automatically format arrays and IStructuralFormattable collections by Shad Storhaug · 3 years, 6 months ago
  45. b4dde01 replace Debugging.Assert with 2 parameters by rafael-aero · 3 years, 7 months ago
  46. a20fd77 start removing delegate-based Debugging.AssertsEnabled by rafael-aero · 3 years, 7 months ago
  47. 535f8b8 Change Debugging.Assert usage to not allocate due to lambda capture by rafael-aero · 3 years, 7 months ago
  48. 9bee5f2 website: Added target="_blank" to Fork me on GitHub (home page) by Shad Storhaug · 3 years, 6 months ago
  49. dd49019 website: Updated home page example to exclude unnecessary variable for Environment.SpecialFolder enumeration value by Shad Storhaug · 3 years, 6 months ago
  50. 9df13ad website: Changed home page example to use Console.WriteLine() instead of 3rd party LinqPad Dump() method. by Shad Storhaug · 3 years, 6 months ago
  51. e6c26c3 website: Update path to use machine-level folder instead of user-level folder by Shad Storhaug · 3 years, 6 months ago
  52. c26e4ca Revert "website: added Google ads" by Shad Storhaug · 3 years, 6 months ago
  53. 146d7d0 website: Added target="_blank" to Fork me on GitHub by Shad Storhaug · 3 years, 7 months ago
  54. d1f73e4 apidocs: Added target="_blank" to Fork me on GitHub by Shad Storhaug · 3 years, 7 months ago
  55. bc634f8 apidocs: Corrected viewport width for Fork me on GitHub by Shad Storhaug · 3 years, 7 months ago
  56. 8018578 add fork me on github to api docs by Kevin J · 3 years, 7 months ago
  57. 7ceef14 website: Fixed issue with title being overlapped by breadcrumb by Shad Storhaug · 3 years, 7 months ago
  58. e37bf06 website: Removed duplicate fork me on github from CSS by Shad Storhaug · 3 years, 7 months ago
  59. d633dc6 apidocs: Updated Powershell script to allow passing in the staging port by Shad Storhaug · 3 years, 7 months ago
  60. 0bdae67 website: added Google ads by Shad Storhaug · 3 years, 7 months ago
  61. 0fa692b website: Updated Powershell script to allow passing in the staging port by Shad Storhaug · 3 years, 7 months ago
  62. 4a5393d website: Fixed nuget-well so it doesn't wrap by Shad Storhaug · 3 years, 7 months ago
  63. 8b9afae website: Added fix for padding disappearing on gradient in the middle two viewport sizes by Shad Storhaug · 3 years, 7 months ago
  64. cfd06b0 website: Updated code padding to prevent wrapping by Shad Storhaug · 3 years, 7 months ago
  65. 1596873 website: Updated code samples to include using blocks and made path xplat by Shad Storhaug · 3 years, 7 months ago
  66. 4bdae18 website: Converted to use master page instead of header template for Fork me on GitHub by Shad Storhaug · 3 years, 7 months ago
  67. 1fcc714 websites/site/lucenetemplate/partials: Moved forkongithub span to navbar.tmpl.partial to produce valid HTML by Shad Storhaug · 3 years, 7 months ago
  68. f42dc6b websites/site/lucenetemplate/styles: Added padding to right side of menu to prevent Fork me on GihHub from overlapping it by Shad Storhaug · 3 years, 7 months ago
  69. 6c303f0 add fork me on github3 by Kevin J · 3 years, 7 months ago
  70. a93a8ac add fork me on github2 by Kevin J · 3 years, 7 months ago
  71. 8c38464 IDE0016: use throw expression by Shad Storhaug · 3 years, 7 months ago
  72. a7ee3b2 Lucene.Net.Tests: Removed calls to obsolete Counter.Get() method (value is now implicit) by Shad Storhaug · 3 years, 7 months ago
  73. 4febe4e CA1507: Use nameof instead of string by Shad Storhaug · 3 years, 7 months ago
  74. 03ad7c5 adds hacktoberfest to labels by Shannon Deminick · 3 years, 7 months ago
  75. eb9346b Merge pull request #358 from Shazwazza/website-community-links by Shannon Deminick · 3 years, 7 months ago
  76. f0930a5 websites/site/contributing/mailing-lists.md: Added builds mailing list and updated links/documentation by Shad Storhaug · 3 years, 8 months ago
  77. bbf6ece Lucene.Net.Benchmarks.ByTask.PerfRunData: Added comments to indicate where and why we diverged from Java by Shad Storhaug · 3 years, 7 months ago
  78. 3c0e54c Update PerfRunData.cs by shadowcaptain · 3 years, 7 months ago
  79. f5cca0b Lucene.Net.Util.Counter: Changed Get() to Value property and added implicit operator. by Shad Storhaug · 3 years, 7 months ago
  80. c414dde Lucene.Net.Util.Bits: Removed unnecessary GetHashCode() method from MatchAllBits and MatchNoBits (didn't exist in Lucene) by Shad Storhaug · 3 years, 7 months ago
  81. 5285722 Lucene.Net.Util.StringHelper: Marked static, removed private ctor, made StartsWith(), EndsWith(), BytesDifference(), and SliceEquals() into extension methods by Shad Storhaug · 3 years, 7 months ago
  82. 34b7c57 Lucene.Net.Util.DisposableThreadLocal: Added removal warning to Obsolete attribute instead of in comments by Shad Storhaug · 3 years, 7 months ago
  83. f9a348a PERFORMANCE: Lucene.Net.Util.Automaton.SortedInt32Set: Removed unnecessary IEquatable<T> implementations and converted FrozenInt32Set into a struct. by Shad Storhaug · 3 years, 7 months ago
  84. 26213e3 Lucene.Net.Analysis.Compound.Hyphenation: Reviewed and removed TODOs by Shad Storhaug · 3 years, 7 months ago
  85. b990b79 Lucene.Net.Analysis.Br.BrazillianStemFilter: removed unused variable "exclusions" by Shad Storhaug · 3 years, 7 months ago
  86. fd40e16 BUG: Lucene.Net.Index.IndexFileDeleter: Missing test for Monitor.IsEntered(writer) (as was done in Java) by Shad Storhaug · 3 years, 7 months ago
  87. 76f6d2c Removed BoboBrowse.Net by Shad Storhaug · 3 years, 8 months ago
  88. df240a8 Added Implementing Search in Blazor WebAssembly with Lucene.Net by Shad Storhaug · 3 years, 8 months ago
  89. 205c6d8 Changes other posts links to just be a list by Shannon · 3 years, 8 months ago
  90. 87d21f5 Creating Community Links page for the website by Shannon · 3 years, 8 months ago
  91. 10b326a BUG: Lucene.Net.Store.SharingNativeFSLock: Allow other processes (such as RAMDirectory) to read the lock file, only set file sharing to None in IsLocked() to provoke the sharing exception. Fixes #356. by Shad Storhaug · 3 years, 8 months ago
  92. 37d7ffd Lucene.Net.Search.FieldCacheImpl: Changed null equality comparisons from == to is by Shad Storhaug · 3 years, 8 months ago
  93. f320da8 Lucene.Net.Search.FieldCacheImpl: Removed unused outerInstance member variables and added readonly by Shad Storhaug · 3 years, 8 months ago
  94. 2929d77 BREAKING: Lucene.Net.Search.FieldCache: Added interface ICreationPlaceholder and changed CreationPlaceholder to CreationPlaceholder<TValue>. Changed FieldCacheImpl.Cache to use <TKey, TValue> to reduce casting. by Shad Storhaug · 3 years, 8 months ago
  95. 14f96ae Lucene.Net.Search.FieldCacheImpl: Removed field value types and declared Get methods inline using delegate methods by Shad Storhaug · 3 years, 8 months ago
  96. 3f2cf24 Lucene.Net.Search.FieldCache: Added delegate constructor to field value types so they can be declared inline by Shad Storhaug · 3 years, 8 months ago
  97. f910d53 PERFORMANCE: Lucene.Net.Search.FieldCacheImpl: Reduced casting/boxing by making FieldCacheImpl.Cache and FieldCacheImpl.CacheKey classes generic. Removed unnecessary loops in PurgeByCacheKey() and GetCacheEntries(). by Shad Storhaug · 3 years, 8 months ago
  98. 8ca6951 Lucene.Net.Tests.Index.TestDocumentsWriterStallControl::TestAccquireReleaseRace(): Reduced nightly probability by 50% on x86 to keep from timing out by Shad Storhaug · 3 years, 8 months ago
  99. 6f7c2e3 Lucene.Net.Tests.Facet.Taxonomy.TestSearcherTaxonomyManger::Test_Directory(): increased timeout to 30 minutes by Shad Storhaug · 3 years, 8 months ago
  100. a3e7c96 Added TimeoutAttribute at the assembly level of tests to stop tests at 47-55 minutes in order to allow the test results to be uploaded. This will make troubleshooting which tests are taking too long easier. by Shad Storhaug · 3 years, 8 months ago