bloc 5.0.0-dev.6 bloc: ^5.0.0-dev.6 copied to clipboard
A predictable state management library that helps implement the BLoC (Business Logic Component) design pattern.
5.0.0-dev.6 #
- Additional documentation optimizations.
5.0.0-dev.5 #
- Optimize documentation assets for smaller viewports.
5.0.0-dev.3 #
- Update documentation and static assets.
5.0.0-dev.2 #
- BREAKING: update
initialState
to be a required positional parameter (related issue).
5.0.0-dev.1 #
4.0.0 #
4.0.0-dev.4 #
- Surface Unhandled Bloc Errors in Debug Mode
- Internal testing improvements
4.0.0-dev.3 #
- Add
mustCallSuper
toonEvent
,onTransition
, andonError
4.0.0-dev.2 #
- Fix remove duplicate terminating state
4.0.0-dev.1 #
3.0.0 #
- Upgrade to
rxdart ^0.23.0
- Upgrade to
Dart >= 2.6.0
3.0.0-dev.1 #
- Upgrade to
rxdart ^0.23.0
1.0.1 #
- Bugfix: Exceptions thrown in
onTransition
are passed toonError
and should not break bloc functionality (#641) - Adhere to effective dart (#561)
- Documentation and Example Updates
1.0.0 #
dispatch
anddispose
removed- Documentation Updates
0.16.1 #
- Minor Documentation Updates
0.16.0 #
0.15.0 #
0.14.4 #
Additional Dependency and Documentation Updates.
0.14.3 #
Dependency and Documentation Updates.
0.14.1 #
Internal BlocDelegate
update and Documentation Updates.
0.14.0 #
BlocDelegate
initialization improvements and Documentation Updates.
BlocSupervisor().delegate = ...
is nowBlocSupervisor.delegate = ...
(#304).
0.13.0 #
Bloc
and BlocDelegate
Improvements, new Features, and Documentation Updates.
- Improved
dispose
to ignore pending events (#257). - Exposed
event
stream onBloc
similar tostate
stream to expose aStream
ofdispatched
events (#259). - Update to use
rxdart
version^0.22.0
(#265). BlocDelegate
methods include a reference to theBloc
instance (#259).- Added
onEvent
toBloc
andBlocDelegate
(#259).
0.12.0 #
Updated transform
to enable advanced event filtering and processing and Documentation Updates.
0.11.2 #
Added BlocDelegate
onError
and onTransition
mustCallSuper and Documentation Updates
0.11.1 #
Added dispose
mustCallSuper and Documentation Updates
0.11.0 #
Update mapEventToState
to remove unnecessary argument for currentState
Stream<S> mapEventToState(S currentState, E event)
->Stream<S> mapEventToState(E event)
- Documentation Updates
- Example Updates
0.10.0 #
Updated to rxdart ^0.21.0
and Documentation Updates
0.9.5 #
Minor Enhancements to Code Style and Documentation.
0.9.4 #
Calls to dispatch
after dispose
has been called trigger onError
in the Bloc
and BlocDelegate
.
0.9.3 #
Restrict rxdart
to ">=0.18.1 <0.21.0"
due to breaking changes.
0.9.2 #
Additional Minor Updates to Documentation
0.9.1 #
Minor Updates to Documentation
0.9.0 #
Bloc
and BlocDelegate
Error Handling
- Added
onError
toBloc
for local error handling. - Added
onError
toBlocDelegate
for global error handling.
0.8.4 #
Blocs handle exceptions thrown in mapEventToState
and documentation updates.
0.8.3 #
Minor Internal Improvements and Documentation Updates
0.8.2 #
Additional Minor Updates to Documentation
0.8.1 #
Minor Updates to Documentation
0.8.0 #
Blocs ignore duplicate states
0.7.8 #
Additional Minor Updates to Documentation
0.7.7 #
Additional Minor Updates to Documentation
0.7.6 #
Minor Updates to Documentation
0.7.5 #
Exposed currentState
in Bloc
- Updates to Documentation.
0.7.4 #
Updated mapEventToState
parameter name
Stream<S> mapEventToState(S state, E event)
->Stream<S> mapEventToState(S currentState, E event)
- Updates to Documentation.
- Updates to Example.
0.7.3 #
Minor Updates to Documentation
0.7.2 #
Transition
Fix
Bloc
withmapEventToState
which returns multiple states per event will now correctly report theTransitions
.
0.7.1 #
Improvements to Bloc
usage in pure Dart applications.
Bloc
state is seeded withinitialState
automatically
0.7.0 #
Added BlocSupervisor
and BlocDelegate
.
BlocSupervisor
notifiesBlocDelegate
ofTransitions
BlocDelegate
exposesonTransition
which is invoked for allBloc
Transitions
.
0.6.0 #
Transitions
and initialState
updates.
- Added
Transition
s andonTransition
- Made
initialState
required
0.5.2 #
Additional minor Updates to Documentation.
0.5.1 #
Minor Updates to Documentation
0.5.0 #
Moved Flutter Widgets to flutter_bloc package
0.4.2 #
Additional minor Updates to Documentation.
0.4.1 #
Minor Updates to Documentation.
0.4.0 #
Added BlocProvider
.
BlocProvider.of(context)
- Updates to Documentation.
- Updates to Example.
0.3.0 #
Updated mapEventToState
to take current state as an argument.
Stream<S> mapEventToState(E event)
->Stream<S> mapEventToState(S state, E event)
- Updates to Documentation.
- Updates to Example.
0.2.5 #
Additional Minor Updates to Documentation.
0.2.4 #
Additional Minor Updates to Documentation.
0.2.3 #
Additional Minor Updates to Documentation.
0.2.2 #
Additional Minor Updates to Documentation.
0.2.1 #
Minor Updates to Documentation.
0.2.0 #
Added Support for Stream Transformation
- Includes
Stream<E> transform(Stream<E> events)
- Updates to Documentation
0.1.2 #
Additional Minor Updates to Documentation.
0.1.1 #
Minor Updates to Documentation.
0.1.0 #
Initial Version of the library.
- Includes the ability to create a custom Bloc by extending
Bloc
class. - Includes the ability to connect presentation layer to
Bloc
by using theBlocBuilder
Widget.