Skip to content

Latest commit

 

History

History
14 lines (8 loc) · 283 Bytes

CHANGELOG.md

File metadata and controls

14 lines (8 loc) · 283 Bytes

v0.5.0

Breaking changes

  • UrlMatcher.urlParameterNames has been changed from a method to a getter. The client code must be updated accordingly:

    Before:

      var names = urlMatcher.urlParameterNames();
    

    After:

      var names = urlMatcher.urlParameterNames;