Skip to content

Commit 897e45d

Browse files
chore(deps): bump regex from 1.8.1 to 1.8.2 (vectordotdev#17469)
Bumps [regex](https://github.com/rust-lang/regex) from 1.8.1 to 1.8.2. <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.8.2 (2023-05-22)</h1> <p>This is a patch release that fixes a bug where regex compilation could panic in debug mode for regexes with large counted repetitions. For example, <code>a{2147483516}{2147483416}{5}</code> resulted in an integer overflow that wrapped in release mode but panicking in debug mode. Despite the unintended wrapping arithmetic in release mode, it didn't cause any other logical bugs since the errant code was for new analysis that wasn't used yet.</p> <p>Bug fixes:</p> <ul> <li>[BUG <a href="https://redirect.github.com/rust-lang/regex/issues/995">#995</a>](<a href="https://redirect.github.com/rust-lang/regex/issues/995">rust-lang/regex#995</a>): Fix a bug where regex compilation with large counted repetitions could panic.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-lang/regex/commit/6fb18108278e4a0b3f048ae9bf7aa3d712b16b4c"><code>6fb1810</code></a> 1.8.2</li> <li><a href="https://github.com/rust-lang/regex/commit/709248c4f8d34264157d45db8c34bd008021de44"><code>709248c</code></a> deps: bump regex-syntax to 0.7.2</li> <li><a href="https://github.com/rust-lang/regex/commit/4f664b9332cbd3dbd0cd2be14138f0cafb7c12ba"><code>4f664b9</code></a> regex-syntax-0.7.2</li> <li><a href="https://github.com/rust-lang/regex/commit/40cbe1d24faffb2e5d4cf11540b3e484b2d9aa86"><code>40cbe1d</code></a> changelog: 1.8.2</li> <li><a href="https://github.com/rust-lang/regex/commit/f9aec4179fb59c33d19b1fafd05ff9e2bf4dd735"><code>f9aec41</code></a> syntax: fix overflow for big counted repetitions</li> <li><a href="https://github.com/rust-lang/regex/commit/65ec58cbd4dd9a0fcfa0823876b7dd0bb1736bd1"><code>65ec58c</code></a> fuzz: drop size limit again</li> <li><a href="https://github.com/rust-lang/regex/commit/a3978b24b81c568411a1680e0f72079a04eea7ab"><code>a3978b2</code></a> fuzz: set a size limit</li> <li><a href="https://github.com/rust-lang/regex/commit/98be16a1880008425a011504a950b9070b7f16b9"><code>98be16a</code></a> syntax: fix typo</li> <li><a href="https://github.com/rust-lang/regex/commit/1872bdf3cefa5dbc4cb49b631b884d342a47364a"><code>1872bdf</code></a> changelog: fix some typos</li> <li>See full diff in <a href="https://github.com/rust-lang/regex/compare/1.8.1...1.8.2">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.8.1&new-version=1.8.2)](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 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 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> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent f547871 commit 897e45d

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

Cargo.lock

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ rand = { version = "0.8.5", default-features = false, features = ["small_rng"] }
293293
rand_distr = { version = "0.4.3", default-features = false }
294294
rdkafka = { version = "0.31.0", default-features = false, features = ["tokio", "libz", "ssl", "zstd"], optional = true }
295295
redis = { version = "0.23.0", default-features = false, features = ["connection-manager", "tokio-comp", "tokio-native-tls-comp"], optional = true }
296-
regex = { version = "1.8.1", default-features = false, features = ["std", "perf"] }
296+
regex = { version = "1.8.2", default-features = false, features = ["std", "perf"] }
297297
roaring = { version = "0.10.1", default-features = false, optional = true }
298298
seahash = { version = "4.1.0", default-features = false }
299299
semver = { version = "1.0.17", default-features = false, features = ["serde", "std"], optional = true }

lib/codecs/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ memchr = { version = "2", default-features = false }
1717
once_cell = { version = "1.17", default-features = false }
1818
ordered-float = { version = "3.7.0", default-features = false }
1919
prost = { version = "0.11.8", default-features = false, features = ["std"] }
20-
regex = { version = "1.8.1", default-features = false, features = ["std", "perf"] }
20+
regex = { version = "1.8.2", default-features = false, features = ["std", "perf"] }
2121
serde = { version = "1", default-features = false, features = ["derive"] }
2222
serde_json = { version = "1", default-features = false }
2323
smallvec = { version = "1", default-features = false, features = ["union"] }

lib/vector-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ proptest = { version = "1.1", optional = true }
3838
prost-types = { version = "0.11", default-features = false }
3939
prost = { version = "0.11", default-features = false, features = ["std"] }
4040
quanta = { version = "0.11.0", default-features = false }
41-
regex = { version = "1.8.1", default-features = false, features = ["std", "perf"] }
41+
regex = { version = "1.8.2", default-features = false, features = ["std", "perf"] }
4242
ryu = { version = "1", default-features = false }
4343
serde = { version = "1.0.163", default-features = false, features = ["derive", "rc"] }
4444
serde_json = { version = "1.0.96", default-features = false }

vdev/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ os_info = { version = "3.7.0", default-features = false }
3030
# watch https://github.com/epage/anstyle for official interop with Clap
3131
owo-colors = { version = "3.5.0", features = ["supports-colors"] }
3232
paste = "1.0.12"
33-
regex = { version = "1.8.1", default-features = false, features = ["std", "perf"] }
33+
regex = { version = "1.8.2", default-features = false, features = ["std", "perf"] }
3434
reqwest = { version = "0.11", features = ["json", "blocking"] }
3535
serde = { version = "1.0", features = ["derive"] }
3636
serde_json = "1.0.96"

0 commit comments

Comments
 (0)