Releases: algolia/instantsearch-ios
7.5.0
7.4.0
7.3.0
7.2.0
New features
- Improved Connectors
Connectors
makes the creation of your search experience easier than ever.
In this version we significantly improved their API and provided a detailed source code documentation and hints.
Check out the documentation for more details.
Fixes
- Fixed concurrency issues occurring when compiling with Xcode 12
7.1.0
New features:
- Optional
shouldTriggerSearch
closure defining if an actual request must be performed when search() function called
onIndexChanged event for MultiIndexSearcher SingleIndexSearchConnector
&MultiIndexSearchConnector
which establish the necessary connections for basic single and multi-index search experiences respectively. They encapsulate QueryInput, Searcher, Hits components and provide convenient initialisers including ControllersHitsTableViewController
andHitsCollectionViewController
implementations to use with with connectors mentioned above for quick demos and prototyping
Fixes and improvements:
- Memory leak fix in
MultiIndexSearcher
due toPageLoader
initialization - Code documentation improvements
7.0.1
- Weaken the dependency requirements to minor versions for Insights in the Cartfile and for Swift API Client in the podspec (ensures seamless integration of Client 8.0.1 with Xcode 12 support)
- Add default HitsInteractor instances as parameters in the HitsConnector initializers which simplifies
InstantSearch v7
- Built on top of the new Swift API Client v8
- Includes the migrated InstantSearch Core package previously moved to the separate repository
- Obsoletes the out-of-box HitsController implementations deprecated in the previous InstantSearch version
- Fix memory leaks occuring in the connections between the components
InstantSearch Second Iteration!
InstantSearch iOS is a library that helps you integrate various search interfaces with Algolia, built on top of the Swift API client.
Accelerates development
InstantSearch iOS provides out of the box components that work together: search box, list of results, filtering and sorting interfaces, hierarchical menu, federated search, suggestions, highlighting, loading and more.
It connects to Algolia servers, performs API calls for you and automatically updates the user interface with the latest state.
Manages complexity
InstantSearch iOS allows you to focus on the look and feel of your user interface, by handling the search-specific logic for you,
and simplifying management of complex state like filters, hierarchical menus or federated search.
Easy to integrate
InstantSearch easily fits into existing code: It follows a strict separation of concerns, has few dependencies, and doesn't make assumptions on how your app is built.
Customizable
Components shipped in InstantSearch can easily be customised and configured, from high-level parameters to custom presentation logic.
Most common search use-cases are covered with these components.
Beyond those, writing your own component is as easy as implementing a single interface.
InstantSearch is a powerful tool for builders that want to stay in control.
Get started with InstantSearch iOS now.
2.1.0
- Multi-Index functionality added to all widgets with the introduction of the index and variant field.
- Adding 2 new widgets:
MultiHitsTableWidget
andMultiHitsCollectionWidget
that can handle multiple indices in different sections. - Introduction of 6 ViewModels that encapsulate the business logic of the widgets. You can use them to easily access the search state for better customization.
SearchViewModel
,HitsViewModel
,MultiHitsViewModel
,NumericControlViewModel
,FacetControlViewModel
,RefinementMenuViewModel
.