Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

před 3 roky
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. 1.7.0 / 2016-11-08
  2. ==================
  3. * Allow a `delimiter` option to be passed in with `tokensToRegExp` which will be used for "non-ending" token match situations
  4. 1.6.0 / 2016-10-03
  5. ==================
  6. * Populate `RegExp.keys` when using the `tokensToRegExp` method (making it consistent with the main export)
  7. * Allow a `delimiter` option to be passed in with `parse`
  8. * Updated TypeScript definition with `Keys` and `Options` updated
  9. 1.5.3 / 2016-06-15
  10. ==================
  11. * Add `\\` to the ignore character group to avoid backtracking on mismatched parens
  12. 1.5.2 / 2016-06-15
  13. ==================
  14. * Escape `\\` in string segments of regexp
  15. 1.5.1 / 2016-06-08
  16. ==================
  17. * Add `index.d.ts` to NPM package
  18. 1.5.0 / 2016-05-20
  19. ==================
  20. * Handle partial token segments (better)
  21. * Allow compile to handle asterisk token segments
  22. 1.4.0 / 2016-05-18
  23. ==================
  24. * Handle RegExp unions in path matching groups
  25. 1.3.0 / 2016-05-08
  26. ==================
  27. * Clarify README language and named parameter token support
  28. * Support advanced Closure Compiler with type annotations
  29. * Add pretty paths options to compiled function output
  30. * Add TypeScript definition to project
  31. * Improved prefix handling with non-complete segment parameters (E.g. `/:foo?-bar`)
  32. 1.2.1 / 2015-08-17
  33. ==================
  34. * Encode values before validation with path compilation function
  35. * More examples of using compilation in README
  36. 1.2.0 / 2015-05-20
  37. ==================
  38. * Add support for matching an asterisk (`*`) as an unnamed match everything group (`(.*)`)
  39. 1.1.1 / 2015-05-11
  40. ==================
  41. * Expose methods for working with path tokens
  42. 1.1.0 / 2015-05-09
  43. ==================
  44. * Expose the parser implementation to consumers
  45. * Implement a compiler function to generate valid strings
  46. * Huge refactor of tests to be more DRY and cover new parse and compile functions
  47. * Use chai in tests
  48. * Add .editorconfig
  49. 1.0.3 / 2015-01-17
  50. ==================
  51. * Optimised function runtime
  52. * Added `files` to `package.json`
  53. 1.0.2 / 2014-12-17
  54. ==================
  55. * Use `Array.isArray` shim
  56. * Remove ES5 incompatible code
  57. * Fixed repository path
  58. * Added new readme badges
  59. 1.0.1 / 2014-08-27
  60. ==================
  61. * Ensure installation works correctly on 0.8
  62. 1.0.0 / 2014-08-17
  63. ==================
  64. * No more API changes
  65. 0.2.5 / 2014-08-07
  66. ==================
  67. * Allow keys parameter to be omitted
  68. 0.2.4 / 2014-08-02
  69. ==================
  70. * Code coverage badge
  71. * Updated readme
  72. * Attach keys to the generated regexp
  73. 0.2.3 / 2014-07-09
  74. ==================
  75. * Add MIT license
  76. 0.2.2 / 2014-07-06
  77. ==================
  78. * A passed in trailing slash in non-strict mode will become optional
  79. * In non-end mode, the optional trailing slash will only match at the end
  80. 0.2.1 / 2014-06-11
  81. ==================
  82. * Fixed a major capturing group regexp regression
  83. 0.2.0 / 2014-06-09
  84. ==================
  85. * Improved support for arrays
  86. * Improved support for regexps
  87. * Better support for non-ending strict mode matches with a trailing slash
  88. * Travis CI support
  89. * Block using regexp special characters in the path
  90. * Removed support for the asterisk to match all
  91. * New support for parameter suffixes - `*`, `+` and `?`
  92. * Updated readme
  93. * Provide delimiter information with keys array
  94. 0.1.2 / 2014-03-10
  95. ==================
  96. * Move testing dependencies to `devDependencies`
  97. 0.1.1 / 2014-03-10
  98. ==================
  99. * Match entire substring with `options.end`
  100. * Properly handle ending and non-ending matches
  101. 0.1.0 / 2014-03-06
  102. ==================
  103. * Add `options.end`
  104. 0.0.2 / 2013-02-10
  105. ==================
  106. * Update to match current express
  107. * Add .license property to component.json