chore(deps): update dependency ahocorasick-rs to v0.22.1 #2703
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
==0.22.0
->==0.22.1
Release Notes
G-Research/ahocorasick_rs (ahocorasick-rs)
v0.22.1
Compare Source
0.22.0
bytes
haystack withBytesAhoCorasick
. Thanks to Isaac Garzón.0.21.0
bytes
,bytearray
,memoryview
, and similar objects using theBytesAhoCorasick
class. Thanks to Isaac Garzón.0.20.0
0.19.0
AhoCorasick()
will now raise aValueError
.Previously using empty patterns could result in garbage results or exceptions when matching.
aho-corasick
v1.1.1.0.18.0
aho-corasick
v1.1.0, which can run faster on ARM machines like newer Macs.0.17.0
aho-corasick
v1.0.5, fixing performance regression in construction ofAhoCorasick
objects.0.16.0
aho-corasick
v1.0.4, leading to massive reduction in memory usage during construction.0.15.0
AhoCorasick()
can now accept an iterable of strings, instead of just a list of strings.This means you can, for example, lazily create patterns in a generator to save memory; the underlying implementation will still use the bulk of the memory, however.
To get the old behavior, you can do
AhoCorasick(..., implementation=Implementation.DFA)
.aho-corasick
v1.0.3, which will result in lower memory usage in some cases.0.14.0
aho-corasick
v1.0.ahocorasick.MatchKind
enum replaces the module-levelMATCHKIND_*
constants.(The old
MATCHKIND_*
constants are deprecated, but will continue to work so long as you were using constants rather than strings.)0.13.0
store_patterns
) to control whether patterns are cached on the object.The new behavior is to use a heuristic by default to decide whether to cache the strings.
0.12.3
0.12.2
0.12.1
0.12.0
0.11.0
PyO3
v0.14.0.10.0
find_matches_as_indexes()
didn't give correct offsets fornon-ASCII strings
(#12). Thanks to
@necrosovereign for reporting and @BurntSushi for suggesting fix.
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.