Skip to content

Commit d956092

Browse files
chore(deps): Bump url from 2.3.1 to 2.4.0 (#17608)
Bumps [url](https://github.com/servo/rust-url) from 2.3.1 to 2.4.0. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/servo/rust-url/commit/a3e07c7de5a9c98e1143919c3f7d5b69e850cfd7"><code>a3e07c7</code></a> Merge pull request <a href="https://redirect.github.com/servo/rust-url/issues/840">#840</a> from servo/update-ver</li> <li><a href="https://github.com/servo/rust-url/commit/1317d9d27f2989ed1b0a21613bbbcd4149eebf20"><code>1317d9d</code></a> update dependencies</li> <li><a href="https://github.com/servo/rust-url/commit/a25f3a89e9d4a9c9434dd2c03a51c460d2ebda75"><code>a25f3a8</code></a> Update url to v2.4.0</li> <li><a href="https://github.com/servo/rust-url/commit/2a12745bafd13f8172276f7062eb1c47e43af78c"><code>2a12745</code></a> Update idna to 0.4.0</li> <li><a href="https://github.com/servo/rust-url/commit/1e6fd5db7ce658e5da17bd117efddd986e0e8f76"><code>1e6fd5d</code></a> Update form_urlencoded to 1.2.0</li> <li><a href="https://github.com/servo/rust-url/commit/90833ff69ff1257132b4fe04111c8555b22bf639"><code>90833ff</code></a> Update percent-encoding to 2.3.0</li> <li><a href="https://github.com/servo/rust-url/commit/f5b961cfa2cc150610c593e14eb9b6d3b5690685"><code>f5b961c</code></a> Update data-url to 0.3.0</li> <li><a href="https://github.com/servo/rust-url/commit/0e251468142d03c1eb3d5cf811f962c82699fdd8"><code>0e25146</code></a> Merge pull request <a href="https://redirect.github.com/servo/rust-url/issues/839">#839</a> from servo/fix-838</li> <li><a href="https://github.com/servo/rust-url/commit/21f32d64b735323880c2913c44e8f370a49518bb"><code>21f32d6</code></a> Fix lint</li> <li><a href="https://github.com/servo/rust-url/commit/df88a29c9176435aeef786145af3572bf8747d05"><code>df88a29</code></a> Also fix issue where path segment could be confused with drive letter because...</li> <li>Additional commits viewable in <a href="https://github.com/servo/rust-url/compare/v2.3.1...v2.4.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=url&package-manager=cargo&previous-version=2.3.1&new-version=2.4.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 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 154e393 commit d956092

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

Cargo.lock

+9-9
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
@@ -311,7 +311,7 @@ toml = { version = "0.7.4", default-features = false, features = ["parse", "disp
311311
tonic = { version = "0.9", optional = true, default-features = false, features = ["transport", "codegen", "prost", "tls", "tls-roots", "gzip"] }
312312
trust-dns-proto = { version = "0.22.0", default-features = false, features = ["dnssec"], optional = true }
313313
typetag = { version = "0.2.8", default-features = false }
314-
url = { version = "2.3.1", default-features = false, features = ["serde"] }
314+
url = { version = "2.4.0", default-features = false, features = ["serde"] }
315315
uuid = { version = "1", default-features = false, features = ["serde", "v4"] }
316316
warp = { version = "0.3.5", default-features = false }
317317
zstd = { version = "0.12.3", default-features = false }

lib/vector-api-client/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ tokio-tungstenite = { version = "0.19.0", default-features = false, features = [
3131
# External libs
3232
chrono = { version = "0.4.6", default-features = false, features = ["serde"] }
3333
clap = { version = "4.1.14", default-features = false, features = ["derive"] }
34-
url = { version = "2.3.1", default-features = false }
34+
url = { version = "2.4.0", default-features = false }
3535
uuid = { version = "1", default-features = false, features = ["serde", "v4"] }
3636
indoc = { version = "2.0.1", default-features = false }

lib/vector-config/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ serde_with = { version = "2.3.2", default-features = false, features = ["std"] }
2525
snafu = { version = "0.7.4", default-features = false }
2626
toml = { version = "0.7.4", default-features = false }
2727
tracing = { version = "0.1.34", default-features = false }
28-
url = { version = "2.3.1", default-features = false, features = ["serde"] }
28+
url = { version = "2.4.0", default-features = false, features = ["serde"] }
2929
vrl = { version = "0.4.0", default-features = false, features = ["compiler"] }
3030
vector-config-common = { path = "../vector-config-common" }
3131
vector-config-macros = { path = "../vector-config-macros" }

0 commit comments

Comments
 (0)