All Versions
12
Latest Version
Avg Release Cycle
29 days
Latest Release
1628 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v3.0.0 Changes
November 05, 2020๐ Changelog:
- Refactored HighlighterInterface to be more flexible [BC break]
- Refactored HtmlHighlighter to follow template method pattern (much easy to extend)
- Refactored MarkdownHighlighter to aware of HTML content (extends HtmlHighlighter)
- โ Added MatcherFactory and ReplacerFactory
- Refactored HighlighterInterface to be more flexible [BC break]
-
v2.3.0 Changes
September 24, 2020๐ Changelog:
- โ Added PHP 8 compatibility
- ๐ Renamed class
VStelmakh\UrlHighlight\Matcher\Match
toUrlMatch
Since PHP v8.0
match
is a reserved keyword.
This will affect you if custom Validator or Highlighter implemented.
Consider expecting UrlMatch instead ofMatch
in your implementations. -
v2.2.0 Changes
September 04, 2020๐ Changelog:
- ๐ Fixed match complex urls with brackets (e.g. ELK urls)
- ๐ Improved matcher performance (~3x faster)
- ๐ Fixed html entity encoder regex builder (not all html entities were encoded)
- โ Added fallback to encoded matcher to skip match if encoder not able to encode
- ๐ Improved url match regex to cover more cases
- โ Added match emails by default in validator
-
v2.1.0 Changes
July 28, 2020๐ Changelog:
- โ Added html highlighter tag attributes
- โ Added markdown highlighter
-
v2.0.0 Changes
May 19, 2020๐ Changelog:
- Replaced array configuration by specific interfaces: Validator, Highlighter, Encoder [BC break]
- โ Added support for html escaped input
- ๐ Fixed html highlight when href for urls contains
"
(double quote) - โ Added changelog
-
v1.2.4 Changes
May 01, 2020๐ Changelog:
- ๐ Fixed match by host includes colon at the end (e.g.
example.com:
will not include colon anymore)
- ๐ Fixed match by host includes colon at the end (e.g.
-
v1.2.3 Changes
April 04, 2020๐ Changelog:
- ๐ Fixed match scheme without host (e.g.
http://
will not match anymore)
- ๐ Fixed match scheme without host (e.g.
-
v1.2.2 Changes
March 22, 2020๐ Changelog:
- Url regex improvements (more strict scheme and host name)
- Not match emails (temporary)
-
v1.2.1 Changes
March 14, 2020๐ Changelog:
- Project logo
- Readme improvements
- โ
.gitattributes
to ignore dev files (e.g. tests) on export
-
v1.2.0 Changes
January 15, 2020๐ Changelog:
- ๐ง Configuration. Additional options could be provided via constructor:
match_by_tld
default_scheme
scheme_blacklist
scheme_whitelist
- ๐ง Configuration. Additional options could be provided via constructor: