Skip to content

Latest commit

 

History

History
129 lines (59 loc) · 4.67 KB

CHANGELOG.md

File metadata and controls

129 lines (59 loc) · 4.67 KB

0.8.3 (2018-04-12)

  • fix: use hooks.now if available (3ff0df4)

0.8.2 (2018-04-12)

  • fix: process hooks after createClass to allow for request specific hooks. (f3ac9df)

0.8.1 (2017-06-01)

Bug Fixes

  • Handle Falcor style observables from unhandled path datasource. (07ce5ff)
  • Make rxNewToRxNewAndOld work with old observers missing onNext. (f407745)

0.8.0 (2017-02-14)

  • refactor(methodSummary): rename responses to results and nest under value along with time. (26bbe63)
  • Update rxjs (b8aab6c)

0.7.0 (2017-01-27)

Features

  • methodSummary hooking: add methodSummary hooking to get, set and call (521fff3)

BREAKING CHANGES

  • routeSummary hook: The routeSummary hook has been removed in favor of the methodSummary hook.

0.6.1 (2017-01-26)

Features

  • routeSummary: add route summary hook for gathering metrics and meta data from get (#205) (3ac8143)

0.6.0 (2017-01-20)

Bug Fixes

  • error hook: Ensure error hook is called on MaxPathsExceededError (2f6e65f)
  • error hook: Error hook will only pass error object (8fd2182)

Features

  • pathError hook: add pathError hook for errors identified while (816eccc)

BREAKING CHANGES

  • error hook: error hook arguments have changes. Now only the error itself is passed, not the path information.

0.5.2 (2017-01-13)

Bug Fixes

  • symbol-observable: dependency added appropriately (#202) (fbfa09b)

0.5.1 (2017-01-12)

Bug Fixes

  • Rx: make sure all necessary operators are added for router internal use (eab1145)

0.5.0 (2017-01-11)

Features

  • 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)

BREAKING CHANGES

  • get, set and call 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 be switchMap, for example. For more information about operator changes, see the RxJS migration docs

0.3.0 (2016-01-28)

Bug Fixes

  • empty-call: Call could not return nothing (ac3f206), closes #166

Features

  • onUnhandled:* decided on the name of the API. (0895ad5)
  • onUnhandled:* The call feature for unhandled paths. (2532999)
  • onUnhandled:* The set feature for unhandled paths. (d48bbb1)
  • onUnhandled:* UnhandledGet works as specced. (ed15ff2)