- [
#1548,93e88b0] Fixed an issue that prevented compilation under Windows Subsystem for Linux v1. - Updated
OutcomeTryimplementation to v2 in latest nightly. - Minimum required
rustcis1.54.0-nightly (2021-05-18).
- Updated
base64dependency to0.13.
- [
86bd7c] Added default and configurable read/write timeouts:read_timeoutandwrite_timeout. - [
c24a96] Added thessefeature, which enables flushing by returningio::ErrorKind::WouldBlock.
- Fixed broken doc links in
contrib. - Fixed database library versions in
contribdocs.
- Updated source code for Rust 2018.
- UI tests now use
trybuildinstead ofcompiletest-rs.
- [#1312,
89150f] Fixed a low-severity, minimal impact soundness issue inLocalRequest::clone(). - [#1263,
376f74] Fixed a cookie serialization issue that led to incorrect cookie deserialization in certain cases. - Removed dependency on
ringfor private cookies and thus Rocket, by default. - Added
Origin::map_path()for manipulatingOriginpaths. - Added
handler::Outcome::from_or_forward(). - Added
Options::NormalizeDirsoption toStaticFiles. - Improved accessibility of default error HTML.
- Fixed various typos.
- Removed use of unsupported
cfg(debug_assertions)inCargo.toml, allowing for builds on latest nightlies.
- Fixed various broken links.
- Added a new
Debug500ResponderthatDebug-prints its contents on response. - Specialization on
Resultwas deprecated.Debugcan be used in place of non-Respondererrors. - Fixed an issue that resulted in cookies not being set on error responses.
- Various
Debugimplementations on Rocket types now respect formatting options. - Added
Responders for various HTTP status codes:NoContent,Unauthorized,Forbidden, andConflict. FromParamis implemented forNonZerocore types.
- Docs for Rocket-generated macros are now hidden.
- Generated code now works even when prelude imports like
Some,Ok, andErrare shadowed. - Error messages referring to responder types in routes now point to the type correctly.
- All code examples in the guide are now tested and guaranteed to compile.
- All macros are documented in the
corecrate;rocket_codegenmakes no appearances.
- CI was moved from Travis to Azure Pipelines; Windows support is tested.
- Rocket's chat moved to Matrix and Freenode.
- Replaced use of
FnBoxwithBox<dyn FnOnce>. - Removed the stablized feature gates
try_fromandtranspose_result. - Derive macros are reexported alongside their respective traits.
- Minimum required
rustcis1.35.0-nightly (2019-04-05).
JsonValuenow implementsFromIterator.non_snake_caseerrors are silenced in generated code.- Minimum required
rustcis1.33.0-nightly (2019-01-03).
- Allow setting custom ranks on
StaticFilesviaStaticFiles::rank(). MsgPackcorrectly sets a MessagePack Content-Type on responses.
- Fixed typos across rustdocs and guide.
- Documented library versions in contrib database documentation.
- Updated internal dependencies to their latest versions.
- Rocket's default
ServerHTTP header no longer overrides a user-set header. - Fixed encoding and decoding of certain URI characters.
- Compiler diagnostic information is more reliably produced.
- Database pool types now implement
DerefMut. - Added support for memcache connection pools.
- Stopped depending on default features from core.
- Fixed many typos across the rustdocs and guide.
- Added guide documentation on mounting more than one route at once.
- Testing no longer requires "bootstrapping".
- Removed deprecated
isattydependency in favor ofatty.
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
SpaceHelmetsecurity and privacy headers fairing. - Private cookies are gated behind a
private-cookiesdefault 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
productionenvironment. - Keep-alive can be configured via the
keep_aliveconfiguration parameter. - Allow CLI colors and emoji to be disabled with
ROCKET_CLI_COLORS=off. - Route
formataccepts shorthands such asjsonandhtml. - Implemented
ResponderforStatus. - Added
Response::cookies()for retrieving response cookies. - All logging is disabled when
logis set tooff. - Added
Metadataguard for retrieving templating information. - The
Uritype parses URIs according to RFC 7230 into one ofOrigin,Absolute, orAuthority. - Added
Outcome::and_then(),Outcome::failure_then(), andOutcome::forward_then(). - Implemented
Responderfor&[u8]. - Any
T: Into<Vec<Route>>can bemount()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 constructingStatevalues.
The rocket_codegen crate has been entirely rewritten using to-be-stable
procedural macro APIs. We expect nightly breakages to drop dramatically, likely
to zero, as a result. The new prelude import for Rocket applications is:
- #![feature(plugin)]
- #![plugin(rocket_codegen)]
+ #![feature(proc_macro_hygiene, decl_macro)]
- extern crate rocket;
+ #[macro_use] extern crate rocket;The rocket_codegen crate should not be a direct dependency. Remove it
from your Cargo.toml:
[dependencies]
- rocket = "0.3"
+ rocket = "0.4"
- rocket_codegen = "0.3"This release includes many breaking changes. These changes are listed below along with a short note about how to handle the breaking change in existing applications when applicable.
-
Route and catcher attributes respect function privacy.
To mount a route or register a catcher outside of the module it is declared, ensure that the handler function is marked
puborcrate. -
Query handling syntax has been completely revamped.
A query parameter of
<param>is now<param..>. Consider whether your application benefits from the revamped query string handling. -
The
#[error]attribute anderrors!macro were removed.Use
#[catch]andcatchers!instead. -
Rocket::catch()was renamed toRocket::register().Change calls of the form
.catch(errors![..])to.register(catchers![..]). -
The
#[catch]attribute only accepts functions with 0 or 1 argument.Ensure the argument to the catcher, if any, is of type
&Request. -
json!returns aJsonValue, no longer needs wrapping.Change instances of
Json(json!(..))tojson!and change the corresponding type toJsonValue. -
All environments default to port 8000.
Manually configure a port of
80for thestageandproductionenvironments for the previous behavior. -
Release builds default to the production environment.
Manually set the environment to
debugwithROCKET_ENV=debugfor the previous behavior. -
FormandLenientFormlost a lifetime parameter,get()method.Change a type of
Form<'a, T<'a>>toForm<T>orForm<T<'a>>.Form<T>andLenientForm<T>now implementDeref<Target = T>, allowing for calls to.get()to be removed. -
ringwas updated to 0.13.Ensure all transitive dependencies to
ringrefer to version0.13. -
Uriwas largely replaced byOrigin.In general, replace the type
UriwithOrigin. Thebaseandurifields ofRouteare now of typeOrigin. The&Uriguard is now&Origin.Request::uri()now returns anOrigin. -
All items in
rocket_contribare namespaced behind modules.Jsonis nowjson::JsonMsgPackis nowmsgpack::MsgPackMsgPackErroris nowmsgpack::ErrorTemplateis nowtemplates::TemplateUUIDis nowuuid::UuidValueis replaced byjson::JsonValue
-
TLS certificates require the
subjectAltNameextension.Ensure that your TLS certificates contain the
subjectAltNameextension with a value set to your domain. -
Route paths, mount points, and
LocalRequestURIs are strictly checked.Ensure your mount points are absolute paths with no parameters, ensure your route paths are absolute paths with proper parameter syntax, and ensure that paths passed to
LocalRequestare valid. -
Template::show()takes an&Rocket, doesn't accept aroot.Use
client.rocket()to get a reference to an instance ofRocketwhen testing. UseTemplate::render()in routes. -
Request::remote()returns the actual remote IP, doesn't rewrite.Use
Request::real_ip()orRequest::client_ip()to retrieve the IP address from the "X-Real-IP" header if it is present. -
Bindvariant was added toLaunchErrorKind.Ensure matches on
LaunchErrorKindinclude or ignore theBindvariant. -
Cookies are automatically tracked and propagated by
Client.For the previous behavior, construct a
ClientwithClient::untracked(). -
UUIDwas renamed toUuid.Use
Uuidinstead ofUUID. -
LocalRequest::cloned_dispatch()was removed.Chain calls to
.clone().dispatch()for the previous behavior. -
Redirectconstructors take a generic type ofT: TryInto<Uri<'static>>.A call to a
Redirectconstructor with a non-'static&strof the formRedirect::to(string)should becomeRedirect::to(string.to_string()), heap-allocating the string before being passed to the constructor. -
The
FromDataimpl forFormandLenientFormnow return an error of typeFormDataError.On non-I/O errors, the form string is stored in the variant as an
&'f str. -
Missingvariant was added toConfigError.Ensure matches on
ConfigErrorinclude or ignore theMissingvariant. -
The
FromDataimpl forJsonnow returns an error of typeJsonError.The previous
SerdeErroris now the.1member of theJsonErrorenum. Match and destruct the variant for the previous behavior. -
FromDatais now emulated byFromDataSimple.Change implementations, not uses, of
FromDatatoFromDataSimple. Consider whether your implementation could benefit from transformations. -
FormItemsiterates over values of typeFormItem.Map using
.map(|item| item.key_value())for the previous behavior. -
LaunchErrorKind::Collisioncontains a vector of the colliding routes.Destruct using
LaunchErrorKind::Collision(..)to ignore the vector. -
Request::get_param()andRequest::get_segments()are indexed by segment, not dynamic parameter.Modify the
nargument in calls to these functions appropriately. -
Method-based route attributes no longer accept a keyed
pathparameter.Change an attribute of the form
#[get(path = "..")]to#[get("..")]. -
JsonandMsgPackdata guards no longer reject requests with an unexpected Content-TypeTo approximate the previous behavior, add a
format = "json"route parameter when usingJsonorformat = "msgpack"when usingMsgPack. -
Implemented
ResponderforStatus. RemovedFailure,status::NoContent, andstatus::Resetresponders.Replace uses of
Failure(status)withstatusdirectly. Replacestatus::NoContentwithStatus::NoContent. Replacestatus::ResetwithStatus::ResetContent. -
Config::root()returns anOption<&Path>instead of an&Path.For the previous behavior, use
config.root().unwrap(). -
Status::new()is no longerconst.Construct a
Statusdirectly. -
Configconstructors return aConfiginstead of aResult<Config>. -
ConfigError::BadCWD,Config.config_pathwere removed. -
Jsonno longer has a default value for its type parameter. -
Using
dataon a non-payload method route is a warning instead of error. -
The
raw_form_stringmethod ofFormandLenientFormwas removed. -
Various impossible
Errorassociated types are now set to!. -
All
AdHocconstructors require a name as the first parameter. -
The top-level
Errortype was removed.
In addition to new features, Rocket saw the following improvements:
- Log messages now refer to routes by name.
- Collision errors on launch name the colliding routes.
- Launch fairing failures refer to the failing fairing by name.
- The default
403catcher now references authorization, not authentication. - Private cookies are set to
HttpOnlyand are given an expiration date of 1 week by default. - A Tera templates example was added.
- All macros, derives, and attributes are individually documented in
rocket_codegen. - Invalid client requests receive a response of
400instead of500. - Response bodies are reliably stripped on
HEADrequests. - Added a default catcher for
504: Gateway Timeout. - Configuration information is logged in all environments.
- Use of
unsafewas reduced from 9 to 2 in core library. FormItemsnow parses empty keys and values as well as keys without values.- Added
Config::active()as a shorthand forConfig::new(Environment::active()?). - Address/port binding errors at launch are detected and explicitly emitted.
Flashcookies are cleared only after they are inspected.Syncbound onAdHoc::on_attach(),AdHoc::on_launch()was removed.AdHoc::on_attach(),AdHoc::on_launch()accept anFnOnce.- Added
Config::root_relative()for retrieving paths relative to the configuration file. - Added
Config::tls_enabled()for determining whether TLS is actively enabled. - ASCII color codes are not emitted on versions of Windows that do not support them.
- Added FLAC (
audio/flac), Icon (image/x-icon), WEBA (audio/webm), TIFF (image/tiff), AAC (audio/aac), Calendar (text/calendar), MPEG (video/mpeg), TAR (application/x-tar), GZIP (application/gzip), MOV (video/quicktime), MP4 (video/mp4), ZIP (application/zip) as known media types. - Added
.weba(WEBA),.ogv(OGG),.mp4(MP4),.mpeg4(MP4),.aac(AAC),.ics(Calendar),.bin(Binary),.mpg(MPEG),.mpeg(MPEG),.tar(TAR),.gz(GZIP),.tif(TIFF),.tiff(TIFF),.mov(MOV) as known extensions. - Interaction between route attributes and declarative macros has been improved.
- Generated code now logs through logging infrastructures as opposed to using
println!. - Routing has been optimized by caching routing metadata.
FormandLenientFormcan be publicly constructed.- Console coloring uses default terminal colors instead of white.
- Console coloring is consistent across all messages.
i128andu128now implementFromParam,FromFormValue.- The
base64dependency was updated to0.10. - The
logdependency was updated to0.4. - The
handlebarsdependency was updated to1.0. - The
teradependency was updated to0.11. - The
uuiddependency was updated to0.7. - The
rustlsdependency was updated to0.14. - The
cookiedependency was updated to0.11.
- All documentation is versioned.
- Previous, current, and development versions of all documentation are hosted.
- The repository was reorganized with top-level directories of
coreandcontrib. - The
httpmodule was split into its ownrocket_httpcrate. This is an internal change only. - All uses of
unsafeare documented with informal proofs of correctness.
- Codegen was updated for
2018-08-23nightly. - Minimum required
rustcis1.30.0-nightly 2018-08-23.
- Force close only the read end of connections. This allows responses to be sent even when the client transmits more data than expected.
- Add details on retrieving configuration extras to guide.
- The
#[catch]decorator andcatchers!macro were introduced, replacing#[error]anderrors!. - The
#[error]decorator anderrors!macro were deprecated. - Codegen was updated for
2018-07-15nightly. - Minimum required
rustcis1.29.0-nightly 2018-07-15.
- Codegen was updated for
2018-06-22nightly. - Minimum required
rustcis1.28.0-nightly 2018-06-22.
- Codegen was updated for
2018-06-12nightly. - Minimum required
rustcis1.28.0-nightly 2018-06-12.
- Codegen was updated for
2018-05-30nightly. - Minimum required
rustcis1.28.0-nightly 2018-05-30.
- Core was updated for
2018-05-18nightly.
- Fixed injection of dependencies for codegen compile-fail tests.
- Fixed parsing of nested TOML structures in config environment variables.
- Codegen was updated for
2018-05-03nightly. - Minimum required
rustcis1.27.0-nightly 2018-05-04.
- Contrib was updated for
2018-05-03nightly.
- Fixed database pool type in state guide.
- Core was updated for
2018-04-26nightly. - Minimum required
rustcis1.27.0-nightly 2018-04-26. - Managed state retrieval cost was reduced to an unsynchronized
HashMaplookup.
- Codegen was updated for
2018-04-26nightly. - Minimum required
rustcis1.27.0-nightly 2018-04-26.
- A 512-byte buffer is preallocated when deserializing JSON, improving performance.
- Fixed various typos in rustdocs and guide.
- Codegen was updated for
2018-04-06nightly. - Minimum required
rustcis1.27.0-nightly 2018-04-06.
- Fixed a bug where incoming request URIs would match routes with the same path prefix and suffix and ignore the rest.
- Added known media types for WASM, WEBM, OGG, and WAV.
- Fixed fragment URI parsing.
- Codegen was updated for
2018-04-03nightly. - Minimum required
rustcis1.27.0-nightly 2018-04-03.
- JSON data is read eagerly, improving deserialization performance.
- Database example and docs were updated for Diesel 1.1.
- Removed outdated README performance section.
- Fixed various typos in rustdocs and guide.
- Removed gates for stabilized features:
iterator_for_each,i128_type,conservative_impl_trait,never_type. - Travis now tests in both debug and release mode.
Rocket.state()method was added to retrieve managed state fromRocketinstances.- Nested calls to
Rocket.attach()are now handled correctly. - JSON API (
application/vnd.api+json) is now a known media type. - Uncached markers for
ContentTypeandAcceptheaders are properly preserved onRequest.clone(). - Minimum required
rustcis1.25.0-nightly 2018-01-12.
- Codegen was updated for
2017-12-22nightly. - Minimum required
rustcis1.24.0-nightly 2017-12-22.
- Fixed typo in state guide:
simplesimply. - Database example and docs were updated for Diesel 1.0.
- Shell scripts now use
git grepinstead ofegrepfor faster searching.
- Codegen was updated for
2017-12-17nightly. - Minimum required
rustcis1.24.0-nightly 2017-12-17.
NamedFile'sResponderimplementation now uses a sized body when the file's length is known.#[repr(C)]is used onstrwrappers to guarantee correct structure layout across platforms.- A
status::BadRequestResponderwas added.
- Codegen was updated for
2017-12-13nightly. - Minimum required
rustcis1.24.0-nightly 2017-12-13.
- The rustdoc
html_root_urlnow points to the correct address. - Fixed typo in fairings guide:
eventevents. - Fixed typo in
Outcomedocs:usersUsers.
Config'sDebugimplementation now respects formatting options.Cow<str>now implementsFromParam.Vec<u8>now implementsResponder.- Added a
Binarymedia type forapplication/octet-stream. - Empty fairing collections are no longer logged.
- Emojis are no longer emitted to non-terminals.
- Minimum required
rustcis1.22.0-nightly 2017-09-13.
- Improved "missing argument in handler" compile-time error message.
- Codegen was updated for
2017-09-25nightly. - Minimum required
rustcis1.22.0-nightly 2017-09-25.
- Fixed typos in site overview:
bybe,ReponderResponder. - Markdown indenting was adjusted for CommonMark.
- Shell scripts handle paths with spaces.
- Added conversion methods from and to
Box<UncasedStr>.
- Lints were removed due to compiler instability. Lints will likely return as
a separate
rocket_lintscrate.
- Added support for ASCII colors on modern Windows consoles.
- Form field renames can now include any valid characters, not just idents.
- Ignored named route parameters are now allowed (
_ident). - Fixed issue where certain paths would cause a lint
assert!to fail (#367). - Lints were updated for
2017-08-10nightly. - Minimum required
rustcis1.21.0-nightly (2017-08-10).
- Tera errors that were previously skipped internally are now emitted.
- Typos were fixed across the board.
This release includes the following new features:
- Fairings, Rocket's structure middleware, were introduced.
- Native TLS support was introduced.
- Private cookies were introduced.
- A
MsgPacktype has been added tocontribfor simple consumption and returning of MessagePack data. - Launch failures (
LaunchError) fromRocket::launch()are now returned for inspection without panicking. - Routes without query parameters now match requests with or without query parameters.
- Default rankings range from -4 to -1, preferring static paths and routes with query string matches.
- A native
Acceptheader structure was added. - The
Acceptrequest header can be retrieved viaRequest::accept(). - Incoming form fields can be renamed via a new
#[form(field = "name")]structure field attribute. - All active routes can be retrieved via
Rocket::routes(). Response::body_string()was added to retrieve the response body as aString.Response::body_bytes()was added to retrieve the response body as aVec<u8>.Response::content_type()was added to easily retrieve the Content-Type header of a response.- Size limits on incoming data are now configurable.
Request::limits()was added to retrieve incoming data limits.- Responders may dynamically adjust their response based on the incoming request.
Request::guard()was added for simple retrieval of request guards.Request::route()was added to retrieve the active route, if any.&Routeis now a request guard.- The base mount path of a
Routecan be retrieved viaRoute::baseorRoute::base(). Cookiessupports private (authenticated encryption) cookies, encryped with thesecret_keyconfig key.Config::{development, staging, production}constructors were added forConfig.Config::get_datetime()was added to retrieve an extra as aDatetime.- Forms can be now parsed leniently via the new
LenientFormdata guard. - The
?operator can now be used withOutcome. - Quoted string, array, and table based configuration parameters can be set via environment variables.
- Log coloring is disabled when
stdoutis not a TTY. FromFormis implemented forOption<T: FromForm>,Result<T: FromForm, T::Error>.- The
NotFoundresponder was added for simple 404 response construction.
This release includes many breaking changes. These changes are listed below along with a short note about how to handle the breaking change in existing applications.
-
session_keywas renamed tosecret_key, requires a 256-bit base64 keyIt's unlikely that
session_keywas previously used. If it was, renamesession_keytosecret_key. Generate a random 256-bit base64 key using a tool like openssl:openssl rand -base64 32. -
The
&Cookiesrequest guard has been removed in favor ofCookiesChange
&Cookiesin a request guard position toCookies. -
Rocket::launch()now returns aLaunchError, doesn't panic.For the old behavior, suffix a call to
.launch()with a semicolon:.launch();. -
Routes without query parameters match requests with or without query parameters.
There is no workaround, but this change may allow manual ranks from routes to be removed.
-
The
formatroute attribute on non-payload requests matches against the Accept header.Excepting a custom request guard, there is no workaround. Previously,
formatalways matched against the Content-Type header, regardless of whether the request method indicated a payload or not. -
A type of
&strcan no longer be used in form structures or parameters.Use the new
&RawStrtype instead. -
ContentTypeis no longer a request guard.Use
&ContentTypeinstead. -
Request::content_type()returns&ContentTypeinstead ofContentType.Use
.clone()on&ContentTypeif a type ofContentTypeis required. -
Response::header_values()was removed.Response::headers()now returns an&HeaderMap.A call to
Response::headers()can be replaced withResponse::headers().iter(). A call toResponse::header_values(name)can be replaced withResponse::headers().get(name). -
Route collisions result in a hard error and panic.
There is no workaround. Previously, route collisions were a warning.
-
The
IntoOutcometrait has been expanded and made more flexible.There is no workaround.
IntoOutcome::into_outcome()now takes aFailurevalue to use.IntoOutcome::or_forward()was added to return aForwardoutcome ifselfindicates an error. -
The 'testing' feature was removed.
Remove
features = ["testing"]fromCargo.toml. Use the newlocalmodule for testing. -
serdewas updated to 1.0.There is no workaround. Ensure all dependencies rely on
serde1.0. -
config::active()was removed.Use
Rocket::config()to retrieve the configuration before launch. If needed, use managed state to store config information for later use. -
The
Respondertrait has changed.Responder::respond(self)was removed in favor ofResponder::respond_to(self, &Request). Responders may dynamically adjust their response based on the incoming request. -
Outcome::of(Responder)was removed whileOutcome::from(&Request, Responder)was added.Use
Outcome::from(..)instead ofOutcome::of(..). -
Usage of templates requires
Template::fairing()to be attached.Call
.attach(Template::fairing())on the application's Rocket instance before launching. -
The
Displayimplementation ofTemplatewas removed.Use
Template::show()to render a template directly. -
Request::new()is no longer exported.There is no workaround.
-
The
FromFormtrait has changed.Responder::from_form_items(&mut FormItems)was removed in favor ofResponder::from_form(&mut FormItems, bool). The second parameter indicates whether parsing should be strict (iftrue) or lenient (iffalse). -
LoggingLevelwas removed as a root reexport.It can now be imported from
rocket::config::LoggingLevel. -
An
Iovariant was added toConfigError.Ensure
matches onConfigErrorinclude anIovariant. -
ContentType::from_extension()returns anOption<ContentType>.For the old behvavior, use
.unwrap_or(ContentType::Any). -
The
IntoValueconfig trait was removed in favor ofInto<Value>.There is no workaround. Use
Into<Value>as necessary. -
The
rocket_contrib::JSONtype has been renamed torocket_contrib::Json.Use
Jsoninstead ofJSON. -
All structs in the
contentmodule use TitleCase names.Use
Json,Xml,Html, andCssinstead ofJSON,XML,HTML, andCSS, respectively.
In addition to new features, Rocket saw the following improvements:
- "Rocket" is now capatilized in the
ServerHTTP header. - The generic parameter of
rocket_contrib::Jsondefaults tojson::Value. - The trailing '...' in the launch message was removed.
- The launch message prints regardless of the config environment.
- For debugging,
FromDatais implemented forVec<u8>andString. - The port displayed on launch is the port resolved, not the one configured.
- The
uuiddependency was updated to0.5. - The
base64dependency was updated to0.6. - The
tomldependency was updated to0.4. - The
handlebarsdependency was updated to0.27. - The
teradependency was updated to0.10. yansiis now used for all terminal coloring.- The
devrustcrelease channel is supported during builds. Configis now exported from the root.RequestimplementsCloneandDebug.- The
workersconfig parameter now defaults tonum_cpus * 2. - Console logging for table-based config values is improved.
PartialOrd,Ord, andHashare now implemented forState.- The format of a request is always logged when available.
- Route matching on
formatnow functions as documented.
- All examples include a test suite.
- The
masterbranch now uses a-devversion number.
- Lints were updated for
2017-06-01nightly. - Minimum required
rustcis1.19.0-nightly (2017-06-01).
- Codegen was updated for
2017-05-26nightly.
- Allow
kandvto be used as fields inFromFormstructures by avoiding identifier collisions (#265).
- Lints were updated for
2017-04-15nightly. - Minimum required
rustcis1.18.0-nightly (2017-04-15).
- Codegen was updated for
2017-03-30nightly. - Minimum required
rustcis1.18.0-nightly (2017-03-30).
- Multiple header values for the same header name are now properly preserved (#223).
- The
get_sliceandget_tablemethods were added toConfig. - The
pub_restrictedfeature has been stabilized!
- Lints were updated for
2017-03-20nightly. - Minimum required
rustcis1.17.0-nightly (2017-03-22).
- The test script now denies trailing whitespace.
- Lints were updated for
2017-02-25and2017-02-26nightlies. - Minimum required
rustcis1.17.0-nightly (2017-02-26).
Flashcookie deletion functions as expected regardless of the path.configproperly accepts IPv6 addresses.- Multiple
Set-Cookieheaders are properly set.
DisplayandErrorwere implemented forConfigError.webp,ttf,otf,woff, andwoff2were added as known content types.- Routes are presorted for faster routing.
into_bytesandinto_innermethods were added toBody.
- Fixed
unmanaged_statelint so that it works with prefilled type aliases.
- Better errors are emitted on Tera template parse errors.
- Fixed typos in
manageandJSONdocs.
- Updated doctests for latest Cargo nightly.
Detailed release notes for v0.2 can also be found on rocket.rs.
This release includes the following new features:
- Introduced managed state.
- Added lints that warn on unmanaged state and unmounted routes.
- Added the ability to set configuration parameters via environment variables.
Configstructures can be built viaConfigBuilder, which follows the builder pattern.- Logging can be enabled or disabled on custom configuration via a second
parameter to the
Rocket::custommethod. nameandvaluemethods were added toHeaderto retrieve the name and value of a header.- A new configuration parameter,
workers, can be used to set the number of threads Rocket uses. - The address of the remote connection is available via
Request.remote(). Request preprocessing overrides remote IP with value from theX-Real-IPheader, if present. - During testing, the remote address can be set via
MockRequest.remote(). - The
SocketAddrrequest guard retrieves the remote address. - A
UUIDtype has been added tocontrib. rocketandrocket_codegenwill refuse to build with an incompatible nightly version and emit nice error messages.- Major performance and usability improvements were upstreamed to the
cookiecrate, including the addition of aCookieBuilder. - When a checkbox isn't present in a form,
booltypes in aFromFormstructure will parse asfalse. - The
FormItemsiterator can be queried for a complete parse viacompletedandexhausted. - Routes for
OPTIONSrequests can be declared via theoptionsdecorator. - Strings can be percent-encoded via
URI::percent_encode().
This release includes several breaking changes. These changes are listed below along with a short note about how to handle the breaking change in existing applications.
-
Rocket::customtakes two parameters, the first beingConfigby value.A call in v0.1 of the form
Rocket::custom(&config)is nowRocket::custom(config, false). -
Tera templates are named without their extension.
A templated named
name.html.terais now simplyname. -
JSONunwrapmethod has been renamed tointo_inner.A call to
.unwrap()should be changed to.into_inner(). -
The
map!macro was removed in favor of thejson!macro.A call of the form
map!{ "a" => b }can be written as:json!({ "a": b }). -
The
hyper::SetCookieheader is no longer exported.Use the
Cookietype as anInto<Header>type directly. -
The
Content-TypeforStringis nowtext/plain.Use
content::HTML<String>for HTML-basedStringresponses. -
Request.content_type()returns anOption<ContentType>.Use
.unwrap_or(ContentType::Any)to get the old behavior. -
The
ContentTyperequest guard forwards when the request has noContent-Typeheader.Use an
Option<ContentType>and.unwrap_or(ContentType::Any)for the old behavior. -
A
Rocketinstance must be declared before aMockRequest.Change the order of the
rocket::ignite()andMockRequest::new()calls. -
A route with
formatspecified only matches requests with the same format.Previously, a route with a
formatwould match requests without a format specified. There is no workaround to this change; simply specify formats when required. -
FormItemscan no longer be constructed directly.Instead of constructing as
FormItems(string), construct asFormItems::from(string). -
from_from_string(&str)inFromFormremoved in favor offrom_form_items(&mut FormItems).Most implementation should be using
FormItemsinternally; simply use the passed inFormItems. In other cases, the form string can be retrieved via theinner_strmethod ofFormItems. -
Config::{set, default_for}are deprecated.Use the
set_{param}methods instead ofset, andneworbuildin place ofdefault_for. -
Route paths must be absolute.
Prepend a
/to convert a relative path into an absolute one. -
Route paths cannot contain empty segments.
Remove any empty segments, including trailing ones, from a route path.
A couple of bugs were fixed in this release:
- Handlebars partials were not properly registered (#122).
Rocket::customdid not set the custom configuration as theactiveconfiguration.- Route path segments containing more than one dynamic parameter were allowed.
In addition to new features, Rocket saw the following smaller improvements:
- Rocket no longer overwrites a catcher's response status.
- The
portConfigtype is now a properu16. - Clippy issues injected by codegen are resolved.
- Handlebars was updated to
0.25. - The
PartialEqimplementation ofConfigdoesn't consider the path or secret key. - Hyper dependency updated to
0.10. - The
Errortype forJSON as FromDatahas been exposed asSerdeError. - SVG was added as a known Content-Type.
- Serde was updated to
0.9. - Form parse failure now results in a 422 error code.
- Tera has been updated to
0.7. pub(crate)is used throughout to enforce visibility rules.- Query parameters in routes (
/path?<param>) are now logged. - Routes with and without query parameters no longer collide.
- Testing was parallelized, resulting in 3x faster Travis builds.
- Hyper version pinned to 0.9.14 due to upstream non-semver breaking change.
- Fixed security checks in
FromSegmentsimplementation forPathBuf.
proc_macrofeature removed from examples due to stability.
- Header names are treated as case-preserving.
- Minimum supported nightly is
2017-01-03.
- Typo in
Outcomeformatting fixed (Succcess -> Success). - Added
ContentType::CSV. - Dynamic segments parameters are properly resolved, even when mounted.
- Request methods are only overridden via
_methodfield on POST. - Form value
Strings are properly decoded.
- The
_methodfield is now properly ignored inFromFormderivation. - Unknown Content-Types in
formatno longer result in an error. - Deriving
FromFormno longer results in a deprecation warning. - Codegen will refuse to build with incompatible rustc, presenting error message and suggestion.
- Added
headas a valid decorator forHEADrequests. - Added
route(OPTIONS)as a valid decorator forOPTIONSrequests.
- Templates with the
.teraextension are properly autoescaped. - Nested template names are properly resolved on Windows.
- Template implements
Display. - Tera dependency updated to version 0.6.
- Todo example requirements clarified in its
README.
- Tests added for
config,optional_result,optional_redirect, andquery_paramsexamples. - Testing script checks for and disallows tab characters.
- New script (
bump_version.sh) automates version bumps. - Config script emits error when readlink/readpath support is bad.
- Travis badge points to public builds.
- Fix
get_raw_segmentsindex argument in route codegen (#41). - Segments params (
<param..>) respect prefixes.
- Fix nested template name resolution (#42).
- New script (
publish.sh) automates publishing to crates.io. - New script (
bump_version.sh) automates version bumps.
NamedFileResponderlost its body in the shuffle; it's back!
This is the first public release of Rocket!
All of the mentions to hyper types in core Rocket types are no more. Rocket
now implements its own Request and Response types.
ContentTypeuses associated constants instead of static methods.StatusCoderemoved in favor of newStatustype.Responsetype alias superceded byResponsetype.Responder::respondno longer takes in hyper type.Responder::respondreturnsResponse, takesselfby move.HandlerreturnsOutcomeinstead ofResponsetype alias.ErrorHandlerreturnsResult.- All
Hyper*types were moved to unprefixed versions inhyper::. MockRequest::dispatchnow returns aResponsetype.URIBufremoved in favor of unifiedURI.- Rocket panics when an illegal, dynamic mount point is used.
- Rocket handles
HEADrequests automatically. - New
ResponseandResponseBuildertypes. - New
Request,Header,Status, andContentTypetypes.
MockRequestallows any type of header.MockRequestallows cookies.
- Debug output disabled by default.
- The
ROCKET_CODEGEN_DEBUGenvironment variables enables codegen logging.
All incoming request data is now streamed. This resulted in a major change to the Rocket APIs. They are summarized through the following API changes:
- The
formroute parameter has been removed. - The
dataroute parameter has been introduced. - Forms are now handled via the
dataparameter andFormtype. - Removed the
dataparameter fromRequest. - Added
FromDataconversion trait and default implementation. FromDatais used to automatically derive thedataparameter.Responders are now final: they cannot forward to other requests.Responsers may only forward to catchers.
- Request
uriparameter is private. Useuri()method instead. formmodule moved underrequestmodule.response::datawas renamed toresponse::content.- Introduced
OutcomewithSuccess,Failure, andForwardvariants. outcomemodule moved to top-level.Responseis now a type alias toOutcome.EmptyResponderwas removed.StatusResponderremoved in favor ofresponse::statusmodule.
- Error handlers can now take 0, 1, or 2 parameters.
FromFormderive now works on empty structs.- Lifetimes are now properly stripped in code generation.
- Any valid ident is now allowed in single-parameter route parameters.
- Route is now cloneable.
Requestno longer has any lifetime parameters.Handlertype now includes aDataparameter.httpmodule is public.Responderimplemented for()type as an empty response.- Add
config::get()for global config access. - Introduced
testingmodule. Rocket.tomlallows global configuration via[global]table.
- Added a
raw_uploadexample. - Added a
pastebinexample. - Documented all public APIs.
- Now building and running tests with
--all-featuresflag. - Added appveyor config for Windows CI testing.
- Remove
Rocket::newin favor ofignitemethod. - Remove
Rocket::mount_and_launchin favor of chainingmount(..).launch(). mountandcatchtakeRockettype by value.- All types related to HTTP have been moved into
httpmodule. Template::renderincontribnow takes context by reference.
- Rocket now parses option
Rocket.tomlfor configuration, defaulting to sane values. ROCKET_ENVenvironment variable can be used to specify running environment.
- Document
ContentType. - Document
Request. - Add script that builds docs.
- Scripts can now be run from any directory.
- Cache Cargo directories in Travis for faster testing.
- Check that library version numbers match in testing script.
- Rename
response::data_typetoresponse::data.
- Rocket interprets
_methodfield in forms as the incoming request's method. - Add
Outcome::Badto signify responses that failed internally. - Add a
NamedFileRespondertype that uses a file's extension for the response's content type. - Add a
StreamResponderfor streaming responses.
- Introduce the
contribcrate. - Add JSON support via
JSON, which implementsFromRequestandResponder. - Add templating support via
Templatewhich implementsResponder.
- Initial guide-like documentation.
- Add documentation, testing, and contributing sections to README.
- Add a significant number of codegen tests.