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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+36Lines changed: 36 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,41 @@
1
1
# Changelog
2
2
3
+
## 0.7.0 (2021-02-25)
4
+
5
+
### Breaking changes
6
+
7
+
-`FiniteAutomaton.test` now requires a `ReadonlyArray` instead of an `Iterable`.
8
+
-`Words.wordSetToWords` now returns an `Iterable` instead of an `IterableIterator`.
9
+
- Removed `toPatternString` function.
10
+
- Removed `NFA.FromRegexOptions.disableLookarounds`. Use `NFA.FromRegexOptions.assertions` instead.
11
+
- AST format: Quantifier nodes now have a lazy property to enable non-greedy quantifiers.
12
+
-`JS.Parser` no longer implements `JS.Literal`. Use the `JS.Parser.literal` property instead.
13
+
-`JS.Parser` now resolves backreferences differently. It now supports resolving capturing groups with finite small languages. How small the language is required to be can be controlled via the new `JS.ParseOptions.maxBackreferenceWords` option (defaults to 100 words). `JS.ParseOptions.backreferences` also works differently now. See the `JS.ParseOptions` documentation for more details.
0 commit comments