From c09186a2c07076a02d53137f31fef59f78fe95d5 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Thu, 7 Jan 2021 20:02:08 +0000 Subject: [PATCH] prepare v4 beta releases (#1881) --- CHANGES.md | 3 +++ Cargo.toml | 9 +++++---- actix-files/CHANGES.md | 3 +++ actix-files/Cargo.toml | 6 +++--- actix-http-test/CHANGES.md | 3 +++ actix-http-test/Cargo.toml | 8 ++++---- actix-http/CHANGES.md | 3 +++ actix-http/Cargo.toml | 4 ++-- actix-multipart/CHANGES.md | 12 ++++++++---- actix-multipart/Cargo.toml | 8 ++++---- actix-web-actors/CHANGES.md | 4 ++++ actix-web-actors/Cargo.toml | 6 +++--- actix-web-codegen/Cargo.toml | 2 +- awc/CHANGES.md | 3 +++ awc/Cargo.toml | 12 ++++++------ 15 files changed, 55 insertions(+), 31 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index f0b55801b..25fd10952 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,9 @@ # Changes ## Unreleased - 2021-xx-xx + + +## 4.0.0-beta.1 - 2021-01-07 ### Added * `Compat` middleware enabling generic response body/error type of middlewares like `Logger` and `Compress` to be used in `middleware::Condition` and `Resource`, `Scope` services. [#1865] diff --git a/Cargo.toml b/Cargo.toml index 5388de4ed..87183c327 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-web" -version = "3.3.2" +version = "4.0.0-beta.1" authors = ["Nikolay Kim "] description = "Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust" readme = "README.md" @@ -84,8 +84,8 @@ actix-threadpool = "0.3.1" actix-tls = { version = "3.0.0-beta.2", default-features = false, optional = true } actix-web-codegen = "0.4.0" -actix-http = "2.2.0" -awc = { version = "2.0.3", default-features = false } +actix-http = "3.0.0-beta.1" +awc = { version = "3.0.0-beta.1", default-features = false } ahash = "0.6" bytes = "1" @@ -109,7 +109,7 @@ smallvec = "1.6" [dev-dependencies] actix = "0.11.0-beta.1" -actix-http = { version = "2.2.0", features = ["actors"] } +actix-http = { version = "3.0.0-beta.1", features = ["actors"] } rand = "0.8" env_logger = "0.8" serde_derive = "1.0" @@ -126,6 +126,7 @@ codegen-units = 1 actix-web = { path = "." } actix-http = { path = "actix-http" } actix-http-test = { path = "actix-http-test" } +actix-web-actors = { path = "actix-web-actors" } actix-web-codegen = { path = "actix-web-codegen" } actix-multipart = { path = "actix-multipart" } actix-files = { path = "actix-files" } diff --git a/actix-files/CHANGES.md b/actix-files/CHANGES.md index 6dcf4f66f..ff8ccd640 100644 --- a/actix-files/CHANGES.md +++ b/actix-files/CHANGES.md @@ -1,6 +1,9 @@ # Changes ## Unreleased - 2021-xx-xx + + +## 0.6.0-beta.1 - 2021-01-07 * `HttpRange::parse` now has its own error type. * Update `bytes` to `1.0`. [#1813] diff --git a/actix-files/Cargo.toml b/actix-files/Cargo.toml index 17e1a4888..f93450ff8 100644 --- a/actix-files/Cargo.toml +++ b/actix-files/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-files" -version = "0.5.0" +version = "0.6.0-beta.1" authors = ["Nikolay Kim "] description = "Static file serving for Actix Web" readme = "README.md" @@ -17,7 +17,7 @@ name = "actix_files" path = "src/lib.rs" [dependencies] -actix-web = { version = "3.0.0", default-features = false } +actix-web = { version = "4.0.0-beta.1", default-features = false } actix-service = "2.0.0-beta.2" bitflags = "1" bytes = "1" @@ -32,4 +32,4 @@ v_htmlescape = "0.12" [dev-dependencies] actix-rt = "2.0.0-beta.1" -actix-web = "3.0.0" +actix-web = "4.0.0-beta.1" diff --git a/actix-http-test/CHANGES.md b/actix-http-test/CHANGES.md index 6ed6a0603..ed6d87a60 100644 --- a/actix-http-test/CHANGES.md +++ b/actix-http-test/CHANGES.md @@ -1,6 +1,9 @@ # Changes ## Unreleased - 2021-xx-xx + + +## 3.0.0-beta.1 - 2021-01-07 * Update `bytes` to `1.0`. [#1813] [#1813]: https://github.com/actix/actix-web/pull/1813 diff --git a/actix-http-test/Cargo.toml b/actix-http-test/Cargo.toml index 910fbab73..a056b833e 100644 --- a/actix-http-test/Cargo.toml +++ b/actix-http-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-http-test" -version = "2.1.0" +version = "3.0.0-beta.1" authors = ["Nikolay Kim "] description = "Various helpers for Actix applications to use during testing" readme = "README.md" @@ -35,7 +35,7 @@ actix-tls = "3.0.0-beta.2" actix-utils = "3.0.0-beta.1" actix-rt = "2.0.0-beta.1" actix-server = "2.0.0-beta.2" -awc = "2.0.0" +awc = "3.0.0-beta.1" base64 = "0.13" bytes = "1" @@ -51,5 +51,5 @@ time = { version = "0.2.7", default-features = false, features = ["std"] } open-ssl = { version = "0.10", package = "openssl", optional = true } [dev-dependencies] -actix-web = "3.0.0" -actix-http = "2.0.0" +actix-web = "4.0.0-beta.1" +actix-http = "3.0.0-beta.1" diff --git a/actix-http/CHANGES.md b/actix-http/CHANGES.md index 6daed67a0..6abd0ba76 100644 --- a/actix-http/CHANGES.md +++ b/actix-http/CHANGES.md @@ -1,6 +1,9 @@ # Changes ## Unreleased - 2021-xx-xx + + +## 3.0.0-beta.1 - 2021-01-07 ### Added * Add `Http3` to `Protocol` enum for future compatibility and also mark `#[non_exhaustive]`. diff --git a/actix-http/Cargo.toml b/actix-http/Cargo.toml index e80800d06..1c8206ef2 100644 --- a/actix-http/Cargo.toml +++ b/actix-http/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-http" -version = "2.2.0" +version = "3.0.0-beta.1" authors = ["Nikolay Kim "] description = "HTTP primitives for the Actix ecosystem" readme = "README.md" @@ -87,7 +87,7 @@ flate2 = { version = "1.0.13", optional = true } [dev-dependencies] actix-server = "2.0.0-beta.2" -actix-http-test = { version = "2.0.0", features = ["openssl"] } +actix-http-test = { version = "3.0.0-beta.1", features = ["openssl"] } actix-tls = { version = "3.0.0-beta.2", features = ["openssl"] } criterion = "0.3" env_logger = "0.7" diff --git a/actix-multipart/CHANGES.md b/actix-multipart/CHANGES.md index 4c6f01d29..e1fe9c4af 100644 --- a/actix-multipart/CHANGES.md +++ b/actix-multipart/CHANGES.md @@ -1,17 +1,21 @@ # Changes ## Unreleased - 2021-xx-xx -* Fix multipart consuming payload before header checks #1513 + + +## 0.4.0-beta.1 - 2021-01-07 +* Fix multipart consuming payload before header checks. [#1513] * Update `bytes` to `1.0`. [#1813] [#1813]: https://github.com/actix/actix-web/pull/1813 +[#1513]: https://github.com/actix/actix-web/pull/1513 -## 3.0.0 - 2020-09-11 -* No significant changes from `3.0.0-beta.2`. +## 0.3.0 - 2020-09-11 +* No significant changes from `0.3.0-beta.2`. -## 3.0.0-beta.2 - 2020-09-10 +## 0.3.0-beta.2 - 2020-09-10 * Update `actix-*` dependencies to latest versions. diff --git a/actix-multipart/Cargo.toml b/actix-multipart/Cargo.toml index ed572a700..d22cf7ef0 100644 --- a/actix-multipart/Cargo.toml +++ b/actix-multipart/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-multipart" -version = "0.3.0" +version = "0.4.0-beta.1" authors = ["Nikolay Kim "] description = "Multipart support for actix web framework." readme = "README.md" @@ -16,11 +16,11 @@ name = "actix_multipart" path = "src/lib.rs" [dependencies] -actix-web = { version = "3.0.0", default-features = false } +actix-web = { version = "4.0.0-beta.1", default-features = false } actix-utils = "3.0.0-beta.1" bytes = "1" -derive_more = "0.99.2" +derive_more = "0.99.5" httparse = "1.3" futures-util = { version = "0.3.7", default-features = false } log = "0.4" @@ -29,4 +29,4 @@ twoway = "0.2" [dev-dependencies] actix-rt = "2.0.0-beta.1" -actix-http = "2.0.0" +actix-http = "3.0.0-beta.1" diff --git a/actix-web-actors/CHANGES.md b/actix-web-actors/CHANGES.md index dab35953a..f75c6805f 100644 --- a/actix-web-actors/CHANGES.md +++ b/actix-web-actors/CHANGES.md @@ -1,6 +1,9 @@ # Changes ## Unreleased - 2021-xx-xx + + +## 4.0.0-beta.1 - 2021-01-07 * Update `pin-project` to `1.0`. * Update `bytes` to `1.0`. [#1813] * `WebsocketContext::text` now takes an `Into`. [#1864] @@ -8,6 +11,7 @@ [#1813]: https://github.com/actix/actix-web/pull/1813 [#1864]: https://github.com/actix/actix-web/pull/1864 + ## 3.0.0 - 2020-09-11 * No significant changes from `3.0.0-beta.2`. diff --git a/actix-web-actors/Cargo.toml b/actix-web-actors/Cargo.toml index dac4060ba..331363543 100644 --- a/actix-web-actors/Cargo.toml +++ b/actix-web-actors/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-web-actors" -version = "3.0.0" +version = "4.0.0-beta.1" authors = ["Nikolay Kim "] description = "Actix actors support for actix web framework." readme = "README.md" @@ -18,8 +18,8 @@ path = "src/lib.rs" [dependencies] actix = "0.11.0-beta.1" actix-codec = "0.4.0-beta.1" -actix-http = "2.0.0" -actix-web = { version = "3.0.0", default-features = false } +actix-http = "3.0.0-beta.1" +actix-web = { version = "4.0.0-beta.1", default-features = false } bytes = "1" bytestring = "1" diff --git a/actix-web-codegen/Cargo.toml b/actix-web-codegen/Cargo.toml index 3fc4ae1be..25e88d9e1 100644 --- a/actix-web-codegen/Cargo.toml +++ b/actix-web-codegen/Cargo.toml @@ -20,7 +20,7 @@ proc-macro2 = "1" [dev-dependencies] actix-rt = "2.0.0-beta.1" -actix-web = "3.0.0" +actix-web = "4.0.0-beta.1" futures-util = { version = "0.3.7", default-features = false } trybuild = "1" rustversion = "1" diff --git a/awc/CHANGES.md b/awc/CHANGES.md index 45a38259c..89b6121f3 100644 --- a/awc/CHANGES.md +++ b/awc/CHANGES.md @@ -1,6 +1,9 @@ # Changes ## Unreleased - 2021-xx-xx + + +## 3.0.0-beta.1 - 2021-01-07 ### Changed * Update `rand` to `0.8` * Update `bytes` to `1.0`. [#1813] diff --git a/awc/Cargo.toml b/awc/Cargo.toml index b80f1ba6b..b92df8247 100644 --- a/awc/Cargo.toml +++ b/awc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "awc" -version = "2.0.3" +version = "3.0.0-beta.1" authors = ["Nikolay Kim "] description = "Async HTTP and WebSocket client library built on the Actix ecosystem" readme = "README.md" @@ -39,13 +39,13 @@ compress = ["actix-http/compress"] [dependencies] actix-codec = "0.4.0-beta.1" actix-service = "2.0.0-beta.2" -actix-http = "2.2.0" +actix-http = "3.0.0-beta.1" actix-rt = "2.0.0-beta.1" base64 = "0.13" bytes = "1" cfg-if = "1.0" -derive_more = "0.99.2" +derive_more = "0.99.5" futures-core = { version = "0.3.7", default-features = false } log =" 0.4" mime = "0.3" @@ -61,9 +61,9 @@ rust-tls = { version = "0.19.0", package = "rustls", optional = true, features = # TODO: actix is temporary added as dev dep for actix-macro reason. # Can be removed when it does not impact tests. actix = "0.11.0-beta.1" -actix-web = { version = "3.0.0", features = ["openssl"] } -actix-http = { version = "2.0.0", features = ["openssl"] } -actix-http-test = { version = "2.0.0", features = ["openssl"] } +actix-web = { version = "4.0.0-beta.1", features = ["openssl"] } +actix-http = { version = "3.0.0-beta.1", features = ["openssl"] } +actix-http-test = { version = "3.0.0-beta.1", features = ["openssl"] } actix-utils = "3.0.0-beta.1" actix-server = "2.0.0-beta.2" actix-tls = { version = "3.0.0-beta.2", features = ["openssl", "rustls"] }