Skip to content

Releases: hoc081098/flutter_bloc_pattern

2.3.0 - Jun 3, 2022

03 Jun 06:59
Compare
Choose a tag to compare

https://pub.dev/packages/flutter_bloc_pattern/versions/2.3.0

  • Update rxdart_ext to 0.2.2.

What's Changed

  • chore(deps): update codecov/codecov-action action to v3 by @renovate in #22
  • fix(deps): update dependency rxdart_ext to ^0.2.0 by @renovate in #20
  • chore(deps): update subosito/flutter-action action to v2 by @renovate in #19
  • chore(deps): update actions/checkout action to v3 by @renovate in #18

Full Changelog: 2.2.0...2.3.0

2.2.0 - Sep 23, 2021

23 Sep 19:49
Compare
Choose a tag to compare

https://pub.dev/packages/flutter_bloc_pattern/versions/2.2.0

  • Update dependencies:
    • rxdart_ext to 0.1.2.
    • flutter_provider to 2.1.0.
  • Change sdk constraint >=2.14.0 <3.0.0 and flutter constraint >=2.5.0.
  • Migrated from pedantic to flutter_lints.
  • Added RxStreamBuilder.checkStateStreamEnabled allows checking invalid state caused by StateStreams.
    // enabled when running in debug or profile mode
    RxStreamBuilder.checkStateStreamEnabled = !kReleaseMode;

2.1.1 - May 21, 2021

21 May 08:19
Compare
Choose a tag to compare

https://pub.dev/packages/flutter_bloc_pattern/versions/2.1.1

  • Fix RxStreamBuilder: missing pass Key? key to parent constructor.

2.1.0 - May 10, 2021

10 May 04:40
Compare
Choose a tag to compare

https://pub.dev/packages/flutter_bloc_pattern/versions/2.1.0

  • Update rxdart to 0.27.0.
  • RxStreamBuilder now accepts a ValueStream.

2.0.0 - Mar 3, 2021

03 Mar 01:54
Compare
Choose a tag to compare
  • Stable release for null safety.

2.0.0-nullsafety.1 - Jan 21, 2021

21 Jan 13:07
Compare
Choose a tag to compare
  • Makes RxStreamBuilder extends StreamBuilder.

2.0.0-nullsafety.0 - Jan 20, 2021

20 Jan 17:55
Compare
Choose a tag to compare
  • Migrate this package to null safety.
  • Sdk constraints: >=2.12.0-0 <3.0.0 based on beta release guidelines.
  • Depends on flutter_provider package.
    So bloc will be created lazy i.e. on the first access.
  • Added extension BuildContext.bloc<T>({bool listen = false}). It is identical with BlocProvider<T>.of(BuildContext, {bool listen = false}).
  • Changed signature of builder in RxStreamBuilder(builder: ) constructor to Widget Function(BuildContext, T?).
    Previous signature is Widget Function(BuildContext, AsyncSnapshot<T>).
  • Fixed many issues.
  • Many improvements.

1.2.0 - Apr 23, 2020

22 Apr 17:40
Compare
Choose a tag to compare

1.2.0 - Apr 23, 2020

  • Breaking change: support for rxdart 0.24.x.

1.1.2 - 07 February 2020

07 Feb 02:19
Compare
Choose a tag to compare

1.1.2 - 07 February 2020

  • Remove assert(child != null) and @required child in BlocProvider constructor

1.1.1 - 07 February 2020

07 Feb 01:59
Compare
Choose a tag to compare

1.1.1 - 07 February 2020

  • Add DisposeCallbackBaseBloc
  • Add BlocProviders