diff --git a/CHANGELOG.md b/CHANGELOG.md index 92e90f27..f648c645 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# Version 0.4.10 (May 21, 2021) + +## Core + + * [[`3276b8`]] Removed used of `unsafe` in `Origin::parse_owned()`, fixing a + soundness issue. + +[`3276b8`]: https://github.com/SergioBenitez/Rocket/commit/3276b8 + # Version 0.4.9 (May 19, 2021) ## Core diff --git a/contrib/codegen/Cargo.toml b/contrib/codegen/Cargo.toml index e7448b1b..82579ac8 100644 --- a/contrib/codegen/Cargo.toml +++ b/contrib/codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rocket_contrib_codegen" -version = "0.4.9" +version = "0.4.10" authors = ["Sergio Benitez "] description = "Procedural macros for the Rocket contrib libraries." documentation = "https://api.rocket.rs/v0.4/rocket_contrib/" @@ -26,6 +26,6 @@ yansi = "0.5" version_check = "0.9.1" [dev-dependencies] -rocket = { version = "0.4.9", path = "../../core/lib" } -rocket_contrib = { version = "0.4.9", path = "../lib", features = ["diesel_sqlite_pool"] } +rocket = { version = "0.4.10", path = "../../core/lib" } +rocket_contrib = { version = "0.4.10", path = "../lib", features = ["diesel_sqlite_pool"] } trybuild = "1.0" diff --git a/contrib/lib/Cargo.toml b/contrib/lib/Cargo.toml index 0f01ddf4..ecb7dba2 100644 --- a/contrib/lib/Cargo.toml +++ b/contrib/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rocket_contrib" -version = "0.4.9" +version = "0.4.10" authors = ["Sergio Benitez "] description = "Community contributed libraries for the Rocket web framework." documentation = "https://api.rocket.rs/v0.4/rocket_contrib/" @@ -38,8 +38,8 @@ memcache_pool = ["databases", "memcache", "r2d2-memcache"] [dependencies] # Global dependencies. -rocket_contrib_codegen = { version = "0.4.9", path = "../codegen", optional = true } -rocket = { version = "0.4.9", path = "../../core/lib/", default-features = false } +rocket_contrib_codegen = { version = "0.4.10", path = "../codegen", optional = true } +rocket = { version = "0.4.10", path = "../../core/lib/", default-features = false } log = "0.4" # Serialization and templating dependencies. diff --git a/contrib/lib/src/databases.rs b/contrib/lib/src/databases.rs index 742cbef9..fd812931 100644 --- a/contrib/lib/src/databases.rs +++ b/contrib/lib/src/databases.rs @@ -32,7 +32,7 @@ //! //! ```toml //! [dependencies.rocket_contrib] -//! version = "0.4.9" +//! version = "0.4.10" //! default-features = false //! features = ["diesel_sqlite_pool"] //! ``` diff --git a/contrib/lib/src/helmet/mod.rs b/contrib/lib/src/helmet/mod.rs index d3991cde..a3c31ae8 100644 --- a/contrib/lib/src/helmet/mod.rs +++ b/contrib/lib/src/helmet/mod.rs @@ -16,7 +16,7 @@ //! //! ```toml //! [dependencies.rocket_contrib] -//! version = "0.4.9" +//! version = "0.4.10" //! default-features = false //! features = ["helmet"] //! ``` diff --git a/contrib/lib/src/json.rs b/contrib/lib/src/json.rs index aa4b9add..8cb06475 100644 --- a/contrib/lib/src/json.rs +++ b/contrib/lib/src/json.rs @@ -9,7 +9,7 @@ //! //! ```toml //! [dependencies.rocket_contrib] -//! version = "0.4.9" +//! version = "0.4.10" //! default-features = false //! features = ["json"] //! ``` diff --git a/contrib/lib/src/lib.rs b/contrib/lib/src/lib.rs index 940b3063..af3f07ac 100644 --- a/contrib/lib/src/lib.rs +++ b/contrib/lib/src/lib.rs @@ -33,7 +33,7 @@ //! //! ```toml //! [dependencies.rocket_contrib] -//! version = "0.4.9" +//! version = "0.4.10" //! default-features = false //! features = ["json"] //! ``` diff --git a/contrib/lib/src/msgpack.rs b/contrib/lib/src/msgpack.rs index d430bd87..4ff4c2c8 100644 --- a/contrib/lib/src/msgpack.rs +++ b/contrib/lib/src/msgpack.rs @@ -9,7 +9,7 @@ //! //! ```toml //! [dependencies.rocket_contrib] -//! version = "0.4.9" +//! version = "0.4.10" //! default-features = false //! features = ["msgpack"] //! ``` diff --git a/contrib/lib/src/serve.rs b/contrib/lib/src/serve.rs index 4f99a6ed..da432854 100644 --- a/contrib/lib/src/serve.rs +++ b/contrib/lib/src/serve.rs @@ -9,7 +9,7 @@ //! //! ```toml //! [dependencies.rocket_contrib] -//! version = "0.4.9" +//! version = "0.4.10" //! default-features = false //! features = ["serve"] //! ``` diff --git a/contrib/lib/src/templates/mod.rs b/contrib/lib/src/templates/mod.rs index 2e8a387a..aa159a29 100644 --- a/contrib/lib/src/templates/mod.rs +++ b/contrib/lib/src/templates/mod.rs @@ -9,7 +9,7 @@ //! //! ```toml //! [dependencies.rocket_contrib] -//! version = "0.4.9" +//! version = "0.4.10" //! default-features = false //! features = ["handlebars_templates", "tera_templates"] //! ``` @@ -158,7 +158,7 @@ const DEFAULT_TEMPLATE_DIR: &str = "templates"; /// /// ```toml /// [dependencies.rocket_contrib] -/// version = "0.4.9" +/// version = "0.4.10" /// default-features = false /// features = ["handlebars_templates", "tera_templates"] /// ``` diff --git a/contrib/lib/src/uuid.rs b/contrib/lib/src/uuid.rs index 692f267b..e79acfd8 100644 --- a/contrib/lib/src/uuid.rs +++ b/contrib/lib/src/uuid.rs @@ -9,7 +9,7 @@ //! //! ```toml //! [dependencies.rocket_contrib] -//! version = "0.4.9" +//! version = "0.4.10" //! default-features = false //! features = ["uuid"] //! ``` @@ -34,7 +34,7 @@ pub use self::uuid_crate::parser::ParseError; /// /// ```toml /// [dependencies.rocket_contrib] -/// version = "0.4.9" +/// version = "0.4.10" /// default-features = false /// features = ["uuid"] /// ``` diff --git a/core/codegen/Cargo.toml b/core/codegen/Cargo.toml index 8a38bc5f..e19b95a6 100644 --- a/core/codegen/Cargo.toml +++ b/core/codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rocket_codegen" -version = "0.4.9" +version = "0.4.10" authors = ["Sergio Benitez "] description = "Procedural macros for the Rocket web framework." documentation = "https://api.rocket.rs/v0.4/rocket_codegen/" @@ -17,7 +17,7 @@ proc-macro = true [dependencies] indexmap = "1.0" quote = "0.6.1" -rocket_http = { version = "0.4.9", path = "../http/" } +rocket_http = { version = "0.4.10", path = "../http/" } devise = "0.2" glob = "0.3" @@ -26,5 +26,5 @@ yansi = "0.5" version_check = "0.9.1" [dev-dependencies] -rocket = { version = "0.4.9", path = "../lib" } +rocket = { version = "0.4.10", path = "../lib" } trybuild = "1.0" diff --git a/core/codegen/src/lib.rs b/core/codegen/src/lib.rs index 16387ad5..abac1ead 100644 --- a/core/codegen/src/lib.rs +++ b/core/codegen/src/lib.rs @@ -21,7 +21,7 @@ //! //! ```toml //! [dependencies] -//! rocket = "0.4.9" +//! rocket = "0.4.10" //! ``` //! //! And to import all macros, attributes, and derives via `#[macro_use]` in the diff --git a/core/http/Cargo.toml b/core/http/Cargo.toml index 7e1e4d10..716c84e5 100644 --- a/core/http/Cargo.toml +++ b/core/http/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rocket_http" -version = "0.4.9" +version = "0.4.10" authors = ["Sergio Benitez "] description = """ Types, traits, and parsers for HTTP requests, responses, and headers. @@ -36,4 +36,4 @@ features = ["server"] optional = true [dev-dependencies] -rocket = { version = "0.4.9", path = "../lib" } +rocket = { version = "0.4.10", path = "../lib" } diff --git a/core/lib/Cargo.toml b/core/lib/Cargo.toml index c7a49ad7..d9383071 100644 --- a/core/lib/Cargo.toml +++ b/core/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rocket" -version = "0.4.9" +version = "0.4.10" authors = ["Sergio Benitez "] description = """ Web framework for nightly with a focus on ease-of-use, expressibility, and speed. @@ -24,11 +24,11 @@ sse = [] private-cookies = ["rocket_http/private-cookies"] [dependencies] -rocket_codegen = { version = "0.4.9", path = "../codegen" } -rocket_http = { version = "0.4.9", path = "../http" } +rocket_codegen = { version = "0.4.10", path = "../codegen" } +rocket_http = { version = "0.4.10", path = "../http" } yansi = "0.5" log = "0.4" -toml = "0.4.9" +toml = "0.4.10" num_cpus = "1.0" state = "0.4.1" time = "0.1" diff --git a/core/lib/src/lib.rs b/core/lib/src/lib.rs index 7cd5d51d..da55a9bc 100644 --- a/core/lib/src/lib.rs +++ b/core/lib/src/lib.rs @@ -46,7 +46,7 @@ //! //! ```toml //! [dependencies] -//! rocket = "0.4.9" +//! rocket = "0.4.10" //! ``` //! //! Then, add the following to the top of your `main.rs` file: diff --git a/site/guide/1-quickstart.md b/site/guide/1-quickstart.md index 536163b4..6e800d0a 100644 --- a/site/guide/1-quickstart.md +++ b/site/guide/1-quickstart.md @@ -15,7 +15,7 @@ For instance, the following set of commands runs the `hello_world` example: ```sh git clone https://github.com/SergioBenitez/Rocket cd Rocket -git checkout v0.4.9 +git checkout v0.4.10 cd examples/hello_world cargo run ``` diff --git a/site/guide/10-pastebin.md b/site/guide/10-pastebin.md index e23a8479..32563ee6 100644 --- a/site/guide/10-pastebin.md +++ b/site/guide/10-pastebin.md @@ -43,7 +43,7 @@ Then add the usual Rocket dependencies to the `Cargo.toml` file: ```toml [dependencies] -rocket = "0.4.9" +rocket = "0.4.10" ``` And finally, create a skeleton Rocket application to work off of in diff --git a/site/guide/2-getting-started.md b/site/guide/2-getting-started.md index b1f14f86..bd4bce13 100644 --- a/site/guide/2-getting-started.md +++ b/site/guide/2-getting-started.md @@ -50,7 +50,7 @@ Now, add Rocket as a dependency in your `Cargo.toml`: ```toml [dependencies] -rocket = "0.4.9" +rocket = "0.4.10" ``` Modify `src/main.rs` so that it contains the code for the Rocket `Hello, world!` diff --git a/site/guide/4-requests.md b/site/guide/4-requests.md index 33c39226..8417709b 100644 --- a/site/guide/4-requests.md +++ b/site/guide/4-requests.md @@ -659,7 +659,7 @@ so that you depend on `rocket` as follows: ```toml [dependencies] -rocket = { version = "0.4.9", default-features = false } +rocket = { version = "0.4.10", default-features = false } ``` [`ring`]: https://github.com/briansmith/ring diff --git a/site/guide/6-state.md b/site/guide/6-state.md index f7cb02aa..f46429a9 100644 --- a/site/guide/6-state.md +++ b/site/guide/6-state.md @@ -272,7 +272,7 @@ databases, you'd write in `Cargo.toml`: ```toml [dependencies.rocket_contrib] -version = "0.4.9" +version = "0.4.10" default-features = false features = ["diesel_sqlite_pool"] ``` diff --git a/site/guide/9-configuration.md b/site/guide/9-configuration.md index 720e528d..0f6025ba 100644 --- a/site/guide/9-configuration.md +++ b/site/guide/9-configuration.md @@ -307,7 +307,7 @@ dependency in your `Cargo.toml` file: ```toml [dependencies] -rocket = { version = "0.4.9", features = ["tls"] } +rocket = { version = "0.4.10", features = ["tls"] } ``` TLS is configured through the `tls` configuration parameter. The value of `tls` diff --git a/site/index.toml b/site/index.toml index a82ec846..abc4106a 100644 --- a/site/index.toml +++ b/site/index.toml @@ -3,8 +3,8 @@ ############################################################################### [release] -version = "0.4.9" -date = "May 19, 2021" +version = "0.4.10" +date = "May 21, 2021" ############################################################################### # Top features: displayed in the header under the introductory text.