diff --git a/CHANGELOG.md b/CHANGELOG.md index f899c6e..65130b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,41 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 2024-07-17 + +### Changes + +--- + +Packages with breaking changes: + + - There are no breaking changes in this release. + +Packages with other changes: + + - [`algolia_helper_flutter` - `v1.1.0`](#algolia_helper_flutter---v110) + - [`algolia_insights` - `v1.0.1`](#algolia_insights---v101) + +--- + +#### `algolia_helper_flutter` - `v1.1.0` + + - **REFACTOR**(FacetList): refactor facet list component (#118). + - **FIX**(search-state): add support for `analyticsTags` (#141). + - **FIX**(HitsSearcher): non-initialized EventTracker (#123). + - **FIX**(facetlist): multiple facet toggle (#120). + - **FIX**(facet): export facet model (#112). + - **FEAT**(searcher): add `ClientOptions` to `MultiSearcher` and `FacetSearcher` (#132). + - **FEAT**(searcher): add client options (#131). + +#### `algolia_insights` - `v1.0.1` + + - **REFACTOR**(FacetList): refactor facet list component (#118). + - **FIX**(facetlist): multiple facet toggle (#120). + - **FIX**(insights): avoid empty payload in Insights events (#116). + - **FIX**(facetlist): add missing filter attribute for insights event (#115). + + ## 2024-04-11 ### Changes diff --git a/helper/CHANGELOG.md b/helper/CHANGELOG.md index 63f6eba..4578ca0 100755 --- a/helper/CHANGELOG.md +++ b/helper/CHANGELOG.md @@ -1,3 +1,13 @@ +## 1.1.0 + + - **REFACTOR**(FacetList): refactor facet list component (#118). + - **FIX**(search-state): add support for `analyticsTags` (#141). + - **FIX**(HitsSearcher): non-initialized EventTracker (#123). + - **FIX**(facetlist): multiple facet toggle (#120). + - **FIX**(facet): export facet model (#112). + - **FEAT**(searcher): add `ClientOptions` to `MultiSearcher` and `FacetSearcher` (#132). + - **FEAT**(searcher): add client options (#131). + ## 1.0.0 - **FIX**(HitsSearcher): non-initialized EventTracker (#123). diff --git a/helper/pubspec.yaml b/helper/pubspec.yaml index 35421e1..b77fdd7 100644 --- a/helper/pubspec.yaml +++ b/helper/pubspec.yaml @@ -1,13 +1,13 @@ name: algolia_helper_flutter description: Patterns and APIs to implement advanced search features with Algolia for Flutter -version: 1.0.0 +version: 1.1.0 homepage: https://www.algolia.com/doc/guides/building-search-ui/what-is-instantsearch/flutter/ repository: https://github.com/algolia/algoliasearch-helper-flutter/tree/main/helper environment: sdk: '>=3.0.0 <4.0.0' flutter: '>=1.17.0' dependencies: - algolia_insights: ^1.0.0 + algolia_insights: ^1.0.1 algoliasearch: ">=1.3.0 <2.0.0" collection: ">=1.17.0 <2.0.0" flutter: diff --git a/insights/CHANGELOG.md b/insights/CHANGELOG.md index c7fc704..5eef6d0 100644 --- a/insights/CHANGELOG.md +++ b/insights/CHANGELOG.md @@ -1,3 +1,10 @@ +## 1.0.1 + + - **REFACTOR**(FacetList): refactor facet list component (#118). + - **FIX**(facetlist): multiple facet toggle (#120). + - **FIX**(insights): avoid empty payload in Insights events (#116). + - **FIX**(facetlist): add missing filter attribute for insights event (#115). + ## 1.0.0 - **FIX**(HitsSearcher): non-initialized EventTracker (#123). diff --git a/insights/pubspec.yaml b/insights/pubspec.yaml index 4f4f502..b099c42 100644 --- a/insights/pubspec.yaml +++ b/insights/pubspec.yaml @@ -1,6 +1,6 @@ name: algolia_insights description: Algolia Insights for Dart provides a simple and flexible way to track events such as clicks, conversions, and views on search results. -version: 1.0.0 +version: 1.0.1 homepage: https://www.algolia.com/doc/guides/building-search-ui/what-is-instantsearch/flutter/ repository: https://github.com/algolia/algoliasearch-helper-flutter/tree/main/insights