- fix: use hooks.now if available (3ff0df4)
- fix: process hooks after createClass to allow for request specific hooks. (f3ac9df)
- Handle Falcor style observables from unhandled path datasource. (07ce5ff)
- Make rxNewToRxNewAndOld work with old observers missing onNext. (f407745)
- refactor(methodSummary): rename
responses
toresults
and nest undervalue
along withtime
. (26bbe63) - Update rxjs (b8aab6c)
0.7.0 (2017-01-27)
- methodSummary hooking: add methodSummary hooking to get, set and call (521fff3)
- routeSummary hook: The
routeSummary
hook has been removed in favor of themethodSummary
hook.
0.6.1 (2017-01-26)
0.6.0 (2017-01-20)
- error hook: Ensure error hook is called on MaxPathsExceededError (2f6e65f)
- error hook: Error hook will only pass error object (8fd2182)
- pathError hook: add pathError hook for errors identified while (816eccc)
- error hook: error hook arguments have changes. Now only the error itself is passed, not the path information.
0.5.2 (2017-01-13)
0.5.1 (2017-01-12)
- Rx: make sure all necessary operators are added for router internal use (eab1145)
0.5.0 (2017-01-11)
- routes: support routes returning Rx5 and Rx4 observables, as well as observables implementing
Symbol.observable
, such as Most.js. (d28d5b6) - get, set, call: support both Rx4 and Rx5+ formats (25cc985)
- hooks: add error hook to set, get and call (b0222b3)
get
,set
andcall
now return RxJS 5 observables. They've been patched to support Rx4 subscription style, however, the methods and operators on them will be different.flatMapLatest
will beswitchMap
, for example. For more information about operator changes, see the RxJS migration docs