bloc_signals 0.1.10
bloc_signals: ^0.1.10 copied to clipboard
A synchronous state management container integrating BLoC patterns with Rody Davis's signals package.
0.1.10 #
- Remove pre-release Dart SDK constraints in favor of stable
^3.10.0. - Update documentation and structure the primary BLoC-to-BlocSignal migration guide inside a consumable AI coding assistant skill.
0.1.9 #
- Widen Dart SDK constraint to include pre-release versions of Dart
3.10.0.
0.1.8 #
- Relax Dart SDK constraints to
^3.10.0and relaxmetapackage version constraints.
0.1.7 #
- Add BLoC-compatible
on<Event>API handler registration registry.
0.1.6 #
- Fix relative Migration Guide link in README for pub.dev.
0.1.5 #
- Add assertion to throw
AssertionErrorin debug/development mode whenemit()is called afterclose().
0.1.4 #
- Fix runtime TypeError when async
onEventreturns a non-nullable Future type.
0.1.3 #
- Support asynchronous
onEventhandlers (FutureOr<void>). - Implement zone-based transition event context tracing.
0.1.2 #
- Implement
isClosedand drop events/state updates after disposal.
0.1.1 #
- Add Cubit migration guide to documentation.
0.1.0 #
- Initial release of core
bloc_signalsstate management primitives. - Integrates Rody Davis's
signalspackage with BLoC design patterns.