From 42a28ef288dfed461f3f8c9a8666bc62606d9504 Mon Sep 17 00:00:00 2001 From: Rexios Date: Mon, 2 Feb 2026 18:32:45 -0500 Subject: [PATCH] Updates `isolate_channel` to `0.6.0` --- hive/CHANGELOG.md | 4 ++++ hive/lib/src/isolate/handler/isolate_entry_point.dart | 2 +- hive/pubspec.yaml | 4 ++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/hive/CHANGELOG.md b/hive/CHANGELOG.md index c4f39257..bce12921 100644 --- a/hive/CHANGELOG.md +++ b/hive/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.19.2 + +- Updates `isolate_channel` to `0.6.0` + ## 2.19.1 - Updates `isolate_channel` to `0.4.0` diff --git a/hive/lib/src/isolate/handler/isolate_entry_point.dart b/hive/lib/src/isolate/handler/isolate_entry_point.dart index ff6fb1e5..a70cb4d7 100644 --- a/hive/lib/src/isolate/handler/isolate_entry_point.dart +++ b/hive/lib/src/isolate/handler/isolate_entry_point.dart @@ -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); diff --git a/hive/pubspec.yaml b/hive/pubspec.yaml index 56f7ab4d..4f161446 100644 --- a/hive/pubspec.yaml +++ b/hive/pubspec.yaml @@ -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: @@ -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: