Skip to content
Merged
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 hive/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.19.2

- Updates `isolate_channel` to `0.6.0`

## 2.19.1

- Updates `isolate_channel` to `0.4.0`
Expand Down
2 changes: 1 addition & 1 deletion hive/lib/src/isolate/handler/isolate_entry_point.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import 'package:hive_ce/src/isolate/handler/isolated_hive_handler.dart';
import 'package:isolate_channel/isolate_channel.dart';

/// The entry point for the Hive isolate
void isolateEntryPoint(SendPort send) {
void isolateEntryPoint(SendPort? send) {
final connection = setupIsolate(send);

final hiveChannel = IsolateMethodChannel('hive', connection);
Expand Down
4 changes: 2 additions & 2 deletions 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.19.1
version: 2.19.2
homepage: https://github.com/IO-Design-Team/hive_ce/tree/main/hive

topics:
Expand All @@ -18,7 +18,7 @@ dependencies:
meta: ^1.14.0
crypto: ^3.0.0
web: ">=0.5.0 <2.0.0"
isolate_channel: ^0.4.0
isolate_channel: ^0.6.0
json_annotation: ^4.9.0

dev_dependencies:
Expand Down