dependabot[bot] opened a new pull request, #1985:
URL: https://github.com/apache/datafusion-ballista/pull/1985

   Bumps [regex](https://github.com/rust-lang/regex) from 1.12.4 to 1.13.0.
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/rust-lang/regex/blob/master/CHANGELOG.md";>regex's 
changelog</a>.</em></p>
   <blockquote>
   <h1>1.13.0 (2026-07-09)</h1>
   <p>This release includes a new API, a <code>regex!</code> macro, for lazy 
compilation of
   a regex from a string literal. If you use regexes a lot, it's likely you've
   already written one exactly like it. The new macro can be used like this:</p>
   <pre lang="rust"><code>use regex::regex;
   <p>fn is_match(line: &amp;str) -&gt; bool {<br />
   // The regex will be compiled approximately once and reused 
automatically.<br />
   // This avoids the footgun of using <code>Regex::new</code> here, which 
would<br />
   // guarantee that it would be compiled every time this routine is called.<br 
/>
   // This would likely make this routine much slower than it needs to be.<br />
   regex!(r&quot;bar|baz&quot;).is_match(line)<br />
   }</p>
   <p>let hay = &quot;<br />
   path/to/foo:54:Blue Harvest<br />
   path/to/bar:90:Something, Something, Something, Dark Side<br />
   path/to/baz:3:It's a Trap!<br />
   &quot;;</p>
   <p>let matches = hay.lines().filter(|line| is_match(line)).count();<br />
   assert_eq!(matches, 2);<br />
   </code></pre></p>
   <p>Improvements:</p>
   <ul>
   <li><a 
href="https://redirect.github.com/rust-lang/regex/issues/709";>#709</a>:
   Add a new <code>regex!</code> macro for efficient and automatic reuse of a 
compiled regex.</li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/rust-lang/regex/commit/926af2e68eca3ce089815790541cf50759ba2c59";><code>926af2e</code></a>
 1.13.0</li>
   <li><a 
href="https://github.com/rust-lang/regex/commit/7d941a93561430cd259bb9ceb84cc66f33ae7be8";><code>7d941a9</code></a>
 regex-automata-0.4.15</li>
   <li><a 
href="https://github.com/rust-lang/regex/commit/e358341229ebd5feb9a78d8cc85b459c3c7b6600";><code>e358341</code></a>
 api: add <code>regex!</code> macro for lazy compilation</li>
   <li><a 
href="https://github.com/rust-lang/regex/commit/c42033379c8760105ef90287f319de73d1572242";><code>c420333</code></a>
 automata: disable miri on a couple doc tests</li>
   <li><a 
href="https://github.com/rust-lang/regex/commit/b9d2cf724f89754ea879b6c223d2292c4d3e2dd3";><code>b9d2cf7</code></a>
 github: add FUNDING link</li>
   <li><a 
href="https://github.com/rust-lang/regex/commit/0858006b1460ba781deda54b8d2b01b3f9f949f7";><code>0858006</code></a>
 docs: add AI policy for contributors</li>
   <li><a 
href="https://github.com/rust-lang/regex/commit/468fc64ecd6493caaca40dbe8319c31c5c08a83d";><code>468fc64</code></a>
 automata: reject dense DFA start states that are match states</li>
   <li>See full diff in <a 
href="https://github.com/rust-lang/regex/compare/1.12.4...1.13.0";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=regex&package-manager=cargo&previous-version=1.12.4&new-version=1.13.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   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 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]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to