You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file compiles the list of functional changes for each version. For backward-incompatible API changes, see `UPGRADING.md`.
2
+
3
+
4
+
# 2.0.0
5
+
6
+
- The final expression does not use a non-capturing group for its first set of alternations. The `s9e\RegexpBuilder\Builder::$standalone` property can be used to control this behaviour.
7
+
- Old: `(?:aa|bb(?:cc|dd))
8
+
- New: `aa|bb(?:cc|dd)`
9
+
10
+
- The Java output uses `\uHHHH` instead of `\u{HHHH}`.
11
+
12
+
- Expressions created from meta-characters are moved to the end of a group.
13
+
- Old: `(?:.*|x)`
14
+
- New: `(?:x|.*)`
15
+
16
+
- Strings are sorted *after* surrogate pairs are created.
0 commit comments