Skip to content

Releases: RxSwiftCommunity/RxFlow

Europa

27 Apr 12:49
Compare
Choose a tag to compare

This release:

  • brings the usage of xcframeworks for the Carthage version.
  • replaces flatMapLatest with flatMap for the adapt function.

Atlantis

18 Aug 16:14
8114d47
Compare
Choose a tag to compare
  • fix (for real !) a reentrancy issue with forwardToCurrent.

Equinox

18 Aug 14:20
c585cb6
Compare
Choose a tag to compare
  • fix "Unhandled files" warnings in the Package.swift file
  • fix re-entrancy issue in the FlowCoordinator file
  • revert to a strong retain policy in the Reactive+UIViewController file (see version 2.12.0)

Antares

22 May 21:49
e85a544
Compare
Choose a tag to compare

This release restores the navigation on the main thread (regression spotted in the version 2.12.1)

Phoenix

19 Apr 21:04
0a96fa2
Compare
Choose a tag to compare

This release fixes a possible memory leak when the Coordinator's lifecycle was unexpectedly longer than the flow ones (thanks to @asiliuk)

Majestic

02 Jan 21:15
b0883bc
Compare
Choose a tag to compare

What you'll find in this release:

Galaxy

11 Oct 01:07
Compare
Choose a tag to compare

This Release:

  • fixes an issue with SPM
  • introduce the possibility to listen for steps event if a VC is dismissed (used for UIPageViewController, see the demo app)

Yamato

28 Sep 00:35
Compare
Choose a tag to compare

This Release mostly focuses on the upgrade to Xcode12/Swift 5.3

Melbourne

10 Sep 01:18
Compare
Choose a tag to compare

This release:

  • updates the Jazzy doc
  • fixes broken links in the Readme
  • fixes the behaviour of CompositeStepper (readyToEmitSteps() was not called for inner steppers) (#154)

Relativity

26 May 19:17
Compare
Choose a tag to compare

This release brings:

  • a way to push a step through all the Flows hierarchy from the FlowCoordinator. It can be useful for deep linking: flowCoordinator.navigate(to:)
  • a new syntax for navigating with multiple flows:
    Flows.whenReady() is deprecated. You should instead use: Flows.use(when:) (see the example in the Readme.md and the demo application).