Skip to content

Releases: callumbwhyte/umbraco-search-extensions

v3.2.1

07 Jun 08:31
Compare
Choose a tag to compare

The Page extension methods previously returned the wrong total results count... Oops! Thanks to @kows for fixing!

v3.2.0

01 Jun 13:25
Compare
Choose a tag to compare

Better late than never... Umbraco Search Extensions now supports Umbraco v9-v12, v13 (LTS) and v14! 🎉

A huge H5YR to @garpunkal for your PR and your patience!

v3.1.0

22 Jun 11:09
Compare
Choose a tag to compare

To make paging results even easier, a new set of Page<T> extensions has been added onto ISearchResults! This now replaces the SearchHelper which has been obsoleted and will be removed in a future release.

v3.0.2

08 Feb 23:52
Compare
Choose a tag to compare

A new overload to the Page method within SearchHelper that returns the total number of pages expected for the total results + page size has been added to make it easier to write pagination logic!

v3.0.1

27 Jan 15:17
Compare
Choose a tag to compare

Thanks to a PR from @dawoe, the WhitespaceSeparatorTokenizer correctly separates whitespace so paths are indexed correctly again!

v3.0.0

28 Nov 20:18
Compare
Choose a tag to compare

About time! Umbraco Search Extensions now supports Umbraco v9, v10 (LTS), and v11! 🎉

v2.0.0

30 May 07:48
Compare
Choose a tag to compare

Search Extensions has been updated for Umbraco V9 and Examine V2! 🥳 All of your favourite extension methods and field types remain, but with updated internals to align with the new Lucene .NET 4.8 APIs.

The project documentation has been updated to include examples of configuration using .NET's Named Options pattern.

v1.5.1

29 May 21:37
Compare
Choose a tag to compare

The CreatePublishedQuery has been returning inaccurate results ever since v1.0.1 of Search Extensions – the logic for HasTemplate and IsVisible has now been corrected! The HasTemplate method now takes a nullable parameter for templateId to better support searching for content with any assigned.

v1.5.0

28 Feb 21:12
Compare
Choose a tag to compare

Searching UDIs just got a lot easier - now values are indexed as Guid's instead of strings. @busrasengul also found and fixed a silly typo in the IsVisible query extension method!

v1.4.1

14 Mar 23:51
Compare
Choose a tag to compare

The GetResults extension method is now attached to IEnumerable<ISearchResult> to support using Examine's .Skip() method for efficient paging - the SearchHelper has also been updated to use this method!