summaryrefslogtreecommitdiffstats
path: root/thirdparty/pcre2/AUTHORS
Commit message (Collapse)AuthorAgeFilesLines
* pcre2: Update to 10.43Jakub Marcowski2024-03-111-3/+3
|
* pcre2: Update to upstream version 10.40Rémi Verschelde2022-05-171-3/+3
| | | | Changelog: https://github.com/PCRE2Project/pcre2/blob/pcre2-10.40/ChangeLog
* pcre2: Update to upstream version 10.39Rémi Verschelde2021-11-191-4/+4
| | | | Changelog: https://github.com/PhilipHazel/pcre2/blob/pcre2-10.39/ChangeLog
* pcre2: Update to upstream version 10.36Rémi Verschelde2021-01-081-5/+5
| | | | Changelog: https://vcs.pcre.org/pcre2/code/tags/pcre2-10.36/ChangeLog?view=markup
* pcre2: Update to upstream version 10.33Rémi Verschelde2019-07-111-3/+3
|
* update PCRE2 to version 10.31, fixes #15662firefly24422018-05-281-3/+3
|
* Replacement of internal RegEx with PCRE2Zher Huei Lee2017-08-191-0/+36
The pattern and replacement matching behaviour has been changed purely due to the nature of switching to a standards-compliant library. One mistake in the previous behaviour was that named groups didn't have a number. This has been corrected. As names are actually just an alias of numbered groups, RegExMatch::get_name_dict() is now get_names() and is a dict referring to the group number it represents. Duplicate names are enabled and the with the first matching instance used. Due the lack of a suitable equivalent in PCRE2, RegExMatch::expand() was removed.