Skip to content

Releases: gregjacobs/Autolinker.js

v0.26.0

08 Apr 03:46
Compare
Choose a tag to compare
  • Update known TLD list with all current TLDs. Thanks @Jessecar96

v0.25.2

08 Apr 03:45
Compare
Choose a tag to compare
  • Add version property to Autolinker
  • Don't truncate the string when the truncate length is 0

v0.25.0

20 Mar 18:35
Compare
Choose a tag to compare
  • Add Match.buildTag() method as a shorthand for Autolinker.getTagBuilder().build( match ). Fixes #143
  • Remove use of ES5 Array.prototype.filer() function, to maintain compatibility with IE8. Fixes #144

v0.24.1

08 Mar 05:29
Compare
Choose a tag to compare
  • Fix for parsing HTML tags that don't have spaces between attributes. Thanks @bengotow!

v0.24.0

08 Mar 05:27
Compare
Choose a tag to compare
  • Fully add support for internationalized urls, email addresses, usernames, and hashtags

v0.23.0

15 Feb 19:02
Compare
Choose a tag to compare
  • Refactored Autolinker to break down the matching functionality into separate Matcher classes
  • Add initial accented char support (thanks @urish)

v0.22.0

11 Nov 04:27
Compare
Choose a tag to compare
  • Added options to independently allow or disallow matching of scheme, www, and top level domain urls. These new options are under the urls option as schemeMatches, wwwMatches, and tldMatches

v0.21.0

08 Nov 21:21
Compare
Choose a tag to compare
  • Fix for phone numbers that start with a '+' sign to now include the '+' sign in the tel: link
  • When stripPrefix: false option is passed, the original matched text is used for the link instead of accidentally adding http://

v0.20.0

08 Nov 02:49
Compare
Choose a tag to compare
  • Added two new truncate strategies: 'middle', and 'smart'. Thanks @kafoso!

v0.19.1

08 Nov 00:37
Compare
Choose a tag to compare
  • Update the phone number regex to match only a single space between groups of digits instead of any whitespace (which was also matching newlines and tab characters). Thanks @simison!