Releases: kriasoft/universal-router
Releases · kriasoft/universal-router
Release list
1.1.0-beta.3 - 2016-04-08
- Fix
matchRoute()yielding the same route twice when it matches to both full and base URLs
1.1.0-beta.2 - 2016-04-08
match(routes, { path, ...context)now throws an error if a matching route was not found (BREAKING CHANGE)- If there is a top-level route with path equal to
/error, it will be used for error handling by convention
1.1.0-beta.1 - 2016-04-05
- Remove
Routerclass androuter.dispatch()method in favor of
match(routes, { path, ...context }), whereroutesis just a plain JavaScript objects containing
the list of routes (BREAKING CHANGE) - Add
context.end()method to be used from inside route actions - Update documentation and code samples
1.0.0-beta.1 - 2016-03-25
- Rename
react-routingtouniversal-router(BREAKING CHANGE) - Remove
router.on(path, ...actions)in favor ofrouter.route(path, ...actions)(BREAKING CHANGE) - Remove
new Router(on => { ... })initialization option in favor ofnew Router(routes)(BREAKING CHANGE) - Fix ESLint warnings; update unit tests
- Remove build tools related to project's homepage in favor of Easystatic
- Refactor project's homepage layout. See
docs/assets. - Clean up
package.json, update Babel and its plug-ins to the latest versions - Make the library use
babel-runtimepackage instead of an inline runtime - Add CHANGELOG.md file with the notable changes to this project
0.0.7 - 2015-12-13
- Small bug fixes and improvements