Skip to content

Releases: futuredapp/arkitekt

2.1.2

26 Nov 21:55
416e271
Compare
Choose a tag to compare

Bugfixes

  • Fixed possible uncatched errors #85

2.1.1

26 Nov 14:16
8930055
Compare
Choose a tag to compare

Bugfixes

  • Fixed possible race condition causing application crashes when using coroutines interactors #83

2.1.0

12 Oct 09:08
1ae11da
Compare
Choose a tag to compare

New features

  • Added new Interactors based on coroutines
  • Added gradle plugin for downloading file templates

Other

  • Added deployment scripts for deploy to Gradle Plugin Portal and JCenter

2.0.0

14 Aug 08:05
bbf4d29
Compare
Choose a tag to compare

API enhancements

Documentation changes

  • Added Stores Readme section and example implementation

Other

  • Latest version uses Dagger 2.24, for migration guide see Dagger release

1.1.0

30 Apr 11:39
525a050
Compare
Choose a tag to compare

API enhancements

Other

  • minSdkVersion decreased to version 18

1.0.0

12 Apr 05:42
50f6a67
Compare
Choose a tag to compare

Summary

Version 1.0.0 is finally out! 🎉

API enhancements

  • Added BaseMayber
  • Added new module binding-adapters with some commonly used ones
  • Removed unused generics in multiple architecture classes
  • Custom LiveData operators map, switchMap and distinctUntilChanged are now deprecated. Use AndroidX variant from livedata-core-ktx artifact.

Bugfixes

  • Activity ViewModel returned in BaseBindingFragment's method getActivityViewModel now returns correct instance
  • Activity/Fragment viewModel and binding fields are now defined as val instead of lateinit var

Documentation changes

  • Added readme with basic usage description
  • Added comments directly to source code

Other

  • Migration script from version 0.2.X to 1.0.0. It automatically adds missing viewModelClass field in your ViewModel factories. Run it from the root of your project.

0.2.1

27 Feb 13:59
8ddedf4
Compare
Choose a tag to compare
Merge pull request #26 from thefuntasty/hotfix/view-lifecycle-owner

Use proper Fragment viewLifecycleOwner

0.2.0

12 Feb 11:47
f0ef155
Compare
Choose a tag to compare
Merge pull request #23 from thefuntasty/feature/disposables-owner

Add DisposablesOwner

0.1.1

01 Aug 08:31
546dfbf
Compare
Choose a tag to compare
  • fix getActivityViewModel generic type

0.1.0

22 May 10:02
a64e60e
Compare
Choose a tag to compare
  • add map and switchMap extension
  • add extension for observing DefaultValueMediatorLiveData in ViewModel
  • add BaseViewModelFragment without databinding