Releases: gregjacobs/Autolinker.js
Releases · gregjacobs/Autolinker.js
v3.10.0
- Match a 'mailto:' prefix as part of an email address (thanks @adamdavidcole!)
v3.0.4
- Export all Autolinker config interfaces from index.ts
v3.0.3
- Fix name of package in bower.json to be lowercase
v3.0.2
v3.0.1
v.3.0.0
Main Changes:
- Replaced the RegExp-based HTML Parser and EmailMatcher with linear-time state machine parsers (PRs #259 and #260). Closes #257, and improves performance across the board, especially with large strings
Breaking Changes:
- Removed
HtmlParser
class, replacing with an internalparseHtml()
function
v2.2.2
Use tslib
dependency to remove duplicate __extends
function in minified file. Saves 3kb
v2.2.1
- Increase Twitter mention length from 20 to 50 characters (Twitter usernames may now be 50 characters)
- Fix issue with mentions and hashtags where partial mentions/hashtags could be linked if they were above the prescribed number of allowed characters
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