Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
0.24.1
->3.14.0
By merging this PR, the issue #1 will be automatically resolved and closed:
Release Notes
gregjacobs/Autolinker.js (autolinker)
v3.14.0
Compare Source
sanitizeHtml
option for basic XSS sanitization (thanks @adi928)v3.13.0
Compare Source
v3.12.0
Compare Source
v3.11.1
Compare Source
Narrow down the emoji regex to not include things like curly quotes (thanks @adamdavidcole!)
v3.11.0
Some amazing contributions in this release. Sorry for the version number snafu - accidentally created a 3.10.0 tag instead of 3.1.0, so went up from there.
Changes:
v3.0.5
Compare Source
v3.0.4
Compare Source
v3.0.3
Compare Source
v3.0.2
Compare Source
v3.0.1
Compare Source
Fix issue with unquoted html attributes not parsing as html tags (#263)
v3.0.0
: v.3.0.0Compare Source
Main Changes:
Breaking Changes:
HtmlParser
class, replacing with an internalparseHtml()
functionv2.2.2
Compare Source
Use
tslib
dependency to remove duplicate__extends
function in minified file. Saves 3kbv2.2.1
Compare Source
v2.2.0
Compare Source
v2.1.0
Compare Source
getPhoneNumber()
method toPhoneMatch
. This method name is a bit more clear thangetNumber()
. LeftgetNumber()
for backward compatibilityv2.0.0
Compare Source
Autolinker
to be imported using the ES6import
keyword, as well as other entities likeMatcher
,Match
, etc.require()
, ES6/TypeScriptimport
, UMD output file in browsers, and WebpackCloses #254
v1.8.3
Compare Source
<style>
and<script>
tags (thanks @examan!)v1.8.1
Compare Source
Re-add
dist/
folder for bower compatibilityv1.8.0
Compare Source
Add support for soundcloud mentions (thanks @Superjo149)
v1.7.1
Compare Source
compactMatches()
to correctly handle matches that are directly next to each other. Thanks @bgryszko!v1.7.0
Compare Source
v1.6.2
Compare Source
v1.6.1
Compare Source
v1.6.0
Compare Source
decodePercentEncoding
option (thanks @c960657!)v1.5.0
Compare Source
v1.4.4
Compare Source
Thanks @viman !
v1.4.3
Compare Source
Thanks @kbs0327 !
v1.4.2
Compare Source
gulp update-tld-list
Thanks @tsx !
v1.4.1
Compare Source
v1.4.0
Compare Source
…
entity instead of..
for ellipsistitle
attribute with the full URL on anchor tags that have had their text truncatedThanks @olafleur for both of these changes!
v1.3.4
Compare Source
1.3.2
. Accidentally pushed a tag named1.3.3
for the1.3.1
version, so created a new version to be greater than the accidental tagv1.3.2
Compare Source
http://localhost.local001/test
). Thanks @olafleur!v1.3.1
Compare Source
Array.prototype.push
encountering a "Maximum Call Stack Exceeded" error when the input is a large number of HTML character entitiesv1.3.0
Compare Source
v1.2.2
Compare Source
v1.2.1
Compare Source
Move
gulp-header
dependency fromdependencies
todevDependencies
v1.2.0
Compare Source
v1.1.1
Compare Source
v1.1.0
Compare Source
stripTrailingSlash
option to decided whether or not to remove a trailing slash from URL matchesscheme
andwww
options tostripPrefix
to decide to strip the scheme, the 'www', or both from URL matchesv1.0.0
Compare Source
Long awaited 1.0 release which adds the
mention
feature to replace thetwitter
option, and change thereplaceFn
to be passed only one argument (theMatch
object).Breaking Changes from 0.x -> 1.x
twitter
option removed, replaced withmention
(which accepts'twitter'
and
'instagram'
values)twitter
option) now defaults tobeing turned off. Previously, Twitter handle matching was on by
default.
replaceFn
option now called with just one argument: theMatch
object (previously was called with two arguments:
autolinker
andmatch
)replaceFn
)TwitterMatch
replaced withMentionMatch
, andMentionMatch.getType()
now returns'mention'
instead of
'twitter'
replaceFn
)TwitterMatch.getTwitterHandle()
->MentionMatch.getMention()
v0.28.1
Compare Source
v0.28.0
Compare Source
v0.27.0
Compare Source
<
that didn't begin an HTML tag could cause Chrome to hang in an infinite loop in certain situationsv0.26.1
Compare Source
v0.26.0
Compare Source
v0.25.2
Compare Source
version
property toAutolinker
truncate
length is 0v0.25.1
Compare Source
v0.25.0
Compare Source
Match.buildTag()
method as a shorthand forAutolinker.getTagBuilder().build( match )
. Fixes #143Array.prototype.filer()
function, to maintain compatibility with IE8. Fixes #144