Skip to content
This repository has been archived by the owner on Jul 19, 2020. It is now read-only.

Update warp requirement from 0.1.20 to 0.2.0 #227

Closed
wants to merge 1 commit into from

Conversation

dependabot-preview[bot]
Copy link
Contributor

@dependabot-preview dependabot-preview bot commented Jan 17, 2020

Updates the requirements on warp to permit the latest version.

Release notes

Sourced from warp's releases.

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().
Changelog

Sourced from warp's changelog.

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().

v0.1.20 (September 17, 2019)

  • Features:
    • Implement Clone for the warp::cors filter.
    • Add into_bytes method for warp::ws::Message.

v0.1.19 (August 16, 2019)

  • Features:
    • Make warp::multipart and wrap::ws support optional, though enabled by default.
  • Fixes:
    • Fix warp::fs::dir filter to reject paths containing backslashes.

v0.1.18 (July 25, 2019)

  • Features:
    • Add warp::multipart support.

v0.1.17 (July 8, 2019)

  • Features:
    • Export all built-in Rejection causes in the warp::reject module.
    • Add Server::try_bind as fallible bind methods.

v0.1.16 (June 11, 2019)

  • Features:
    • Unseal the Reply trait: custom types can now implement Reply.
... (truncated)
Commits
  • db94f94 v0.2.0
  • a9fb5d6 Disconnect reply errors from rejections
  • c37ea7e Reduce Rejection Debug noise printing units
  • d7856b8 Refactor combined rejections debug output to look like a list
  • d543cb5 Update errors example as rejections example
  • 467cd6a Allow or_else and recover to return infallible futures
  • 48cf25c Refactor todos example to show modular API building and testing
  • 169f38d Set content-length and content-type when sending test bodies
  • 488407f Remove panic branch in Message::as_bytes. (#355)
  • 69a7eff Change warp::cors() to return a Builder
  • 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 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)

@dependabot-preview dependabot-preview bot added the dependencies Pull requests that update a dependency file label Jan 17, 2020
Updates the requirements on [warp](https://github.com/seanmonstar/warp) to permit the latest version.
- [Release notes](https://github.com/seanmonstar/warp/releases)
- [Changelog](https://github.com/seanmonstar/warp/blob/master/CHANGELOG.md)
- [Commits](seanmonstar/warp@v0.1.20...v0.2.0)

Signed-off-by: dependabot-preview[bot] <[email protected]>
@dependabot-preview dependabot-preview bot force-pushed the dependabot/cargo/warp-0.2.0 branch from 8d47a01 to d5fc8d1 Compare January 22, 2020 23:39
@dependabot-preview
Copy link
Contributor Author

Superseded by #230.

@dependabot-preview dependabot-preview bot deleted the dependabot/cargo/warp-0.2.0 branch January 24, 2020 07:12
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants