bloc 6.1.2 bloc: ^6.1.2 copied to clipboard
A predictable state management library that helps implement the BLoC (Business Logic Component) design pattern.
6.1.2 #
- fix: bloc memory leak due to internal event stream being a broadcast stream
6.1.1 #
- fix:
close
should always emit done
6.1.0 #
- feat: add
onCreate
andonClose
toBlocObserver
6.0.3 #
- docs: README updates to include flow diagrams for
Bloc
andCubit
.
6.0.2 #
- refactor: cubit internal memory and performance optimizations
6.0.1 #
- docs: minor documentation fixes and improvements
6.0.0 #
- BREAKING: do not emit current state on subscription
- BREAKING:
onError
inBlocObserver
takes aCubit
as first parameter - BREAKING: allow blocs and cubits to emit the initial state
- feat: include
cubit
and remove external dependency on package:cubit- exports class
Cubit
- exports class
Change
(Transition
forCubit
)
- exports class
- feat:
onChange
added toBlocObserver
- refactor: apply additional lint rules
- fix: add
@visibleForTesting
toemit
on classCubit
- docs: fix inline documentation references
6.0.0-dev.2 #
- fix: add
@visibleForTesting
toemit
on classCubit
6.0.0-dev.1 #
- BREAKING: do not emit current state on subscription
- BREAKING:
onError
inBlocObserver
takes aCubit
as first parameter - BREAKING: allow blocs and cubits to emit the initial state
- feat: include
cubit
and remove external dependency on package:cubit- exports class
Cubit
- exports class
Change
(Transition
forCubit
)
- exports class
- feat:
onChange
added toBlocObserver
- refactor: apply additional lint rules
- docs: fix inline documentation references
5.0.1 #
- fix: upgrade to
cubit ^0.1.2
- docs: minor documentation updates
5.0.0 #
- BREAKING: remove
initialState
override in favor of providing the initial state via super (#1304). - BREAKING: Remove
BlocSupervisor
and renameBlocDelegate
toBlocObserver
. - feat: support
null
states (#1312). - refactor: bloc to extend cubit rather than
Stream
. - feat: ignore newly added events after bloc is closed (#1236).
- feat: add
addError
to conform toEventSink
interface. - feat: mark
onError
,onTransition
,onEvent
asprotected
. - docs: documentation improvements
- docs: logo updates
5.0.0-dev.11 #
- feat: add
addError
to conform toEventSink
interface. - feat: mark
onError
,onTransition
,onEvent
asprotected
.
5.0.0-dev.10 #
- docs: additional minor improvement to bloc logo alignment
5.0.0-dev.9 #
- docs: minor improvement to bloc logo alignment
5.0.0-dev.8 #
- BREAKING: Remove
BlocSupervisor
and renameBlocDelegate
toBlocObserver
.
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.