Skip to content

Commit

Permalink
Updates the commit hash for the transitive Hive dependencies workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
Rexios80 committed Dec 26, 2024
1 parent 18f92b5 commit cad6a65
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 3 deletions.
4 changes: 4 additions & 0 deletions hive/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.8.0+3

- Updates the commit hash for the transitive Hive dependencies workaround

## 2.8.0+2

- Adds workaround for transitive Hive dependencies to README
Expand Down
2 changes: 1 addition & 1 deletion hive/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ dependency_overrides:
hive:
git:
url: https://github.com/IO-Design-Team/hive_ce
ref: f8172d4b88b195eea1b1d07e3397332dc77a91ae
ref: 18f92b53295e9eb77ebd4830d905a72cd404a126
path: overrides/hive
```
Expand Down
2 changes: 1 addition & 1 deletion hive/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: hive_ce
description: Hive Community Edition - A spiritual continuation of Hive v2
version: 2.8.0+2
version: 2.8.0+3
homepage: https://github.com/IO-Design-Team/hive_ce/tree/main/hive
documentation: https://docs.hivedb.dev/

Expand Down
4 changes: 4 additions & 0 deletions overrides/hive/example/lib/main.dart
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
import 'package:hive/hive.dart';
import 'package:hive/src/hive_impl.dart';

void main() async {
Hive.init('test');
final box = await Hive.openBox('test');
box.put('key', 'value');
print(box.get('key'));

final impl = HiveImpl();
impl.box('test');
}
2 changes: 1 addition & 1 deletion overrides/hive/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ dependency_overrides:
hive:
git:
url: https://github.com/IO-Design-Team/hive_ce
ref: f8172d4b88b195eea1b1d07e3397332dc77a91ae
ref: 18f92b53295e9eb77ebd4830d905a72cd404a126
path: overrides/hive

0 comments on commit cad6a65

Please sign in to comment.