- [Bug] Solved few health suggestion, to improve the health of the code.
- [Added] PR implementation of
multipleQueries
AlgoliaQuery queryA = algolia.instance.index('users').search('john'); AlgoliaQuery queryB = algolia.instance.index('jobs').search('business'); // Perform multiple facetFilters queryA = queryA.setFacetFilter('status:active'); queryA = queryA.setFacetFilter('isDelete:false'); // Perform multiple facetFilters queryB = queryB.setFacetFilter('isDelete:false'); // Get Result/Objects List<AlgoliaQuerySnapshot> snap = await algolia.multipleQueries.addQueries([queryA, queryB]).getObjects();
- [Bug] Solved a technical reported bug #11
- [Added] Copy, Move Index functionalities.
- [Added] PR implementation of
replaceAllObjects()
- [Bug] Solved few health suggestion, to improve the health of the code.
- [Bug]
.setFacetFilter(dynamic value)
can now accept String or List value. - [Added] AttributeForDistinct (Advance)
- [Added] Distinct (Advance)
- [Added] GetRankingInfo (Advance)
- [Added] ClickAnalytics (Advance)
- Added
facets
toAlgoliaQuerySnapshot
to list facets name with hits count.
- highlightResult [Bug] (commit ref: 0d76d24fe8aa347a0933920afe5ded43bdcbd68b)
- snippetResult [Implementation] (commit ref: 0d76d24fe8aa347a0933920afe5ded43bdcbd68b)
- Updated
example.dart
: Added index settings example. - Updated index
.setSettings()
response toAlgoliaTask
.
- Added support to manage index settings (Get & Set), limited to 24 settings parameters, more to be added in newer releases.
- OptionalFilter (Filtering)
- NumericFilter (Filtering)
- TagFilter (Filtering)
- SumOrFiltersScore (Filtering)
- AroundLatLng (Geo Search)
- AroundLatLngViaIP (Geo Search)
- AroundRadius (Geo Search)
- AroundPrecision (Geo Search)
- MinimumAroundRadius (Geo Search)
- InsideBoundingBox (Geo Search)
- InsidePolygon (Geo Search)
- MinWordSizefor1Typo (Typo)
- MinWordSizefor2Typos (Typo)
- TypoTolerance (Typo)
- AllowTyposOnNumericTokens (Typo)
- DisableTypoToleranceOnAttributes (Typo)
- DisableTypoToleranceOnWords (Typo)
- SeparatorsToIndex (Typo)
- Bug fixes.
- Removed Flutter direct dependency to support universal dart projects.
- Initial release.