dependabot[bot] opened a new pull request, #4914: URL: https://github.com/apache/arrow-rs/pull/4914
Updates the requirements on [regex-syntax](https://github.com/rust-lang/regex) to permit the latest version. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/regex/blob/master/CHANGELOG.md">regex-syntax's changelog</a>.</em></p> <blockquote> <h1>1.10.0 (2023-10-09)</h1> <p>This is a new minor release of <code>regex</code> that adds support for start and end word boundary assertions. That is, <code>\<</code> and <code>\></code>. The minimum supported Rust version has also been raised to 1.65, which was released about one year ago.</p> <p>The new word boundary assertions are:</p> <ul> <li><code>\<</code> or <code>\b{start}</code>: a Unicode start-of-word boundary (<code>\W|\A</code> on the left, <code>\w</code> on the right).</li> <li><code>\></code> or <code>\b{end}</code>: a Unicode end-of-word boundary (<code>\w</code> on the left, <code>\W|\z</code> on the right)).</li> <li><code>\b{start-half}</code>: half of a Unicode start-of-word boundary (<code>\W|\A</code> on the left).</li> <li><code>\b{end-half}</code>: half of a Unicode end-of-word boundary (<code>\W|\z</code> on the right).</li> </ul> <p>The <code>\<</code> and <code>\></code> are GNU extensions to POSIX regexes. They have been added to the <code>regex</code> crate because they enjoy somewhat broad support in other regex engines as well (for example, vim). The <code>\b{start}</code> and <code>\b{end}</code> assertions are aliases for <code>\<</code> and <code>\></code>, respectively.</p> <p>The <code>\b{start-half}</code> and <code>\b{end-half}</code> assertions are not found in any other regex engine (although regex engines with general look-around support can certainly express them). They were added principally to support the implementation of word matching in grep programs, where one generally wants to be a bit more flexible in what is considered a word boundary.</p> <p>New features:</p> <ul> <li>[FEATURE <a href="https://redirect.github.com/rust-lang/regex/issues/469">#469</a>](<a href="https://redirect.github.com/rust-lang/regex/issues/469">rust-lang/regex#469</a>): Add support for <code>\<</code> and <code>\></code> word boundary assertions.</li> <li>[FEATURE(regex-automata) <a href="https://redirect.github.com/rust-lang/regex/issues/1031">#1031</a>](<a href="https://redirect.github.com/rust-lang/regex/pull/1031">rust-lang/regex#1031</a>): DFAs now have a <code>start_state</code> method that doesn't use an <code>Input</code>.</li> </ul> <p>Performance improvements:</p> <ul> <li>[PERF <a href="https://redirect.github.com/rust-lang/regex/issues/1051">#1051</a>](<a href="https://redirect.github.com/rust-lang/regex/pull/1051">rust-lang/regex#1051</a>): Unicode character class operations have been optimized in <code>regex-syntax</code>.</li> <li>[PERF <a href="https://redirect.github.com/rust-lang/regex/issues/1090">#1090</a>](<a href="https://redirect.github.com/rust-lang/regex/issues/1090">rust-lang/regex#1090</a>): Make patterns containing lots of literal characters use less memory.</li> </ul> <p>Bug fixes:</p> <ul> <li>[BUG <a href="https://redirect.github.com/rust-lang/regex/issues/1046">#1046</a>](<a href="https://redirect.github.com/rust-lang/regex/issues/1046">rust-lang/regex#1046</a>): Fix a bug that could result in incorrect match spans when using a Unicode word boundary and searching non-ASCII strings.</li> <li>[BUG(regex-syntax) <a href="https://redirect.github.com/rust-lang/regex/issues/1047">#1047</a>](<a href="https://redirect.github.com/rust-lang/regex/issues/1047">rust-lang/regex#1047</a>): Fix panics that can occur in <code>Ast->Hir</code> translation (not reachable from <code>regex</code> crate).</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/rust-lang/regex/commits">compare view</a></li> </ul> </details> <br /> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
