Skip to content

Commit 92851ff

Browse files
committed
Merge branch 'upstream-candidate-1.9.5' into upstream-master
2 parents bd1df9e + f13f187 commit 92851ff

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

Bundle.ecl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ EXPORT Bundle := MODULE(Std.BundleBase)
66
EXPORT License := 'http://www.apache.org/licenses/LICENSE-2.0';
77
EXPORT Copyright := 'Copyright (C) 2024 HPCC Systems';
88
EXPORT DependsOn := [];
9-
EXPORT Version := '1.9.4';
9+
EXPORT Version := '1.9.5';
1010
END;

Profile.ecl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -617,7 +617,7 @@ EXPORT Profile(inFile,
617617
#UNIQUENAME(_MapUpperCharUni);
618618
LOCAL %_MapUpperCharUni%(UNICODE s) := REGEXREPLACE(u'\\p{Lu}', s, u'A');
619619
#UNIQUENAME(_MapLowerCharUni);
620-
LOCAL %_MapLowerCharUni%(UNICODE s) := REGEXREPLACE(u'[[\\p{Ll}][\\p{Lt}][\\p{Lm}][\\p{Lo}]]', s, u'a');
620+
LOCAL %_MapLowerCharUni%(UNICODE s) := REGEXREPLACE(u'[\\p{Ll}\\p{Lt}\\p{Lm}\\p{Lo}]', s, u'a');
621621
#UNIQUENAME(_MapDigitUni);
622622
LOCAL %_MapDigitUni%(UNICODE s) := REGEXREPLACE(u'[1-9]', s, u'9'); // Leave '0' as-is and replace with '9' later
623623
#UNIQUENAME(_MapAllUni);

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ level, such as within your "My Files" folder.
103103
|1.9.2|Security updates|
104104
|1.9.3|Better identify upper- and lower-case Unicode characters in text patterns; scan Unicode and UTF-8 strings to see if they can be represented with a STRING data type instead|
105105
|1.9.4|README fixes and updates; improve UTF-8 detection and prevent buffer overruns during character scans; use short form of Unicode property names in regex|
106+
|1.9.5|Correct Unicode regex regression introduced in 1.9.4|
106107
</details>
107108

108109
---

0 commit comments

Comments
 (0)