⬆ Bump the rust-packages group across 1 directory with 3 updates
Bumps the rust-packages group with 3 updates in the / directory: regex, url and reqwest.
Updates regex from 1.10.6 to 1.11.1
Changelog
Sourced from regex's changelog.
1.11.1 (2024-10-24)
This is a new patch release of
regexthat fixes compilation on nightly Rust when the unstablepatterncrate feature is enabled. Users on nightly Rust without this feature enabled are unaffected.Bug fixes:
- [BUG #1231](rust-lang/regex#1231): Fix the
Patterntrait implementation as a result of nightly API breakage.1.11.0 (2024-09-29)
This is a new minor release of
regexthat brings in an update to the Unicode Character Database. Specifically, this updates the Unicode data used byregexinternally to the version 16 release.New features:
- [FEATURE #1228](rust-lang/regex#1228): Add new
regex::SetMatches::matched_allmethod.- [FEATURE #1229](rust-lang/regex#1229): Update to Unicode Character Database (UCD) version 16.
Commits
9870c061.11.180df54echangelog: 1.11.1991ba88unstable: fixPatterntrait implementationbcbe4031.11.09e17e56deps: bump regex-automata58e16f5regex-automata-0.4.84bb1e3ddeps: bump regex-syntaxcba0fbcregex-syntax-0.8.51533257changelog: 1.11.09239e7edata: update to UCD 16- Additional commits viewable in compare view
Updates url from 2.5.2 to 2.5.4
Release notes
Sourced from url's releases.
v2.5.4
What's Changed
- Revert "Normalize URL paths: convert /.//p, /..//p, and //p to p (#943)" by
@valentingin servo/rust-url#999- Updates the MSRV to 1.63 required though the libc v0.2.164 dependency
Full Changelog: https://github.com/servo/rust-url/compare/v2.5.3...v2.5.4
v2.5.3
What's Changed
- fix: enable wasip2 feature for wasm32-wasip2 target by
@brooksmtownsendin servo/rust-url#960- Fix idna tests with no_std by
@cjwatsonin servo/rust-url#963- Fix debugger_visualizer test failures. by
@valentingin servo/rust-url#967- Add AsciiSet::EMPTY and boolean operators by
@joshkain servo/rust-url#969- mention why we pin unicode-width by
@Manishearthin servo/rust-url#972- refactor and add tests for percent encoding by
@joshkain servo/rust-url#977- Add a test for and fix issue #974 by
@hanslin servo/rust-url#975no_stdsupport for theurlcrate by@domenukkin servo/rust-url#831- Normalize URL paths: convert /.//p, /..//p, and //p to p by
@theskimin servo/rust-url#943- support Hermit by
@m-mueller678in servo/rust-url#985- fix: support
wasm32-wasip2on the stable channel by@brooksmtownsendin servo/rust-url#983- Improve serde error output by
@konstinin servo/rust-url#982- OSS-Fuzz: Add more fuzzer by
@arthurscchanin servo/rust-url#988- Merge idna-v1x to main by
@hsivonenin servo/rust-url#990New Contributors
@brooksmtownsendmade their first contribution in servo/rust-url#960@cjwatsonmade their first contribution in servo/rust-url#963@joshkamade their first contribution in servo/rust-url#969@hanslmade their first contribution in servo/rust-url#975@theskimmade their first contribution in servo/rust-url#943@m-mueller678made their first contribution in servo/rust-url#985@konstinmade their first contribution in servo/rust-url#982@arthurscchanmade their first contribution in servo/rust-url#988Full Changelog: https://github.com/servo/rust-url/compare/v2.5.2...v2.5.3
Commits
d77dfb4Revert "Normalize URL paths: convert /.//p, /..//p, and //p to p (#943)" (#999)da64903Change no_std to no-std in Cargo.toml (#991)8a683ffMerge idna-v1x to main (#990)08a3268OSS-Fuzz: Add more fuzzers (#988)5d363ccImprove serde error output (#982)30e6258fix: support wasm32-wasip2 on stable channel (#983)bf089c4support hermit (#985)b08a655Normalize URL paths: convert /.//p, /..//p, and //p to p (#943)ebd5cfbno_stdsupport for theurlcrate (#831)7eccac9Add a test for and fix issue #974 (#975)- Additional commits viewable in compare view
Updates reqwest from 0.12.7 to 0.12.9
Release notes
Sourced from reqwest's releases.
v0.12.9
What's Changed
- Add
tls::CertificateRevocationListssupport (by@ksenia-vazhdaevain seanmonstar/reqwest#2433)- Add crate features to enable webpki roots without selecting a rustls provider (by
@stevefan1999-personalin seanmonstar/reqwest#2447)- Fix
multipart::Part::file()to automatically include content-length (by@Mr-Pinein seanmonstar/reqwest#2459)- Fix proxy to internally no longer cache system proxy settings (by
@lanyeeeein seanmonstar/reqwest#2442)- Fix
connection_verbose()to output read logs (by@seanmonstarin seanmonstar/reqwest#2454)New Contributors
@lanyeeeemade their first contribution in seanmonstar/reqwest#2442@ksenia-vazhdaevamade their first contribution in seanmonstar/reqwest#2433@Mr-Pinemade their first contribution in seanmonstar/reqwest#2459@stevefan1999-personalmade their first contribution in seanmonstar/reqwest#2447Full Changelog: https://github.com/seanmonstar/reqwest/compare/v0.12.8...v0.12.9
v0.12.8
What's Changed
- Add support for SOCKS4 proxies.
- Add
multipart::Form::file()method for adding files easily.- Add
Body::wrap()to wrap anyhttp_body::Bodytype.- Fix the pool configuration to use a timer to remove expired connections.
New Contributors
@workingjubileemade their first contribution in seanmonstar/reqwest#2402@NaokiM03made their first contribution in seanmonstar/reqwest#2106@Xuanwomade their first contribution in seanmonstar/reqwest#2255@Jaltairemade their first contribution in seanmonstar/reqwest#2400@Hyaskmade their first contribution in seanmonstar/reqwest#2418@Jake-Shadlemade their first contribution in seanmonstar/reqwest#2427@RobMormade their first contribution in seanmonstar/reqwest#2434Full Changelog: https://github.com/seanmonstar/reqwest/compare/v0.12.7...v0.12.8
Changelog
Sourced from reqwest's changelog.
v0.12.9
- Add
tls::CertificateRevocationListssupport.- Add crate features to enable webpki roots without selecting a rustls provider.
- Fix
connection_verbose()to output read logs.- Fix
multipart::Part::file()to automatically include content-length.- Fix proxy to internally no longer cache system proxy settings.
v0.12.8
- Add support for SOCKS4 proxies.
- Add
multipart::Form::file()method for adding files easily.- Add
Body::wrap()to wrap anyhttp_body::Bodytype.- Fix the pool configuration to use a timer to remove expired connections.
Commits
797df2bv0.12.964aa7d1add webpki roots option for rustls no provider setup (#2447)598f857Add content length to async_impl::multipart file streams (#2459)d99e90dfix: re-enable verbose connection read logs (#2454)aba01fffeat: Add support for Certificate Revocation Lists (#2433)3ad6e02refactor: remove internal proxy sys cache (#2442)95fec09v0.12.8baf9712fix: pass pool_timer to hyper_util to enable the idle cleanup task (#2434)d85f44bBump rustls-native-certs (#2427)c8665betests: use a documented test network for testing- Additional commits viewable in compare view
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 commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions
The latest updates on your projects. Learn more about Vercel for Git ↗︎
| Name | Status | Preview | Comments | Updated (UTC) |
|---|---|---|---|---|
| coveapi | ✅ Ready (Inspect) | Visit Preview | 💬 Add feedback | Nov 25, 2024 4:21am |