diff --git a/insights/CHANGELOG.md b/insights/CHANGELOG.md index 323ca35..84d417d 100644 --- a/insights/CHANGELOG.md +++ b/insights/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.1.0 + + - **FIX**(UserTokenStorage): Migrate from hive to hive_ce fix wasm runtime error (#21). + ## 1.0.2 - **FIX**(client): remove invalid `maxFacetHits` in `SearchForHits` extension (#153). diff --git a/insights/lib/src/user_token_storage.dart b/insights/lib/src/user_token_storage.dart index 58eb4a2..74e28d5 100644 --- a/insights/lib/src/user_token_storage.dart +++ b/insights/lib/src/user_token_storage.dart @@ -1,4 +1,4 @@ -import 'package:hive/hive.dart'; +import 'package:hive_ce/hive.dart'; import 'package:logging/logging.dart'; import 'package:path_provider/path_provider.dart'; import 'package:uuid/uuid.dart'; diff --git a/insights/pubspec.yaml b/insights/pubspec.yaml index 5ddaf9d..e15907a 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.2 +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/insights @@ -12,7 +12,7 @@ dependencies: collection: ">=1.17.0 <2.0.0" flutter: sdk: flutter - hive: ">=2.0.0 <3.0.0" + hive_ce: "^2.10.1" logging: ">=1.0.0 <2.0.0" meta: ">=1.7.0 <2.0.0" path_provider: ">=2.0.0 <3.0.0"