Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions insights/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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).
Expand Down
2 changes: 1 addition & 1 deletion insights/lib/src/user_token_storage.dart
Original file line number Diff line number Diff line change
@@ -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';
Expand Down
4 changes: 2 additions & 2 deletions insights/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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"
Expand Down