Updates the requirements on rocket_contrib to permit the latest version.
Release notes
*Sourced from [rocket_contrib's releases](https://github.com/SergioBenitez/Rocket/releases).*
> ## Rocket v0.4.0
> See the [CHANGELOG](https://github.com/SergioBenitez/Rocket/CHANGELOG.md) and [news article](https://rocket.rs/v0.4/news/2018-12-08-version-0.4/) for more information.
Changelog
*Sourced from [rocket_contrib's changelog](https://github.com/SergioBenitez/Rocket/blob/master/CHANGELOG.md).*
> # Version 0.4.0 (Dec 06, 2018)
>
> ## New Features
>
> This release includes the following new features:
>
> * Introduced [Typed URIs].
> * Introduced [ORM agnostic database support].
> * Introduced [Request-Local State].
> * Introduced mountable static-file serving via [`StaticFiles`].
> * Introduced automatic [live template reloading].
> * Introduced custom stateful handlers via [`Handler`].
> * Introduced [transforming] data guards via [`FromData::transform()`].
> * Introduced revamped [query string handling].
> * Introduced the [`SpaceHelmet`] security and privacy headers fairing.
> * Private cookies are gated behind a `private-cookies` default feature.
> * Added [derive for `FromFormValue`].
> * Added [derive for `Responder`].
> * Added [`Template::custom()`] for customizing templating engines including
> registering filters and helpers.
> * Cookies are automatically tracked and propagated by [`Client`].
> * Private cookies can be added to local requests with
> [`LocalRequest::private_cookie()`].
> * Release builds default to the `production` environment.
> * Keep-alive can be configured via the `keep_alive` configuration parameter.
> * Allow CLI colors and emoji to be disabled with `ROCKET_CLI_COLORS=off`.
> * Route `format` accepts [shorthands] such as `json` and `html`.
> * Implemented [`Responder` for `Status`].
> * Added [`Response::cookies()`] for retrieving response cookies.
> * All logging is disabled when `log` is set to `off`.
> * Added [`Metadata`] guard for retrieving templating information.
> * The [`Uri`] type parses URIs according to RFC 7230 into one of [`Origin`],
> [`Absolute`], or [`Authority`].
> * Added [`Outcome::and_then()`], [`Outcome::failure_then()`], and
> [`Outcome::forward_then()`].
> * Implemented `Responder` for `&[u8]`.
> * Any `T: Into>` can be [`mount()`]ed.
> * [Default rankings] range from -6 to -1, differentiating on static query
> strings.
> * Added [`Request::get_query_value()`] for retrieving a query value by key.
> * Applications can launch without a working directory.
> * Added [`State::from()`] for constructing `State` values.
>
> [`SpaceHelmet`]: https://api.rocket.rs/v0.4/rocket_contrib/helmet/index.html
> [`State::from()`]: https://api.rocket.rs/v0.4/rocket/struct.State.html#method.from
> [Typed URIs]: https://rocket.rs/v0.4/guide/responses/#typed-uris
> [ORM agnostic database support]: https://rocket.rs/v0.4/guide/state/#databases
> [`Template::custom()`]: https://api.rocket.rs/v0.4/rocket_contrib/templates/struct.Template.html#method.custom
> [`LocalRequest::private_cookie()`]: https://api.rocket.rs/v0.4/rocket/local/struct.LocalRequest.html#method.private_cookie
> [`LocalRequest`]: https://api.rocket.rs/v0.4/rocket/local/struct.LocalRequest.html
> ... (truncated)
Commits
- See full diff in [compare view](https://github.com/SergioBenitez/Rocket/commits/v0.4.0)
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 will not automatically merge this PR because this dependency is pre-1.0.0.
Note: This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.
You can always request more updates by clicking Bump now in your Dependabot dashboard.
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 cancel merge` will cancel a previously requested merge
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major 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](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- 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)
Finally, you can contact us by mentioning @dependabot.
Updates the requirements on rocket_contrib to permit the latest version.
Release notes
*Sourced from [rocket_contrib's releases](https://github.com/SergioBenitez/Rocket/releases).* > ## Rocket v0.4.0 > See the [CHANGELOG](https://github.com/SergioBenitez/Rocket/CHANGELOG.md) and [news article](https://rocket.rs/v0.4/news/2018-12-08-version-0.4/) for more information.Changelog
*Sourced from [rocket_contrib's changelog](https://github.com/SergioBenitez/Rocket/blob/master/CHANGELOG.md).* > # Version 0.4.0 (Dec 06, 2018) > > ## New Features > > This release includes the following new features: > > * Introduced [Typed URIs]. > * Introduced [ORM agnostic database support]. > * Introduced [Request-Local State]. > * Introduced mountable static-file serving via [`StaticFiles`]. > * Introduced automatic [live template reloading]. > * Introduced custom stateful handlers via [`Handler`]. > * Introduced [transforming] data guards via [`FromData::transform()`]. > * Introduced revamped [query string handling]. > * Introduced the [`SpaceHelmet`] security and privacy headers fairing. > * Private cookies are gated behind a `private-cookies` default feature. > * Added [derive for `FromFormValue`]. > * Added [derive for `Responder`]. > * Added [`Template::custom()`] for customizing templating engines including > registering filters and helpers. > * Cookies are automatically tracked and propagated by [`Client`]. > * Private cookies can be added to local requests with > [`LocalRequest::private_cookie()`]. > * Release builds default to the `production` environment. > * Keep-alive can be configured via the `keep_alive` configuration parameter. > * Allow CLI colors and emoji to be disabled with `ROCKET_CLI_COLORS=off`. > * Route `format` accepts [shorthands] such as `json` and `html`. > * Implemented [`Responder` for `Status`]. > * Added [`Response::cookies()`] for retrieving response cookies. > * All logging is disabled when `log` is set to `off`. > * Added [`Metadata`] guard for retrieving templating information. > * The [`Uri`] type parses URIs according to RFC 7230 into one of [`Origin`], > [`Absolute`], or [`Authority`]. > * Added [`Outcome::and_then()`], [`Outcome::failure_then()`], and > [`Outcome::forward_then()`]. > * Implemented `Responder` for `&[u8]`. > * Any `T: IntoCommits
- See full diff in [compare view](https://github.com/SergioBenitez/Rocket/commits/v0.4.0)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 will not automatically merge this PR because this dependency is pre-1.0.0.
Note: This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.
You can always request more updates by clicking
Bump now
in your Dependabot dashboard.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 cancel merge` will cancel a previously requested merge - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major 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](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Automerge options (never/patch/minor, and dev/runtime dependencies) - 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) Finally, you can contact us by mentioning @dependabot.