Update Rust crate grep to 0.4.0#67
Open
renovate[bot] wants to merge 1 commit intomainfrom
Open
Conversation
c4f3df5 to
2d058f0
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.3.2→0.4.0Release Notes
BurntSushi/ripgrep (grep)
v0.4.1Compare Source
v0.4.0Compare Source
=====
This is a new minor version release of ripgrep that includes a couple very
minor breaking changes, a few new features and lots of bug fixes.
This version of ripgrep upgrades its
regexdependency from0.1to0.2,which includes a few minor syntax changes:
[:upper:]would parse as theupperPOSIX character class. Now it parsesas the character class containing the characters
:upper:. The fix to thischange is to use
[[:upper:]]instead. Note that variants like[[:upper:][:blank:]]continue to work.[must always be escaped inside a character class.&,-and~must be escaped if any one of them arerepeated consecutively. For example,
[&],[\&],[\&\&],[&-&]are allequivalent while
[&&]is illegal. (The motivation for this and the priorchange is to provide a backwards compatible path for adding character class
set notation.)
Feature enhancements:
Ruby, Swig
Type definitions can now include other type definitions.
BREAKING CHANGE: The
--columnflag now implies--line-number.Add a new
--sort-filesflag.Add a new
--path-separatorflag. Useful in cygwin.Bug fixes:
Redux: use more portable ANSI color escape sequences when possible.
Fix bug that caused ripgrep's parallel iterator to spin and burn CPU.
Document how to install shell completion files.
BUG #293:
Fix handling of bold styling and change the default colors.
Make lack of backreference support more explicit.
Remove
~dependency on clap.Fix cosmetic issue in
globsetcrate docs.ripgrep did not terminate when
-q/--quietwas given.BREAKING CHANGE: Completely remove
^Chandling from ripgrep.Make docs for
-g/--globclearer.When stdout is redirected to a file, don't search that file.
Fix ZSH completions.
Remove superfluous
memmapdependency ingrepcrate.Improve docs for
-r/--replace.Update bytecount dep to latest version.
Fix invalid UTF-8 output bug in Windows consoles.
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ 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.