build(deps): bump the http group with 4 updates
Bumps the http group with 4 updates: hyper, tower-http, tower and rustls.
Updates hyper from 0.14.30 to 1.4.1
Release notes
Sourced from hyper's releases.
v1.4.1
Bug Fixes
- http1: reject final chunked if missing 0 (8e5de1bb)
v1.4.0
Bug Fixes
- http2: stop removing "Trailer" header in HTTP/2 responses as per RFC 9110 (#3648) (a3269f7a)
- server: start header read timeout immediately (#3185) (0eb1b6cf)
Features
- client:
- http1: add support for receiving trailer fields (#3637) (ac84af6b, closes #2703)
- server: add
Builder::auto_date_header(bool)to allow disabling Date headers (721785ef)- service: implement Service for reference types (#3607) (eade122d)
New Contributors
@lqsmade their first contribution in hyperium/hyper#3648@edwardwcmade their first contribution in hyperium/hyper#3644@Tackleboxmade their first contribution in hyperium/hyper#3656@krakow10made their first contribution in hyperium/hyper#3658@howardjohnmade their first contribution in hyperium/hyper#3655@lperlakimade their first contribution in hyperium/hyper#3607@Urgaumade their first contribution in hyperium/hyper#3678@renshuncuimade their first contribution in hyperium/hyper#3688@adamrkmade their first contribution in hyperium/hyper#3694@jgraefmade their first contribution in hyperium/hyper#3667@mstyuramade their first contribution in hyperium/hyper#3682Full Changelog: https://github.com/hyperium/hyper/compare/v1.3.1...v1.4.0
v1.3.1
Bug Fixes
- client: revert auto content-length header for some requests (#3633)
v1.3.0
Bug Fixes
... (truncated)
Changelog
Sourced from hyper's changelog.
v1.4.1 (2024-07-09)
Bug Fixes
- http1: reject final chunked if missing 0 (8e5de1bb)
v1.4.0 (2024-07-01)
Bug Fixes
- http2: stop removing "Trailer" header in HTTP/2 responses as per RFC 9110 (#3648) (a3269f7a)
- server: start header read timeout immediately (#3185) (0eb1b6cf)
Features
- client:
- http1: add support for receiving trailer fields (#3637) (ac84af6b, closes #2703)
- server: add
Builder::auto_date_header(bool)to allow disabling Date headers (721785ef)- service: implement Service for reference types (#3607) (eade122d)
v1.3.1 (2024-04-16)
Bug Fixes
- client: revert auto content-length header for some requests (#3633)
v1.3.0 (2024-04-15)
Bug Fixes
- client: send content-length even with no body (172fdfaf)
- http2:
- server:
Features
... (truncated)
Commits
4fda6b3v1.4.18e5de1bfix(http1): reject final chunked if missing 0fdc1916v1.4.04ffaad5feat(client): addSendRequest::try_send_request()method (#3691)56c3cd5feat(client): removeSend +Syncbounds requirement ofhttp2::Connectione...9580b35feat(client): remove 'static lifetime bound on http1/2 client IO (#3667)3e435cfdocs(client): Include exec arg in client::conn::http2::handshake doc (#3694)111d038docs(client): better describe Uri forms are sent as-isaa7ff60docs(client): replace example on mod page with link to guide7cedc13perf(client): create DispatchGone error only if needed- Additional commits viewable in compare view
Updates tower-http from 0.5.2 to 0.6.1
Release notes
Sourced from tower-http's releases.
v0.6.1
Fixed
- decompression: reuse scratch buffer to significantly reduce allocations and improve performance (#521)
New Contributors
@magurotunamade their first contribution in tower-rs/tower-http#521v0.6.0
Changed:
bodymodule is disabled except forcatch-panic,decompression-*,fs, orlimitfeatures (BREAKING) (#477)- Update to
tower0.5 (#503)Fixed
- fs: Precompression of static files now supports files without a file extension (#507)
#477: tower-rs/tower-http#477 #503: tower-rs/tower-http#503 #507: tower-rs/tower-http#507
Commits
4bca529v0.6.19fdf0eb(de)compression: reduce memory allocation to improve performance (#521)aeca262Release tower-http v0.6.0 (#518)95e28bffs: Fix serving precompressed files without an extension (#507)c999623Fix -Zminimal-versions build (#514)e526894Renamedefault_featurestodefault-features(#513)0138f9eFix CI (#517)3f98dc1Bump tower to v0.5 (#503)5a6a4a8decompression: propagate size_hint when body is identity (#501)78e95d3ci: Pin tokio for msrv (#502)- Additional commits viewable in compare view
Updates tower from 0.3.1 to 0.5.1
Release notes
Sourced from tower's releases.
tower 0.5.1
- Fix minimum version of
tower-layerdependency (#787)tower 0.5.0
Fixed
- util:
BoxServiceis nowSync(#702)Changed
- util: Removed deprecated
ServiceExt::ready_andmethod andReadyAndfuture (#652)- retry: Breaking Change
retry::Policy::retrynow accepts&mut Reqand&mut Resinstead of the previous mutable versions. This increases the flexibility of the retry policy. To update, update your method signature to includemutfor both parameters. (#584)- retry: Breaking Change Change Policy to accept &mut self (#681)
- retry: Add generic backoff utilities (#685)
- retry: Add Budget trait. This allows end-users to implement their own budget and bucket implementations. (#703)
- reconnect: Breaking Change Remove unused generic parameter from
Reconnect::new(#755)- ready-cache: Allow iteration over ready services (#700)
- discover: Implement
Clonefor Change (#701)- util: Add a BoxCloneServiceLayer (#708)
- rng: use a simpler random 2-sampler (#716)
- filter: Derive
CloneforAsyncFilterLayer(#731)- general: Update IndexMap (#741)
- MSRV: Increase MSRV to 1.63.0 (#741)
#702: tower-rs/tower#702 #652: tower-rs/tower#652 #584: tower-rs/tower#584 #681: tower-rs/tower#681 #685: tower-rs/tower#685 #703: tower-rs/tower#703 #755: tower-rs/tower#755 #700: tower-rs/tower#700 #701: tower-rs/tower#701 #708: tower-rs/tower#708 #716: tower-rs/tower#716 #731: tower-rs/tower#731 #741: tower-rs/tower#741
tower 0.4.13
Added
- load_shed: Public constructor for
Overloadederror (#661)Fixed
- util: Fix hang with
call_allwhen theStreamof requests is pending
... (truncated)
Commits
7155101Prepare release of v0.5.1 (#791)b2c48b4Bump dependency on tower-layer (#787)fec9e55tower-layer: drop versions from dev dependencies (#782)646804dchore: prepare to release tower-0.5.0, tower-layer-0.3.3, tower-service-0.3.3...7202cfechore: fix a few typos (#780)85080a5use workspace dependencies for tower (#778)88a7d3efix warnings found when running check/doc commands (#779)a6e98a7chore: update GitHub Actions CI (#740)74e925dchore: fix spelling errors (#775)89ac74ffeat: Make new functions const when possible (#760)- Additional commits viewable in compare view
Updates rustls from 0.23.13 to 0.23.14
Commits
cf736e3Prepare 0.23.14262ae99Accept kyber deprecationc9f5734Take aws-lc-rs 1.100560938Take latest bogo release7bf82dcSendillegal_parameteralert on illegal groupd752eb2Sendillegal_parameteralert on invalid key share2d3b7abdefault crypto provider improvementsbcc295dFix newcargo docwarnings in examplese7dd2fdfips.rs: reflect certificate issuance for aws-lc 2.0.058a5891fix(deps): update rust crate brotli to v7- 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