Releases: gregjacobs/Autolinker.js
Releases · gregjacobs/Autolinker.js
v2.2.0
- Allow unicode combining marks in URLs
v2.1.0
- Re-add
getPhoneNumber()
method toPhoneMatch
. This method name is a bit more clear thangetNumber()
. LeftgetNumber()
for backward compatibility
v2.0.0
- Convert codebase to TypeScript
- Add type declaration files to output
- Add commonjs / es2015 output in addition to the UMD output from v1.x
- Allow
Autolinker
to be imported using the ES6import
keyword, as well as other entities likeMatcher
,Match
, etc. - Allow Autolinker to work within webpack without any shimming
- Fix issue with minification of unicode escape sequences used in regular expression character classes
- Upgrade gulp from v3 to v4
- Update TLD regex
- Add integration tests for loading with Node.js's
require()
, ES6/TypeScriptimport
, UMD output file in browsers, and Webpack - Move live example to root-level folder
- Add test to make sure the live example is working
Closes #254
v1.8.3
Accidental tag - ignore
v1.8.2 v1.8.2
v1.8.1
Re-add dist/
folder for bower compatibility
v1.8.0
Add support for soundcloud mentions (thanks @Superjo149)
v1.7.1
- Fix for
compactMatches()
to correctly handle matches that are directly next to each other. Thanks @bgryszko!
v1.7.0
v1.6.2
- Improve regex performance for URL parsing (i.e. fix another case of potential catastrophic backtracking). Thanks @caseywebdev!