Releases: callumbwhyte/umbraco-search-extensions
v3.2.1
v3.2.0
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
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
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
v3.0.0
About time! Umbraco Search Extensions now supports Umbraco v9, v10 (LTS), and v11! 🎉
v2.0.0
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
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
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
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!