Skip to content

Latest commit

 

History

History
420 lines (183 loc) · 9.72 KB

CHANGELOG.md

File metadata and controls

420 lines (183 loc) · 9.72 KB

0.9.1 (2015-10-18)

Bug Fixes

  • don't use array destructuring to avoid the use of Symbol (db1af75)

0.9.0 (2015-10-17)

Features

BREAKING CHANGES

  • isActive will now ignore query parameters by default.

0.8.0 (2015-10-12)

Features

  • move updating browser history into separate function (f758912)

0.7.1 (2015-10-11)

0.7.0 (2015-10-11)

Features

  • support arrays in query parameters (route-node v0.4.0) (12a2ac8)

0.6.4 (2015-09-15)

Bug Fixes

  • deactivation path, activation path and node listener for same route names with different params (fa985d2), closes #27

0.6.3 (2015-09-11)

Bug Fixes

  • use popstate state if cannot deactivate (c608d03)

0.6.2 (2015-09-08)

Bug Fixes

  • handle popstate events in a saner way (883da81)

0.6.1 (2015-09-07)

Bug Fixes

  • fix popstate issues (browser forward button (105a00d)

0.6.0 (2015-09-04)

Features

  • update to 0.3.x version of route-node with nested query parameters handling (99b7bb2)

0.5.5 (2015-09-04)

Bug Fixes

  • call error callbacks with right arguments (bde616c)

0.5.4 (2015-09-04)

Bug Fixes

  • don't set base if useHash is falsy or if it has been provided (66ae677)
  • invoke error callbacks in places where it is not called (92f9719), closes #22

0.5.3 (2015-09-01)

0.5.2 (2015-09-01)

0.5.1 (2015-08-31)

Features

  • add matchUrl for matching full URLs (22daedd)

0.5.0 (2015-08-24)

Features

  • support optional trailing slashes in URL (60ba973)

0.4.2 (2015-07-29)

Features

  • add transition hooks (onTransitionStart, onTransitionCancel, onTransitionError) (d166cb0)

0.4.1 (2015-07-29)

Bug Fixes

  • update route-node dep version to improve node children matching order (ff1516d)

0.4.0 (2015-07-29)

Bug Fixes

  • improve handling of arguments in start function (e17ed69)
  • replace history state on start when supplying a starting state (43127f2)

Features

  • add support for onTransition middleware function (259065f)

0.3.1 (2015-07-27)

Bug Fixes

0.3.0 (2015-07-27)

Bug Fixes

  • onPopState listener removal (0d5fea1)

Features

  • add option to pass a start path or state to .start() (cbc39ae)
  • support universal javascript applications (be5b6da)

0.2.7 (2015-07-24)

Features

  • v0.2.7 adds support for IE10 and IE11 (cd805ef)

0.2.6 (2015-07-23)

Bug Fixes

  • don't push state on popstate when no error (98b9215), closes #11

0.2.5 (2015-07-23)

Bug Fixes

  • Commonjs and UMD release (05811a8)

Features

  • call unnamed root node listener on first route transition (toState is null) (618ef81)

0.2.4 (2015-07-23)

Bug Fixes

  • double slash in paths (base path parsing) (7820a3b)

Features

  • add base option for applications not using hash and having a non-empty base path (42ea04e)
  • add error codes to Router5 (Router5.ERR) (ac6b0bb)

0.2.3 (2015-07-23)

Bug Fixes

  • better route matching by improving matching order (2ce0605)

Features

0.2.2 (2015-07-23)

Bug Fixes

  • don't invoke callback if not present in start (3ecc838)

0.2.1 (2015-07-22)

Bug Fixes

  • call transition on start when matched route present (call canActivate methods) (0efc4e6)

0.2.0 (2015-07-21)

Bug Fixes

  • take into account search part of URL when matching a path (535f98c)

Features

  • add support for a canActivate method per route (424c987)
  • limit node listeners to one per node (a4ed868)
  • support asynchronous results for canActivate, canDeactivate and node listeners (445892a)

0.1.0 (2015-07-16)

Features

  • add support for hashPrefix option (cdcd5e3), closes #1

0.1.0-rc.7 (2015-07-09)

Bug Fixes

  • bugs related to getting location (4c6a1d2)

Features

  • don't bind listeners to router instance (1a7246d)
  • improve isActive function (strict equality an option) (732816f)

0.1.0-rc.5 (2015-07-07)

Bug Fixes

  • duplicated use strict in browser dist (fe77f3c)
  • take into account initial path (5188f47)

Features

  • add isActive(name, params) function (26303da)

0.1.0-rc.3 (2015-07-06)

Features

  • make listeners chainable and return transition result in navigate (f725296)
  • node listeners on unamed root node (b52beb2)

0.0.1-alpha.9 (2015-07-03)

Features

  • add route listeners (ff554f7)
  • react to manual change in URL (1e35d18)

0.0.1-alpha.7 (2015-07-03)

Bug Fixes

  • update lastKnownState before invoking callbacks (8904cfd)

Features

  • add setOption(opt, val) chainable method (b45b0de)

0.0.1-alpha.5 (2015-07-02)

Bug Fixes

  • order of components deactivation (a7b7ed3)

Features

  • add addNode chainable function (49f1238)
  • expose areStatesEqual function and add hash to buildPath function if useHash is (337b4e5)

0.0.1-alpha.3 (2015-07-02)

Bug Fixes

  • bug with reload option and same states (2317287)

Features

  • add Router5 class with basic functionalities (c72be0b)
  • add hash support and default route (086ead0)
  • add start and add methods and make them chainable with constructor (4808750)
  • add stop function and started flag (ea30ac6)
  • do not push to history if states are the same and support reload option (9734c8a)
  • register callbacks on specific nodes (392a647)
  • request component deactivation on route transition (78c1a51)