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
+12-1Lines changed: 12 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,11 +2,20 @@
2
2
3
3
All notable changes to this project will be documented in this file.
4
4
5
+
## [0.9.3] - 2024-12-24
6
+
7
+
### Library
8
+
9
+
- Made `MainEngine``Send` and `Sync`
10
+
- Changed internal `Rc`s to `Arc`s in the automaton labels.
11
+
- Added a `static_assert` to make sure `MainEngine` is `Send+Sync` forever.
12
+
- Added a `Debug` impl for `MainEngine`.
13
+
5
14
## [0.9.2] - 2024-12-22
6
15
7
16
### Library
8
17
9
-
- Added `StringPattern` and made `Automaton` no longer borrow the query. ([#117](https://github.com/V0ldek/rsonpath/issues/117)[#613](https://github.com/V0ldek/rsonpath/issues/613))
18
+
-[**breaking**]Added `StringPattern` and made `Automaton` no longer borrow the query. ([#117](https://github.com/V0ldek/rsonpath/issues/117)[#613](https://github.com/V0ldek/rsonpath/issues/613))
10
19
11
20
- The `Automaton` struct borrowed the source query, which also caused the Engine to carry the query's lifetime with it.
12
21
The actual data being borrowed were the `JsonString` values for member transitions.
@@ -17,6 +26,8 @@ All notable changes to this project will be documented in this file.
17
26
To reduce the size of the automaton we cache the patterns and put them into an `Rc`.
18
27
This may get optimised later to instead use some kind of inline storage, but it's unlike to actually matter.
19
28
I ran the benchmarks and saw no measurable difference between the previous version and this one.
29
+
- This is a breaking API change -- the `MainEngine` is now lifetimeless and the `Compiler` trait requires the
0 commit comments