fix(deps): update all dependencies #3
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "renovate/all"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This PR contains the following updates:
0.18.3
->0.19.0
0.24.1
->0.25.0
0.11.24
->0.12.0
0.7.3
->0.8.0
Release Notes
rust-lang/git2-rs (git2)
v0.19.0
Compare Source
0.18.3...0.19.0
Added
opts
functions to control server timeouts (get_server_connect_timeout_in_milliseconds
,set_server_connect_timeout_in_milliseconds
,get_server_timeout_in_milliseconds
,set_server_timeout_in_milliseconds
), and addErrorCode::Timeout
.#1052
Changed
#1032
Error
struct.#1053
Fixed
#1043
seanmonstar/reqwest (reqwest)
v0.12.7
Compare Source
impl Service<http::Request<_>>
forClient
.v0.12.6
Compare Source
danger_accept_invalid_hostnames
forrustls
.impl Service<http::Request<Body>>
forClient
and&'_ Client
.!Sync
bodies inBody::wrap_stream()
.hickory-dns
is used.Proxy
so thatHTTP(S)_PROXY
values take precendence overALL_PROXY
.blocking::RequestBuilder::header()
from unsettingsensitive
on passed header values.v0.12.5
Compare Source
blocking::ClientBuilder::dns_resolver()
method to change DNS resolver in blocking client.http3
feature back, still requiringreqwest_unstable
.rustls-tls-no-provider
Cargo feature to use rustls without a crypto provider.Accept-Encoding
header combinations.v0.12.4
Compare Source
zstd
support, enabled withzstd
Cargo feature.ClientBuilder::read_timeout(Duration)
, which applies the duration for each read operation. The timeout resets after a successful read.v0.12.3
Compare Source
FromStr
fordns::Name
.ClientBuilder::built_in_webpki_certs(bool)
to enable them separately.ClientBuilder::built_in_native_certs(bool)
to enable them separately.content-length: 0
for GET requests.content_length()
to return value when timeout is configured.ClientBuilder::resolve()
to use lowercase domain names.v0.12.2
Compare Source
v0.12.1
Compare Source
ClientBuilder::interface()
when no TLS is enabled.TlsInfo::peer_certificate()
being truncated with rustls.http2
feature disabled but TLS negotiated h2 in ALPN.Display
forError
to not include its source error.v0.12.0
Compare Source
hyper
,http
, andhttp-body
v1.http::Request
andhttp::Response
.http2
optional cargo feature, default on.charset
optional cargo feature, default on.macos-system-configuration
cargo feature, default on.ClientBuilder::interface(str)
to specify the local interface to bind to.http3
feature temporarily.v0.11.27
hickory-dns
feature, deprecatingtrust-dns
.Form::text()
to not set octet-stream for plain text fields.v0.11.26
system-configuration
upgrade, which broke MSRV on macOS.v0.11.25
Certificate::from_pem_bundle()
parsing.v0.11.24
Certificate::from_pem_bundle()
to add a bundle.http3_prior_knowledge()
to blocking client builder.Sync
bounds requirement forBody::wrap_stream()
.REFUSED_STREAM
requests.Url
toUri
that could panic.v0.11.23
Proxy::custom_http_auth(val)
for setting the rawProxy-Authorization
header when connecting to proxies.http://
orhttps://
.nodelay
when TLS is enabled but URL is HTTP.ClientBuilder::user_agent(val)
.multipart::Form::headers(headers)
.v0.11.22
trust-dns
is enabled.v0.11.21
ClientBuilder::tls_info(bool)
, which will puttls::TlsInfo
into the response extensions.v0.11.20
deflate
decompression back to using zlib, as outlined in the spec.v0.11.19
ClientBuilder::http1_ignore_invalid_headers_in_responses()
option.ClientBuilder::http1_allow_spaces_after_header_name_in_responses()
option.ALL_PROXY
environment variable.use_preconfigured_tls
when combined with HTTP/3.deflate
decompression from using the zlib decoder.Response::{text, text_with_charset}()
to strip BOM characters.v0.11.18
RequestBuilder::json()
method from overriding a previously setcontent-type
header. An existing value will be left in place.v0.11.17
v0.11.16
Cargo.toml
.v0.11.15
RequestBuilder
methods to split and reconstruct from its parts.connection_verbose
to logwrite_vectored
calls.v0.11.14
Proxy::no_proxy(url)
that works like the NO_PROXY environment variable.multipart::Part::headers(headers)
method to add custom headers.Response::bytes_stream()
.v0.11.13
ClientBuilder::dns_resolver()
option for custom DNS resolvers.ClientBuilder::tls_sni(bool)
option to enable or disable TLS Server Name Indication.Identity::from_pkcs8_pem()
constructor when usingnative-tls
.redirect::Policy::limited(0)
from following any redirects.v0.11.12
ClientBuilder::resolve_to_addrs()
which allows a slice of IP addresses to be specified for a single host.Response::upgrade()
to await whether the server agrees to an HTTP upgrade.v0.11.11
ClientBuilder
.ClientBuilder::http1_allow_obsolete_multiline_headers_in_responses()
.impl Service<Request>
forClient
and&'_ Client
.RequestBuilder::basic_auth()
.RequestBuilder::header
to not overridesensitive
if user explicitly set on aHeaderValue
.v0.11.10
Error::url()
to access the URL of an error.Response::extensions()
to access thehttp::Extensions
of a response.rustls-native-certs
to log an error instead of panicking when loading an invalid system certificate.v0.11.9
ClientBuilder::http09_responses(bool)
option to allow receiving HTTP/0.9 responses.v0.11.8
v0.11.7
blocking::ClientBuilder::resolve()
option, matching the async builder.From<tokio::fs::File>
forBody
.blocking
request-scoped timeout applying to bodies as well.rustls
to 0.20.v0.11.6
v0.11.5
ClientBuilder::http1_only()
method.tls::Version
type, andClientBuilder::min_tls_version()
andClientBuilder::max_tls_version()
methods.TryFrom<Request>
forhttp::Request
.Clone
forIdentity
.NO_PROXY
environment variable parsing to more closely match curl's. Comma-separated entries are now trimmed for whitespace, and*
is allowed to match everything.https_only
option.Body::as_bytes()
method.JsValue
.v0.11.4
ClientBuilder::resolve()
option to override DNS resolution for specific domains.native-tls-alpn
Cargo feature to use ALPN with the native-tls backend.ClientBuilder::deflate()
option anddeflate
Cargo feature to support decoding response bodies using deflate.RequestBuilder::version()
to allow setting the HTTP version of a request.rustls-tls
backend, when the server uses TLS v1.2 or v1.3.try_clone
toRequest
andRequestBuilder
v0.11.3
impl From<hyper::Body> for reqwest::Body
.RequestBuilder
.v0.11.2
CookieStore
trait to customize the type that stores and retrieves cookies for a session.cookie::Jar
as a defaultCookieStore
, easing creating some session cookies before creating theClient
.ClientBuilder::http2_adaptive_window()
option to configure an adaptive HTTP2 flow control behavior.ClientBuilder::http2_max_frame_size()
option to adjust the maximum HTTP2 frame size that can be received.IntoUrl
forString
, making it more convenient to create requests withformat!
.v0.11.1
ClientBuilder::tls_built_in_root_certs()
option to disable built-in root certificates.rustls-tls
glue to more often support ALPN to upgrade to HTTP/2.http://
if no scheme is found.runtime
feature.Request::new()
constructor.launchbadge/sqlx (sqlx)
v0.8.2
Compare Source
10 pull requests were merged this release cycle.
This release addresses a few regressions that have occurred, and refines SQLx's MSRV policy (see the FAQ).
Added
Changed
Fixed
v0.8.1
Compare Source
16 pull requests were merged this release cycle.
This release contains a fix for RUSTSEC-2024-0363.
Postgres users are advised to upgrade ASAP as a possible exploit has been demonstrated:
#3440 (comment)
MySQL and SQLite do not appear to be exploitable, but upgrading is recommended nonetheless.
Added
Changed
Fixed
v0.8.0
Compare Source
70 pull requests were merged this release cycle.
#2697 was merged the same day as release 0.7.4 and so was missed by the automatic CHANGELOG generation.
Breaking
Added
Changed
Fixed
clock
andstd
features ofworkspace.dependencies.chrono
.Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR has been generated by Renovate Bot.
aec1e4a78c
to07629ac22c
07629ac22c
to45e3ae0e09
45e3ae0e09
to379fc5d8c7
379fc5d8c7
to18ed1b8bf8
18ed1b8bf8
tof8c2391a26
f8c2391a26
toabb5b8d9d1
abb5b8d9d1
tod26add73ac
d26add73ac
tob62aa430e9
b62aa430e9
to1759b26a79
1759b26a79
toa0413ac6da
a0413ac6da
to82a4f32614
82a4f32614
tod6805ec7b1
d6805ec7b1
tof9299620b7
f9299620b7
tof282b27385
f282b27385
to66e943a07d
66e943a07d
tob09a997cb5
b09a997cb5
todb4a32c437
db4a32c437
to2b7c1a7545
2b7c1a7545
to1e229e3646
1e229e3646
to54cb5dc55d
54cb5dc55d
to339ffc19eb
339ffc19eb
to10077402b7
10077402b7
to1be1c116a7
1be1c116a7
to098e78c8b9
098e78c8b9
tob52c62ead6
b52c62ead6
to5725401884
5725401884
to65669e9f59
fix(deps): update all dependenciesto chore(deps): update all dependencies65669e9f59
tof73dbd5c57
f73dbd5c57
to53c05edc3b
53c05edc3b
toa04aa70ef6
chore(deps): update all dependenciesto fix(deps): update all dependenciesa04aa70ef6
tob50d7ce127
b50d7ce127
to604a089e27
604a089e27
to3ec7e85aab
3ec7e85aab
to43ef100131
43ef100131
to94554f8e84
94554f8e84
tobe6bfb1d80
be6bfb1d80
toc81d3520cf
c81d3520cf
to50a921ac61
50a921ac61
to2732f7d934
2732f7d934
toa24e5bd9f0
a24e5bd9f0
to96dc057043
96dc057043
to01b4410f97
01b4410f97
toe44ffbc124
e44ffbc124
to122bf7e1f1
122bf7e1f1
to3472b718a5
3472b718a5
to59d21bbd3f
59d21bbd3f
to93d9d433d8
93d9d433d8
to3f9f20a274
3f9f20a274
to8589ad4856
8589ad4856
to02a74473b2
02a74473b2
toe87a8f8bb1
e87a8f8bb1
to20d2d4275a
20d2d4275a
toe0c5ae115b
e0c5ae115b
tobc892b13a1
bc892b13a1
to3228931e5c
3228931e5c
to21c827e0c6
21c827e0c6
to403b2732eb
403b2732eb
tobfacd7c447
bfacd7c447
toe9d4df57aa
e9d4df57aa
to3d742211ae
3d742211ae
to0160abc4a8
0160abc4a8
to7fde5a7ef9
7fde5a7ef9
todfa1482c34
dfa1482c34
to4da9a1384f
4da9a1384f
tod374c6deaf
d374c6deaf
to99b75a354f
99b75a354f
to099da32d0b
099da32d0b
tof0f08f0c9f
f0f08f0c9f
to0307abb2d6
0307abb2d6
tof36056a658
f36056a658
toc0dfe609cd
c0dfe609cd
to38951b1e56
38951b1e56
tof18cdf61dd
f18cdf61dd
tob9469f24a0
b9469f24a0
toea5f48b6c8
ea5f48b6c8
toc5d3982be2
c5d3982be2
to5f04f02cdb
5f04f02cdb
to1aa62cdc36
1aa62cdc36
to199393c7bc
199393c7bc
to8584cab108
8584cab108
to03f3c567de
03f3c567de
toaaf25f9a89
aaf25f9a89
toc17d7c9939
c17d7c9939
to3c024d1723
3c024d1723
to3f7f19b5f1
3f7f19b5f1
to0064c86a3e
0064c86a3e
to6435e28aae
6435e28aae
tobd43ebdbad
bd43ebdbad
to3dab46eafc
3dab46eafc
to18b30fc6b9
18b30fc6b9
to6a4c13eee8
6a4c13eee8
to76af3e7224
76af3e7224
toac4be58f24
ac4be58f24
to2552790c9f
2552790c9f
toe441808926
e441808926
to959da3f0ba
959da3f0ba
toe564931db9
e564931db9
to875dbf8800
875dbf8800
to53b5f47952
53b5f47952
todd44bf8f88
dd44bf8f88
to46a14317b1
46a14317b1
to64d121b9d4
64d121b9d4
tod1a62f4dbc
d1a62f4dbc
to525b3eab4d
525b3eab4d
toc8adcf861a
c8adcf861a
to30d325759f
30d325759f
to605617d5b9
605617d5b9
todb1d01ddc7
db1d01ddc7
todd910bc189
dd910bc189
to89592408e1
89592408e1
todcdd06c066
dcdd06c066
to4cfa9be687
4cfa9be687
toa9b540a77f
a9b540a77f
to5c5b3f4f07
5c5b3f4f07
to6463880467
6463880467
to03c4deb550
03c4deb550
to34da556afd
34da556afd
tof8fb4d539c
f8fb4d539c
to4b2f28efee
4b2f28efee
to38e32be6c2
38e32be6c2
to59e7aeaedd
59e7aeaedd
to413c61f850
413c61f850
to92aa3bae60
92aa3bae60
to0872ecf937
0872ecf937
tof2a2504e03
f2a2504e03
to70fb356591
70fb356591
to1fbdc2a8cb
1fbdc2a8cb
toec355aea6b
ec355aea6b
to90199ba16f
90199ba16f
to1a99d55d85
1a99d55d85
to64c7b26f74
64c7b26f74
to98c3732804
98c3732804
toe40abed163
e40abed163
to1c72d0e848
1c72d0e848
to1d035535e0
1d035535e0
tob032499718
b032499718
to83bb383c98
83bb383c98
to8810c24291
8810c24291
tod04a1e937e
d04a1e937e
tod32d304e07
d32d304e07
to2f803fb4a0
2f803fb4a0
to0938d2cc47
0938d2cc47
toc9fa607b1e
c9fa607b1e
tob2011034d6
b2011034d6
to350eb211f7
350eb211f7
to6ac5a557ff
6ac5a557ff
toa54d8bfeb2
a54d8bfeb2
toca1934c85c
ca1934c85c
tob41f5f25ab
b41f5f25ab
to96a216186c
96a216186c
to4850b708bb
4850b708bb
to86cad75a5e
86cad75a5e
tob3958d0268
b3958d0268
to40e5376278
40e5376278
to71ccf6f782
71ccf6f782
tocfebfe9804
cfebfe9804
to628e5c8f55
628e5c8f55
to9b0c5be3c4
9b0c5be3c4
to618a2054eb
618a2054eb
to13ee1263ef
13ee1263ef
tof293648f6f
f293648f6f
tob5dda442dc
b5dda442dc
to48a5fe3c78
48a5fe3c78
tob572f8873a
b572f8873a
toad266ef9a0
ad266ef9a0
to461df8cc73
461df8cc73
to22c890845c
22c890845c
to2b8b2f8508
2b8b2f8508
tof8fe7be22d
f8fe7be22d
to5dc20ce6c4
5dc20ce6c4
to20a76aee64
20a76aee64
to78ac8aebd3
78ac8aebd3
tob14dd2741f
b14dd2741f
tod8c334502e
d8c334502e
to3c4ed96fa5
3c4ed96fa5
to6868aea05f
6868aea05f
to0dd016f830
0dd016f830
to6dbcbdb0c5
6dbcbdb0c5
tob0e86f2723
b0e86f2723
to6f8d6d656d
6f8d6d656d
toa53f68608a
a53f68608a
to96d1fdb399
96d1fdb399
to9c884e86ad
9c884e86ad
tobe192c78e6
be192c78e6
toa9e68d3f24
a9e68d3f24
tod755c727f9
d755c727f9
toc983f21b93
c983f21b93
to2b760c0cec
2b760c0cec
to1342247dc7
1342247dc7
tof8f6c5b928
f8f6c5b928
toacab8a4c77
acab8a4c77
to5313859557
5313859557
tod5f8ce01e7
d5f8ce01e7
to9b0557dc83
9b0557dc83
to1b22e1da8f
1b22e1da8f
to55e46b771d
55e46b771d
to73062933da
73062933da
tofbe9f72449
fbe9f72449
to051773ce8a
051773ce8a
toecf136432d
ecf136432d
to1c7eb4cf7c
1c7eb4cf7c
tocb65112e73
cb65112e73
toadff3516e9
adff3516e9
to16c7a912af
16c7a912af
tof2f3734483
f2f3734483
to2db18760fe
2db18760fe
to69c2619ea1
69c2619ea1
to627088118f
627088118f
tob893a9f556
b893a9f556
to896b96d645
896b96d645
tob8e6e6669b
b8e6e6669b
toe450afcc06
e450afcc06
to361818a1d9
361818a1d9
to6f70f56316
6f70f56316
tod96aee2927
d96aee2927
to5961e58a5c
5961e58a5c
toa15b60b6cf
a15b60b6cf
to74901419db
74901419db
tod2315c589e
d2315c589e
to694e073cc7
694e073cc7
to05a3f8e5c7
05a3f8e5c7
to0cc80f04de
0cc80f04de
tobad7c776ee
bad7c776ee
toa1d59ddcb3
a1d59ddcb3
to65b0648d08
65b0648d08
to9d5200e832
9d5200e832
to22e90dd9af
22e90dd9af
to4d300fb32b
4d300fb32b
to8bfacc4e38
8bfacc4e38
to2e942a25f6
2e942a25f6
to6eb9d63c99
6eb9d63c99
tof9c7af7901
f9c7af7901
to7a9fdb4af5
7a9fdb4af5
to5d77a6101f
5d77a6101f
to0967abc387
0967abc387
toe37d24577e
e37d24577e
to7f82f77cee
7f82f77cee
toedadbf197b
edadbf197b
toa8d1ff3a36
a8d1ff3a36
to52f57d073f
52f57d073f
to44b9538cfc
44b9538cfc
to70166c4eab
70166c4eab
tobbc97493f5
bbc97493f5
toa0525aaa48
a0525aaa48
toe0a55c19e8
e0a55c19e8
toead502c9f9
ead502c9f9
to24f3795c54
24f3795c54
to85ade1d39a
85ade1d39a
tof6f020fed0
f6f020fed0
tobd0157f619
bd0157f619
to9fb895194e
9fb895194e
to7ccdc9ec7b
7ccdc9ec7b
to28d32a447b
28d32a447b
tof5642c82cd
f5642c82cd
tod04517d6f4
d04517d6f4
to13302d8ad5
13302d8ad5
tofb06a14753
fb06a14753
tob47309a49c
b47309a49c
toee38b60470
ee38b60470
to5b51cda362
5b51cda362
to276e405c54
276e405c54
toe0407f2b08
e0407f2b08
toe5f84249a8
e5f84249a8
to2948483feb
2948483feb
to01598ba75e
01598ba75e
toe03f818338
e03f818338
toc07af54daf
c07af54daf
to6464838f55
6464838f55
tob95b161528
b95b161528
to43e5856d96
43e5856d96
toc1564721fe
c1564721fe
tobf490be668
bf490be668
tofe30fbe658
fe30fbe658
toa7aca60c70
a7aca60c70
to527ba8cec9
527ba8cec9
todd7c3f05bb
dd7c3f05bb
todcac1eae8c
dcac1eae8c
tof928be6209
f928be6209
toaf2ed1b337
af2ed1b337
to6018bff638
6018bff638
to8e372fc11b
8e372fc11b
to4b2a15daa7
4b2a15daa7
to8b09203426
8b09203426
to8678b3f30f
8678b3f30f
to1d63783717
1d63783717
to8ac526cd05
8ac526cd05
to78c6a7ab81
78c6a7ab81
to9972ed4cbc
9972ed4cbc
to726c11d5e5
726c11d5e5
to97c002a302
97c002a302
to134b1a47fd
134b1a47fd
to6cc94522aa
6cc94522aa
to0cc89758f6
0cc89758f6
toc9726ba22e
c9726ba22e
to12107fb7c7
12107fb7c7
to44a779e6c6
44a779e6c6
toab998cab22
ab998cab22
to7e1882123b
7e1882123b
toa805ee9c38
a805ee9c38
tode87635c58
de87635c58
to2a5acac665
2a5acac665
to4ce191f93a
4ce191f93a
tof6d684183c
f6d684183c
toae33456db9
ae33456db9
to8047731063
8047731063
to9c49370940
9c49370940
to88be80bca6
88be80bca6
to51295dbc3c
51295dbc3c
tof208b2ff42
f208b2ff42
tofc1231fb5f
fc1231fb5f
to9351a2a25a
9351a2a25a
tobc4fb2822f
bc4fb2822f
to942a83c841
942a83c841
toe9384b2585
e9384b2585
to547c468808
547c468808
to966ce2f67f
966ce2f67f
to5002c6f3de
5002c6f3de
to9f244fc33e
9f244fc33e
toeb5f800ac1
eb5f800ac1
toa5b5b616b8
a5b5b616b8
toa050760e26
a050760e26
toca5acb320d
ca5acb320d
to9986ae759e
9986ae759e
to2dc818a2b7
2dc818a2b7
to260a2e193a
260a2e193a
to3fa1db0dda
3fa1db0dda
toec7fad9004
ec7fad9004
tob4e435bcc2
b4e435bcc2
to5debd939d7
5debd939d7
to1e6fe9c98f
1e6fe9c98f
to03382cc888
03382cc888
to83da772ede
83da772ede
to39a427e44c
39a427e44c
to20dd96dd47
20dd96dd47
to65d1587b04
65d1587b04
to42a3c9f8f4
42a3c9f8f4
toc0abbe52a1
c0abbe52a1
to4a44c82b25
4a44c82b25
toad7c5806fa
ad7c5806fa
to77f5cd448c
77f5cd448c
to07c5291f8a
07c5291f8a
to3ecc7587ce
3ecc7587ce
to2eb24b0c94
2eb24b0c94
to3a52e874dd
3a52e874dd
to3a8905364c
3a8905364c
toefbdf5b2bc
efbdf5b2bc
to46e0f2e06e
46e0f2e06e
to3d3cf372bd
3d3cf372bd
to65202fdda5
65202fdda5
toda29cee79f
da29cee79f
tocf263b36c2
cf263b36c2
to73ebe39f00
73ebe39f00
to462c7a15a8
462c7a15a8
to432be60876
432be60876
toc98a7228b8
c98a7228b8
toeee405fdfb
eee405fdfb
toca004f0236
ca004f0236
to241aa255ce
241aa255ce
to06fe7e5169
06fe7e5169
tobf03af2264
bf03af2264
tob42c1dfa31
b42c1dfa31
to427f73617b
427f73617b
tocdbcce8e7c
cdbcce8e7c
to4b2ba78345
4b2ba78345
to1de25be4f1
1de25be4f1
tod7482b6b35
d7482b6b35
to273fb3bd3a
273fb3bd3a
tobee7a69e8c
bee7a69e8c
to195e2d1be0
195e2d1be0
to1e46556d98
1e46556d98
to1c2e68084a
1c2e68084a
to7e2f22874b
7e2f22874b
toa6c48cd6a5
a6c48cd6a5
tocdc9b0aa93
cdc9b0aa93
tod73fdeb300
d73fdeb300
tofc1853d1fb
fc1853d1fb
to218a198700
218a198700
tob4ec70611e
b4ec70611e
to8565b31273
8565b31273
to1a69a549af
1a69a549af
tocc2e0166b6
cc2e0166b6
todb3fe23624
db3fe23624
toa186f34472
a186f34472
to09807e4cdd
fix(deps): update all dependenciesto chore(deps): update all dependencies09807e4cdd
toebdd1fd71e
ebdd1fd71e
to6800be7db9
chore(deps): update all dependenciesto fix(deps): update all dependencies6800be7db9
tof28035fb28