Skip to content

Commit

Permalink
chore(deps): bump regex from 1.8.1 to 1.8.2 (vectordotdev#17469)
Browse files Browse the repository at this point in the history
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] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] committed May 23, 2023
1 parent f547871 commit 897e45d
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ rand = { version = "0.8.5", default-features = false, features = ["small_rng"] }
rand_distr = { version = "0.4.3", default-features = false }
rdkafka = { version = "0.31.0", default-features = false, features = ["tokio", "libz", "ssl", "zstd"], optional = true }
redis = { version = "0.23.0", default-features = false, features = ["connection-manager", "tokio-comp", "tokio-native-tls-comp"], optional = true }
regex = { version = "1.8.1", default-features = false, features = ["std", "perf"] }
regex = { version = "1.8.2", default-features = false, features = ["std", "perf"] }
roaring = { version = "0.10.1", default-features = false, optional = true }
seahash = { version = "4.1.0", default-features = false }
semver = { version = "1.0.17", default-features = false, features = ["serde", "std"], optional = true }
Expand Down
2 changes: 1 addition & 1 deletion lib/codecs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ memchr = { version = "2", default-features = false }
once_cell = { version = "1.17", default-features = false }
ordered-float = { version = "3.7.0", default-features = false }
prost = { version = "0.11.8", default-features = false, features = ["std"] }
regex = { version = "1.8.1", default-features = false, features = ["std", "perf"] }
regex = { version = "1.8.2", default-features = false, features = ["std", "perf"] }
serde = { version = "1", default-features = false, features = ["derive"] }
serde_json = { version = "1", default-features = false }
smallvec = { version = "1", default-features = false, features = ["union"] }
Expand Down
2 changes: 1 addition & 1 deletion lib/vector-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ proptest = { version = "1.1", optional = true }
prost-types = { version = "0.11", default-features = false }
prost = { version = "0.11", default-features = false, features = ["std"] }
quanta = { version = "0.11.0", default-features = false }
regex = { version = "1.8.1", default-features = false, features = ["std", "perf"] }
regex = { version = "1.8.2", default-features = false, features = ["std", "perf"] }
ryu = { version = "1", default-features = false }
serde = { version = "1.0.163", default-features = false, features = ["derive", "rc"] }
serde_json = { version = "1.0.96", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion vdev/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ os_info = { version = "3.7.0", default-features = false }
# watch https://github.com/epage/anstyle for official interop with Clap
owo-colors = { version = "3.5.0", features = ["supports-colors"] }
paste = "1.0.12"
regex = { version = "1.8.1", default-features = false, features = ["std", "perf"] }
regex = { version = "1.8.2", default-features = false, features = ["std", "perf"] }
reqwest = { version = "0.11", features = ["json", "blocking"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.96"
Expand Down

0 comments on commit 897e45d

Please sign in to comment.