Releases: NoTests/RxFeedback.swift
Releases · NoTests/RxFeedback.swift
Six
14 Jan 05:56
Compare
Sorry, something went wrong.
No results found
Universal
09 Feb 18:28
Compare
Sorry, something went wrong.
No results found
Renames Mutation to Event.
Removes deprecated APIs.
Adds the most general version of feedback loop
public func react< State, Request: Equatable , RequestID, Event> (
requests: @escaping ( State ) -> [ RequestID : Request ] ,
effects: @escaping ( _ initial: Request , _ state: Observable < Request > ) -> Observable < Event >
) -> ( ObservableSchedulerContext < State > ) -> Observable < Event > {
Simpler feedback loops are now just a specialization of the general one.
Removes hacky versions of feedback loops that existed because Swift compiler didn't generate automatic Equality conformance.
1.1.1
13 Nov 19:02
Compare
Sorry, something went wrong.
No results found
Fixes problem building with Carthage. #41
1.1.0
21 Sep 20:54
Compare
Sorry, something went wrong.
No results found
Xcode 10 compatbility
Renames Event to Mutation.
1.0.3
13 Jun 21:57
Compare
Sorry, something went wrong.
No results found
Fixes problem with feedback loop termination.
1.0.2
06 Dec 12:45
Compare
Sorry, something went wrong.
No results found
Fixes duplicated plist inclusion.
1.0.1
09 Nov 08:12
Compare
Sorry, something went wrong.
No results found
Fixes leak in Hashable overload of react feedback loop.
Shares final guard against reentrancy (if feedback loops have implementation issue and are synchronous) between all feedback loops.
1.0.0
22 Oct 21:57
Compare
Sorry, something went wrong.
No results found
Deprecates UI.* in favor of free methods.
Deprecates feedback loops of the form Driver<State> -> Driver<Event> in favor of Driver<State> -> Signal<Event>.
Adaptations for RxSwift 4.0.0.
0.3.3
10 Sep 22:42
Compare
Sorry, something went wrong.
No results found
Adds reentrancy guards to UI.bind feedback loop (Driver version).
0.3.2
02 Sep 10:59
Compare
Sorry, something went wrong.
No results found
Includes additional reentrancy checks in DEBUG builds.