Skip to content

Commit

Permalink
feat: Replace hive with hive_ce.
Browse files Browse the repository at this point in the history
fixes #161
  • Loading branch information
llfbandit committed Dec 8, 2024
1 parent c73e895 commit 4c5b85d
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 33 deletions.
3 changes: 3 additions & 0 deletions dio_cache_interceptor_hive_store/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 4.0.0
- feat: Replace `hive` with `hive_ce`.

## 3.2.2
- chore: Updated dependencies.

Expand Down
5 changes: 5 additions & 0 deletions dio_cache_interceptor_hive_store/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# dio_cache_interceptor_hive_store

Hive cache store implementation.

Version 3.x => [hive](https://pub.dev/packages/hive)
Version 4.x => [hive_ce](https://pub.dev/packages/hive_ce)

Version 3 is no more maintained.
14 changes: 0 additions & 14 deletions dio_cache_interceptor_hive_store/build.yaml

This file was deleted.

22 changes: 7 additions & 15 deletions dio_cache_interceptor_hive_store/example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ packages:
dependency: transitive
description:
name: collection
sha256: f092b211a4319e98e5ff58223576de6c2803db36221657b46c82574721240687
sha256: ee67cb0715911d28db6bf4af1026078bd6f0128b07a5f66fb2ed94ec6783c09a
url: "https://pub.dev"
source: hosted
version: "1.17.2"
version: "1.18.0"
crypto:
dependency: transitive
description:
Expand Down Expand Up @@ -98,18 +98,18 @@ packages:
dependency: transitive
description:
name: material_color_utilities
sha256: "9528f2f296073ff54cb9fee677df673ace1218163c3bc7628093e7eed5203d41"
sha256: f7142bb1154231d7ea5f96bc7bde4bda2a0945d2806bb11670e30b850d56bdec
url: "https://pub.dev"
source: hosted
version: "0.5.0"
version: "0.11.1"
meta:
dependency: transitive
description:
name: meta
sha256: "3c74dbf8763d36539f114c799d8a2d87343b5067e9d796ca22b5eb8437090ee3"
sha256: bdb68674043280c3428e9ec998512fb681678676b3c54e773629ffe74419f8c7
url: "https://pub.dev"
source: hosted
version: "1.9.1"
version: "1.15.0"
path:
dependency: transitive
description:
Expand Down Expand Up @@ -243,14 +243,6 @@ packages:
url: "https://pub.dev"
source: hosted
version: "2.1.4"
web:
dependency: transitive
description:
name: web
sha256: dc8ccd225a2005c1be616fe02951e2e342092edf968cf0844220383757ef8f10
url: "https://pub.dev"
source: hosted
version: "0.1.4-beta"
win32:
dependency: transitive
description:
Expand All @@ -268,5 +260,5 @@ packages:
source: hosted
version: "1.0.3"
sdks:
dart: ">=3.1.0 <4.0.0"
dart: ">=3.3.0-0 <4.0.0"
flutter: ">=3.7.0"
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import 'package:dio_cache_interceptor/dio_cache_interceptor.dart';
import 'package:hive/hive.dart';
import 'package:hive_ce/hive.dart';

/// A store saving responses using hive.
///
Expand Down
6 changes: 3 additions & 3 deletions dio_cache_interceptor_hive_store/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
name: dio_cache_interceptor_hive_store
description: A DB cache store implementation with Hive for dio_cache_interceptor package.
homepage: https://github.com/llfbandit/dio_cache_interceptor/tree/master/dio_cache_interceptor_hive_store
version: 3.2.2
version: 4.0.0

environment:
sdk: ">=2.14.0 <4.0.0"

dependencies:
dio_cache_interceptor: ^3.4.4

# https://pub.dev/packages/hive
hive: ^2.0.5
# https://pub.dev/packages/hive_ce
hive_ce: ^2.8.0

dev_dependencies:
# https://pub.dev/packages/lints
Expand Down

0 comments on commit 4c5b85d

Please sign in to comment.