Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

CHANGELOG.md 3.4 KiB

il y a 3 ans
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. 2.2.0 / 2019-07-12
  2. ------------------
  3. - Improved quoted email detect (disable `"` at email start), #72.
  4. - Fix some google links (allow more consecutive `.`), #66.
  5. 2.1.0 / 2018-11-27
  6. ------------------
  7. - Allow `--` (and more dashes) in domain names, #63.
  8. 2.0.3 / 2016-12-09
  9. ------------------
  10. - Process `|` (asian vertical pipe 0xFF5C) as valid text separator.
  11. 2.0.2 / 2016-10-15
  12. ------------------
  13. - Allow dashes in local domains, #43.
  14. 2.0.1 / 2016-09-28
  15. ------------------
  16. - Restrict user:pass@... content - prohibit "()[]" chars in auth, #41.
  17. 2.0.0 / 2016-06-22
  18. ------------------
  19. - `---` no longer terminates link. Use option `{ '---': true }` to return old
  20. behaviour.
  21. - `.onCompile()` hook to modify base regexp constants.
  22. - Allow `foo'-bar` in path
  23. 1.2.4 / 2016-06-03
  24. ------------------
  25. - Consider `<` & `>` as invalid in links.
  26. - Support links in lt/gt braces: `<user@domain.com>`, `<http://example.com>`.
  27. 1.2.3 / 2016-05-31
  28. ------------------
  29. - Allow digits in local domains, #36.
  30. - Restrict user/pass (prohibit [@/] chars) to avoid wrong domain fetch.
  31. - More restrictions for protocol-transparent links. Don't allow single-level
  32. (local) domains, except '//localhost', #19.
  33. 1.2.2 / 2016-05-30
  34. ------------------
  35. - Security fix: due problem in `Any` class regexp from old `unicode-7.0.0`
  36. package (used in `uc-micro`), hang happend with astral char patterns like
  37. `😡😡😡😡😡😡😡😡😡😡😡😡😡😡😡😡😡😡😡😡😡😡😡😡😡😡😡😡😡😡😡😡😡😡😡 .com` if fuzzy
  38. options used. New installs will use fixed `uc-micro` automatically.
  39. Old installs need to be updated. #36.
  40. - Unicode rules updated to 8.+ version.
  41. 1.2.1 / 2016-04-29
  42. ------------------
  43. - Fix detect email after opening parenthesis: `(my@email.com)`, #32.
  44. 1.2.0 / 2015-06-29
  45. ------------------
  46. - Allow dash at the end of url, thanks to @Mumakil.
  47. 1.1.1 / 2015-06-09
  48. ------------------
  49. - Allow ".." in link paths.
  50. 1.1.0 / 2015-04-21
  51. ------------------
  52. - Added options to control fuzzy links recognition (`fuzzyLink: true`,
  53. `fuzzyEmail: true`, `fuzzyIP: false`).
  54. - Disabled IP-links without schema prefix by default.
  55. 1.0.1 / 2015-04-19
  56. ------------------
  57. - More strict default 2-characters tlds handle in fuzzy links, to avoid
  58. false positives for `node.js`, `io.js` and so on.
  59. 1.0.0 / 2015-03-25
  60. ------------------
  61. - Version bump to 1.0.0 for semver.
  62. - Removed `Cf` class from whitespace & punctuation sets (#10).
  63. - API change. Exported regex names renamed to reflect changes. Update your
  64. custom rules if needed:
  65. - `src_ZPCcCf` -> `src_ZPCc`
  66. - `src_ZCcCf` -> `src_ZCc`
  67. 0.1.5 / 2015-03-13
  68. ------------------
  69. - Fixed special chars handling (line breaks).
  70. - Fixed demo permalink encode/decode.
  71. 0.1.4 / 2015-03-12
  72. ------------------
  73. - Allow `..` and `...` inside of link paths (#9). Useful for github links with
  74. commit ranges.
  75. - Added `.pretest()` method for speed optimizations.
  76. - Autogenerate demo sample from fixtures.
  77. 0.1.3 / 2015-03-11
  78. ------------------
  79. - Maintenance release. Deps update.
  80. 0.1.2 / 2015-02-26
  81. ------------------
  82. - Fixed blockquoted links (some symbols exclusions), thanks to @MayhemYDG.
  83. - Fixed demo permalinks, thanks to @MayhemYDG.
  84. 0.1.1 / 2015-02-22
  85. ------------------
  86. - Moved unicode data to external package.
  87. - Demo permalink improvements.
  88. - Docs update.
  89. 0.1.0 / 2015-02-12
  90. ------------------
  91. - First release.