All Versions
29
Latest Version
Avg Release Cycle
82 days
Latest Release
1037 days ago

Changelog History
Page 1

  • v9.1.0 Changes

    June 23, 2021
    • โž• Add uniqueRouteNameSep option to generateUrls(router, options) to allow non-unique route names among different branches of nested routes and access them by uniquely generated name (#194)
  • v9.0.1 Changes

    March 11, 2020
    • ๐Ÿ›  Fix typings: router.resolve() and context.next() always return a promise now (#187)
  • v9.0.0 Changes

    February 27, 2020
  • v8.3.0 Changes

    September 17, 2019
    • ๐Ÿ‘‰ Make generateUrls compatible with UniversalRouterSync (#172)
  • v8.2.1 Changes

    July 19, 2019
    • ๐Ÿ›  Fix context.next() to throw Route not found instead of TypeError (#169)
  • v8.2.0 Changes

    May 10, 2019
    • ๐Ÿ‘Œ Improve TypeScript typings (#167)
  • v8.1.0 Changes

    February 20, 2019
  • v8.0.0 Changes

    January 15, 2019
  • v7.0.0 Changes

    October 11, 2018
    • The router no longer mutate errors to avoid issues with non-extensible objects. (BREAKING CHANGE #158).

    Migration from v6 to v7:

    • If your code relies on error.context or error.code you still can access them using errorHandler option: js errorHandler(error, context) { const code = error.status || 500 console.log(error, context, code) }
  • v6.0.0 Changes

    February 06, 2018
    • ๐Ÿ”ง No special configuration is required for your bundler anymore (say hi to parcel.js).
    • โž• Add an option for global error handling (#147).

    Migration from v5 to v6:

    • ๐Ÿ‘‰ Use error.code instead of error.status or error.statusCode for error handling.