Skip to content

Bump warp from 0.1.19 to 0.2.3#35

Closed
dependabot-preview[bot] wants to merge 1 commit intomasterfrom
dependabot/cargo/warp-0.2.3
Closed

Bump warp from 0.1.19 to 0.2.3#35
dependabot-preview[bot] wants to merge 1 commit intomasterfrom
dependabot/cargo/warp-0.2.3

Conversation

@dependabot-preview
Copy link
Copy Markdown

Bumps warp from 0.1.19 to 0.2.3.

Release notes

Sourced from warp's releases.

v0.2.3

  • Features:
    • Add warp::compression filters, which will compress response bodies.
    • Add warp::header::value() filter to get a request HeaderValue.
    • Add request_headers method to warp::log::Info.
    • Add max_frame_size to warp::ws::Ws builder.
    • Add remote_addr to warp::test::RequestBuilder.
    • Add try_bind_with_graceful_shutdown to warp::Server builder.
    • Add serve_incoming_with_graceful_shutdown to warp::Server builder.
  • Fixes:
    • Fix warp::addr::remote when used with Server::tls.
    • Fix panic in warp::path::{peek, tail, full} filters when the request URI is in authority-form or asterisk-form.

v0.2.2

  • Features:
    • Implement Reply for all Box<T> where T: Reply.
    • Add name methods to MissingHeader, InvalidHeader, and MissingCookie rejections.
    • Add warp::ext::optional() filter that optionally retrieves an extension from the request.
  • Fixes:
    • Fix the sending of pings when a user sends a ws::Message::ping().

v0.2.1

  • Features:
    • Add close and close_with constructors to warp::ws::Message.
  • Fixes:
    • Fix warp::fs filters using a very small read buffer.

v0.2.0

  • Features:
    • Update to std::future, adding async/await support!
    • Add warp::service() to convert a Filter into a tower::Service.
    • Implement Reply for Box<dyn Reply>.
  • Changes:
    • Refactored Rejection system (#311).
    • Change path! macro to assume a path::end() by default, with explicit / .. to allow building a prefix (#359).
    • Change warp::path(str) to accept any AsRef<str> argument.
    • Rename "2"-suffixed filters and types (get2 to get, ws2 to ws, etc).
    • Filter::{or, or_else, recover} now require Self::Error=Rejection. This helps catch filters that didn't make sense (like warp::any().or(warp::get())).
    • Change several warp::body filters (#345).
    • Change warp::cors() to return a warp::cors::Builder which still implements Wrap, but can also build a cheaper-to-clone wrapper.
    • Change warp::multipart stream API to allow for errors when streaming.
    • Change warp::sse to no longer return a Filter, adds warp::sse::reply to do what Sse::reply did.
    • Change Server::tls() to return a TLS server builder (#340).
    • Change internal warp::never::Never usage with std::convert::Infallible.
    • Remove warp::ext::set() function (#222).
    • Remove deprecated warp::cookie::optional_value().

v0.1.20

  • Features:
... (truncated)
Changelog

Sourced from warp's changelog.

v0.2.3 (May 19, 2020)

  • Features:
    • Add warp::compression filters, which will compress response bodies.
    • Add warp::header::value() filter to get a request HeaderValue.
    • Add request_headers method to warp::log::Info.
    • Add max_frame_size to warp::ws::Ws builder.
    • Add remote_addr to warp::test::RequestBuilder.
    • Add try_bind_with_graceful_shutdown to warp::Server builder.
    • Add serve_incoming_with_graceful_shutdown to warp::Server builder.
  • Fixes:
    • Fix warp::addr::remote when used with Server::tls.
    • Fix panic in warp::path::{peek, tail, full} filters when the request URI is in authority-form or asterisk-form.

v0.2.2 (March 3, 2020)

  • Features:
    • Implement Reply for all Box<T> where T: Reply.
    • Add name methods to MissingHeader, InvalidHeader, and MissingCookie rejections.
    • Add warp::ext::optional() filter that optionally retrieves an extension from the request.
  • Fixes:
    • Fix the sending of pings when a user sends a ws::Message::ping().

v0.2.1 (January 23, 2020)

  • Features:
    • Add close and close_with constructors to warp::ws::Message.
  • Fixes:
    • Fix warp::fs filters using a very small read buffer.

v0.2.0 (January 16, 2020)

  • Features:
    • Update to std::future, adding async/await support!
    • Add warp::service() to convert a Filter into a tower::Service.
    • Implement Reply for Box<dyn Reply>.
  • Changes:
    • Refactored Rejection system (#311).
    • Change path! macro to assume a path::end() by default, with explicit / .. to allow building a prefix (#359).
    • Change warp::path(str) to accept any AsRef<str> argument.
    • Rename "2"-suffixed filters and types (get2 to get, ws2 to ws, etc).
    • Filter::{or, or_else, recover} now require Self::Error=Rejection. This helps catch filters that didn't make sense (like warp::any().or(warp::get())).
    • Change several warp::body filters (#345).
    • Change warp::cors() to return a warp::cors::Builder which still implements Wrap, but can also build a cheaper-to-clone wrapper.
    • Change warp::multipart stream API to allow for errors when streaming.
    • Change warp::sse to no longer return a Filter, adds warp::sse::reply to do what Sse::reply did.
    • Change Server::tls() to return a TLS server builder (#340).
    • Change internal warp::never::Never usage with std::convert::Infallible.
    • Remove warp::ext::set() function (#222).
    • Remove deprecated warp::cookie::optional_value().
... (truncated)
Commits
  • 9b05da2 v0.2.3
  • caecd5d add docs
  • c8a5dbd Add serve_incoming_with_graceful_shutdown
  • 68e26af Fix panic in path::{peek, tail, full} when URI is in authority or asterisk form
  • c983a2d Remove Content-Length header when using a compression filter
  • f9e9be2 Add warp::header::value() filter to HeaderValue
  • 2fa40b9 Update LICENSE year range to 2018-2020
  • 1e52b27 Bump LICENSE year
  • a6fcf76 update example with more complex routes (#561)
  • 8eec33b Create FUNDING.yml
  • Additional commits viewable in compare view

Dependabot compatibility score

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 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)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

Bumps [warp](https://github.com/seanmonstar/warp) from 0.1.19 to 0.2.3.
- [Release notes](https://github.com/seanmonstar/warp/releases)
- [Changelog](https://github.com/seanmonstar/warp/blob/master/CHANGELOG.md)
- [Commits](seanmonstar/warp@v0.1.19...v0.2.3)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
@dependabot-preview dependabot-preview bot added the dependencies Pull requests that update a dependency file label Jun 1, 2020
@dependabot-preview
Copy link
Copy Markdown
Author

Superseded by #45.

@dependabot-preview dependabot-preview bot deleted the dependabot/cargo/warp-0.2.3 branch August 1, 2020 05:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants