mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-23 23:51:06 +01:00
prepare second beta round (#189)
This commit is contained in:
parent
20ef05c36e
commit
44c7b07ce2
5
.github/PULL_REQUEST_TEMPLATE.md
vendored
5
.github/PULL_REQUEST_TEMPLATE.md
vendored
@ -8,14 +8,13 @@ INSERT_PR_TYPE
|
|||||||
|
|
||||||
|
|
||||||
## PR Checklist
|
## PR Checklist
|
||||||
Check your PR fulfills the following:
|
<!-- Check your PR fulfills the following items. -->
|
||||||
|
|
||||||
<!-- For draft PRs check the boxes as you complete them. -->
|
<!-- For draft PRs check the boxes as you complete them. -->
|
||||||
|
|
||||||
- [ ] Tests for the changes have been added / updated.
|
- [ ] Tests for the changes have been added / updated.
|
||||||
- [ ] Documentation comments have been added / updated.
|
- [ ] Documentation comments have been added / updated.
|
||||||
- [ ] A changelog entry has been made for the appropriate packages.
|
- [ ] A changelog entry has been made for the appropriate packages.
|
||||||
- [ ] Format code with the latest stable rustfmt
|
- [ ] Format code with the latest stable rustfmt.
|
||||||
|
|
||||||
|
|
||||||
## Overview
|
## Overview
|
||||||
|
@ -3,6 +3,10 @@
|
|||||||
## Unreleased - 2021-xx-xx
|
## Unreleased - 2021-xx-xx
|
||||||
|
|
||||||
|
|
||||||
|
## 0.6.0-beta.2 - 2021-06-27
|
||||||
|
* No notable changes.
|
||||||
|
|
||||||
|
|
||||||
## 0.6.0-beta.1 - 2021-04-02
|
## 0.6.0-beta.1 - 2021-04-02
|
||||||
* Update `actix-web` dependency to 4.0.0 beta.
|
* Update `actix-web` dependency to 4.0.0 beta.
|
||||||
* Minimum supported Rust version (MSRV) is now 1.46.0.
|
* Minimum supported Rust version (MSRV) is now 1.46.0.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "actix-cors"
|
name = "actix-cors"
|
||||||
version = "0.6.0-beta.1"
|
version = "0.6.0-beta.2"
|
||||||
authors = [
|
authors = [
|
||||||
"Nikolay Kim <fafhrd91@gmail.com>",
|
"Nikolay Kim <fafhrd91@gmail.com>",
|
||||||
"Rob Ede <robjtede@icloud.com>",
|
"Rob Ede <robjtede@icloud.com>",
|
||||||
|
@ -3,9 +3,9 @@
|
|||||||
> Cross-origin resource sharing (CORS) for Actix Web.
|
> Cross-origin resource sharing (CORS) for Actix Web.
|
||||||
|
|
||||||
[![crates.io](https://img.shields.io/crates/v/actix-cors?label=latest)](https://crates.io/crates/actix-cors)
|
[![crates.io](https://img.shields.io/crates/v/actix-cors?label=latest)](https://crates.io/crates/actix-cors)
|
||||||
[![Documentation](https://docs.rs/actix-cors/badge.svg?version=0.6.0-beta.1)](https://docs.rs/actix-cors/0.6.0-beta.1)
|
[![Documentation](https://docs.rs/actix-cors/badge.svg?version=0.6.0-beta.2)](https://docs.rs/actix-cors/0.6.0-beta.2)
|
||||||
![Apache 2.0 or MIT licensed](https://img.shields.io/crates/l/actix-cors)
|
![Apache 2.0 or MIT licensed](https://img.shields.io/crates/l/actix-cors)
|
||||||
[![Dependency Status](https://deps.rs/crate/actix-cors/0.6.0-beta.1/status.svg)](https://deps.rs/crate/actix-cors/0.6.0-beta.1)
|
[![Dependency Status](https://deps.rs/crate/actix-cors/0.6.0-beta.2/status.svg)](https://deps.rs/crate/actix-cors/0.6.0-beta.2)
|
||||||
|
|
||||||
## Documentation & Resources
|
## Documentation & Resources
|
||||||
|
|
||||||
|
@ -3,6 +3,10 @@
|
|||||||
## Unreleased - 2020-xx-xx
|
## Unreleased - 2020-xx-xx
|
||||||
|
|
||||||
|
|
||||||
|
## 0.4.0-beta.2 - 2020-06-27
|
||||||
|
* No notable changes.
|
||||||
|
|
||||||
|
|
||||||
## 0.4.0-beta.1 - 2020-04-02
|
## 0.4.0-beta.1 - 2020-04-02
|
||||||
* Rename `CookieIdentityPolicy::{max_age => max_age_secs}`. [#168]
|
* Rename `CookieIdentityPolicy::{max_age => max_age_secs}`. [#168]
|
||||||
* Rename `CookieIdentityPolicy::{max_age_time => max_age}`. [#168]
|
* Rename `CookieIdentityPolicy::{max_age_time => max_age}`. [#168]
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "actix-identity"
|
name = "actix-identity"
|
||||||
version = "0.4.0-beta.1"
|
version = "0.4.0-beta.2"
|
||||||
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
||||||
description = "Identity service for Actix web"
|
description = "Identity service for Actix web"
|
||||||
keywords = ["actix", "auth", "identity", "web", "security"]
|
keywords = ["actix", "auth", "identity", "web", "security"]
|
||||||
@ -22,5 +22,5 @@ serde_json = "1.0"
|
|||||||
time = "0.2.23"
|
time = "0.2.23"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
actix-http = "3.0.0-beta.4"
|
actix-http = "3.0.0-beta.8"
|
||||||
actix-rt = "2"
|
actix-rt = "2"
|
||||||
|
@ -3,9 +3,9 @@
|
|||||||
> Identity service for actix-web framework.
|
> Identity service for actix-web framework.
|
||||||
|
|
||||||
[![crates.io](https://img.shields.io/crates/v/actix-identity?label=latest)](https://crates.io/crates/actix-identity)
|
[![crates.io](https://img.shields.io/crates/v/actix-identity?label=latest)](https://crates.io/crates/actix-identity)
|
||||||
[![Documentation](https://docs.rs/actix-identity/badge.svg?version=0.4.0-beta.1)](https://docs.rs/actix-identity/0.4.0-beta.1)
|
[![Documentation](https://docs.rs/actix-identity/badge.svg?version=0.4.0-beta.2)](https://docs.rs/actix-identity/0.4.0-beta.2)
|
||||||
![Apache 2.0 or MIT licensed](https://img.shields.io/crates/l/actix-identity)
|
![Apache 2.0 or MIT licensed](https://img.shields.io/crates/l/actix-identity)
|
||||||
[![Dependency Status](https://deps.rs/crate/actix-identity/0.4.0-beta.1/status.svg)](https://deps.rs/crate/actix-identity/0.4.0-beta.1)
|
[![Dependency Status](https://deps.rs/crate/actix-identity/0.4.0-beta.2/status.svg)](https://deps.rs/crate/actix-identity/0.4.0-beta.2)
|
||||||
|
|
||||||
## Documentation & community resources
|
## Documentation & community resources
|
||||||
|
|
||||||
|
@ -1,6 +1,9 @@
|
|||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
## Unreleased - 2020-xx-xx
|
## Unreleased - 2020-xx-xx
|
||||||
|
|
||||||
|
|
||||||
|
## 0.7.0-beta.1 - 2020-06-27
|
||||||
* Bump `prost` version to 0.7. [#144]
|
* Bump `prost` version to 0.7. [#144]
|
||||||
* Update `actix-web` dependency to 4.0.0 beta.
|
* Update `actix-web` dependency to 4.0.0 beta.
|
||||||
* Minimum supported Rust version (MSRV) is now 1.46.0.
|
* Minimum supported Rust version (MSRV) is now 1.46.0.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "actix-protobuf"
|
name = "actix-protobuf"
|
||||||
version = "0.6.0"
|
version = "0.7.0-beta.1"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
authors = [
|
authors = [
|
||||||
"kingxsp <jin.hb.zh@outlook.com>",
|
"kingxsp <jin.hb.zh@outlook.com>",
|
||||||
|
@ -1,14 +1,17 @@
|
|||||||
# actix-protobuf
|
# actix-protobuf
|
||||||
|
|
||||||
[![crates.io](https://img.shields.io/crates/v/actix-protobuf)](https://crates.io/crates/actix-protobuf)
|
> Protobuf support for Actix Web.
|
||||||
[![Documentation](https://docs.rs/actix-protobuf/badge.svg)](https://docs.rs/actix-protobuf)
|
|
||||||
[![Dependency Status](https://deps.rs/crate/actix-protobuf/0.5.1/status.svg)](https://deps.rs/crate/actix-protobuf/0.5.1)
|
[![crates.io](https://img.shields.io/crates/v/actix-protobuf?label=latest)](https://crates.io/crates/actix-protobuf)
|
||||||
|
[![Documentation](https://docs.rs/actix-protobuf/badge.svg?version=0.7.0-beta.1)](https://docs.rs/actix-protobuf/0.7.0-beta.1)
|
||||||
![Apache 2.0 or MIT licensed](https://img.shields.io/crates/l/actix-protobuf)
|
![Apache 2.0 or MIT licensed](https://img.shields.io/crates/l/actix-protobuf)
|
||||||
[![Join the chat at https://gitter.im/actix/actix](https://badges.gitter.im/actix/actix.svg)](https://gitter.im/actix/actix?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
[![Dependency Status](https://deps.rs/crate/actix-protobuf/0.7.0-beta.1/status.svg)](https://deps.rs/crate/actix-protobuf/0.7.0-beta.1)
|
||||||
|
|
||||||
> Protobuf support for actix-web framework.
|
## Documentation & Resources
|
||||||
|
|
||||||
- Minimum Supported Rust Version (MSRV): 1.46
|
- [API Documentation](https://docs.rs/actix-protobuf)
|
||||||
|
- [Example Project](https://github.com/actix/examples/tree/master/other/protobuf)
|
||||||
|
- Minimum Supported Rust Version (MSRV): 1.46.0
|
||||||
|
|
||||||
## Example
|
## Example
|
||||||
|
|
||||||
@ -36,7 +39,7 @@ See [here](https://github.com/actix/actix-extras/tree/master/actix-protobuf/exam
|
|||||||
|
|
||||||
This project is licensed under either of
|
This project is licensed under either of
|
||||||
|
|
||||||
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0))
|
- Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0))
|
||||||
* MIT license ([LICENSE-MIT](LICENSE-MIT) or [https://opensource.org/licenses/MIT](https://opensource.org/licenses/MIT))
|
- MIT license ([LICENSE-MIT](LICENSE-MIT) or [https://opensource.org/licenses/MIT](https://opensource.org/licenses/MIT))
|
||||||
|
|
||||||
at your option.
|
at your option.
|
||||||
|
@ -3,6 +3,10 @@
|
|||||||
## Unreleased - 2020-xx-xx
|
## Unreleased - 2020-xx-xx
|
||||||
|
|
||||||
|
|
||||||
|
## 0.10.0-beta.2 - 2020-06-27
|
||||||
|
* No notable changes.
|
||||||
|
|
||||||
|
|
||||||
## 0.10.0-beta.1 - 2020-04-02
|
## 0.10.0-beta.1 - 2020-04-02
|
||||||
* Update `actix-web` dependency to 4.0.0 beta.
|
* Update `actix-web` dependency to 4.0.0 beta.
|
||||||
* Minimum supported Rust version (MSRV) is now 1.46.0.
|
* Minimum supported Rust version (MSRV) is now 1.46.0.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "actix-redis"
|
name = "actix-redis"
|
||||||
version = "0.10.0-beta.1"
|
version = "0.10.0-beta.2"
|
||||||
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
||||||
description = "Redis integration for Actix and session store for Actix Web"
|
description = "Redis integration for Actix and session store for Actix Web"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
@ -46,14 +46,14 @@ tokio-util = "0.6.1"
|
|||||||
|
|
||||||
# actix-session
|
# actix-session
|
||||||
actix-web = { version = "4.0.0-beta.8", default_features = false, optional = true }
|
actix-web = { version = "4.0.0-beta.8", default_features = false, optional = true }
|
||||||
actix-session = { version = "0.5.0-beta.1", optional = true }
|
actix-session = { version = "0.5.0-beta.2", optional = true }
|
||||||
rand = { version = "0.8.0", optional = true }
|
rand = { version = "0.8.0", optional = true }
|
||||||
serde = { version = "1.0.101", optional = true }
|
serde = { version = "1.0.101", optional = true }
|
||||||
serde_json = { version = "1.0.40", optional = true }
|
serde_json = { version = "1.0.40", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
actix-test = "0.1.0-beta.3"
|
actix-test = "0.1.0-beta.3"
|
||||||
actix-http = "3.0.0-beta.5"
|
actix-http = "3.0.0-beta.8"
|
||||||
actix-rt = "2.1"
|
actix-rt = "2.1"
|
||||||
env_logger = "0.8"
|
env_logger = "0.8"
|
||||||
serde = { version = "1.0.101", features = ["derive"] }
|
serde = { version = "1.0.101", features = ["derive"] }
|
||||||
|
@ -3,9 +3,9 @@
|
|||||||
> Redis integration for Actix and session store for Actix Web.
|
> Redis integration for Actix and session store for Actix Web.
|
||||||
|
|
||||||
[![crates.io](https://img.shields.io/crates/v/actix-redis?label=latest)](https://crates.io/crates/actix-redis)
|
[![crates.io](https://img.shields.io/crates/v/actix-redis?label=latest)](https://crates.io/crates/actix-redis)
|
||||||
[![Documentation](https://docs.rs/actix-redis/badge.svg?version=0.10.0-beta.1)](https://docs.rs/actix-redis/0.10.0-beta.1)
|
[![Documentation](https://docs.rs/actix-redis/badge.svg?version=0.10.0-beta.2)](https://docs.rs/actix-redis/0.10.0-beta.2)
|
||||||
![Apache 2.0 or MIT licensed](https://img.shields.io/crates/l/actix-redis)
|
![Apache 2.0 or MIT licensed](https://img.shields.io/crates/l/actix-redis)
|
||||||
[![Dependency Status](https://deps.rs/crate/actix-redis/0.10.0-beta.1/status.svg)](https://deps.rs/crate/actix-redis/0.10.0-beta.1)
|
[![Dependency Status](https://deps.rs/crate/actix-redis/0.10.0-beta.2/status.svg)](https://deps.rs/crate/actix-redis/0.10.0-beta.2)
|
||||||
|
|
||||||
## Documentation & Resources
|
## Documentation & Resources
|
||||||
|
|
||||||
|
@ -3,6 +3,10 @@
|
|||||||
## Unreleased - 2020-xx-xx
|
## Unreleased - 2020-xx-xx
|
||||||
|
|
||||||
|
|
||||||
|
## 0.5.0-beta.2 - 2020-06-27
|
||||||
|
* No notable changes.
|
||||||
|
|
||||||
|
|
||||||
## 0.5.0-beta.1 - 2020-04-02
|
## 0.5.0-beta.1 - 2020-04-02
|
||||||
* Add `Session::entries`. [#170]
|
* Add `Session::entries`. [#170]
|
||||||
* Rename `Session::{set => insert}` to match standard hash map naming. [#170]
|
* Rename `Session::{set => insert}` to match standard hash map naming. [#170]
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "actix-session"
|
name = "actix-session"
|
||||||
version = "0.5.0-beta.1"
|
version = "0.5.0-beta.2"
|
||||||
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
||||||
description = "Sessions for Actix web"
|
description = "Sessions for Actix web"
|
||||||
keywords = ["http", "web", "framework", "async", "session"]
|
keywords = ["http", "web", "framework", "async", "session"]
|
||||||
|
@ -3,9 +3,9 @@
|
|||||||
> Sessions for Actix Web.
|
> Sessions for Actix Web.
|
||||||
|
|
||||||
[![crates.io](https://img.shields.io/crates/v/actix-session?label=latest)](https://crates.io/crates/actix-session)
|
[![crates.io](https://img.shields.io/crates/v/actix-session?label=latest)](https://crates.io/crates/actix-session)
|
||||||
[![Documentation](https://docs.rs/actix-session/badge.svg?version=0.5.0-beta.1)](https://docs.rs/actix-session/0.5.0-beta.1)
|
[![Documentation](https://docs.rs/actix-session/badge.svg?version=0.5.0-beta.2)](https://docs.rs/actix-session/0.5.0-beta.2)
|
||||||
![Apache 2.0 or MIT licensed](https://img.shields.io/crates/l/actix-session)
|
![Apache 2.0 or MIT licensed](https://img.shields.io/crates/l/actix-session)
|
||||||
[![Dependency Status](https://deps.rs/crate/actix-session/0.5.0-beta.1/status.svg)](https://deps.rs/crate/actix-session/0.5.0-beta.1)
|
[![Dependency Status](https://deps.rs/crate/actix-session/0.5.0-beta.2/status.svg)](https://deps.rs/crate/actix-session/0.5.0-beta.2)
|
||||||
|
|
||||||
|
|
||||||
## Documentation & Resources
|
## Documentation & Resources
|
||||||
|
@ -3,6 +3,10 @@
|
|||||||
## Unreleased - 2020-xx-xx
|
## Unreleased - 2020-xx-xx
|
||||||
|
|
||||||
|
|
||||||
|
## 0.6.0-beta.2 - 2020-06-27
|
||||||
|
* No notable changes.
|
||||||
|
|
||||||
|
|
||||||
## 0.6.0-beta.1 - 2020-04-02
|
## 0.6.0-beta.1 - 2020-04-02
|
||||||
* Update `actix-web` dependency to 4.0.0 beta.
|
* Update `actix-web` dependency to 4.0.0 beta.
|
||||||
* Minimum supported Rust version (MSRV) is now 1.46.0.
|
* Minimum supported Rust version (MSRV) is now 1.46.0.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "actix-web-httpauth"
|
name = "actix-web-httpauth"
|
||||||
version = "0.6.0-beta.1"
|
version = "0.6.0-beta.2"
|
||||||
authors = [
|
authors = [
|
||||||
"svartalf <self@svartalf.info>",
|
"svartalf <self@svartalf.info>",
|
||||||
"Yuki Okushi <huyuumi.dev@gmail.com>",
|
"Yuki Okushi <huyuumi.dev@gmail.com>",
|
||||||
@ -24,5 +24,5 @@ base64 = "0.13"
|
|||||||
futures-util = { version = "0.3.7", default-features = false }
|
futures-util = { version = "0.3.7", default-features = false }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
actix-cors = "0.6.0-beta.1"
|
actix-cors = "0.6.0-beta.2"
|
||||||
actix-rt = "2"
|
actix-rt = "2"
|
||||||
|
@ -3,9 +3,9 @@
|
|||||||
> HTTP authentication schemes for [actix-web](https://github.com/actix/actix-web).
|
> HTTP authentication schemes for [actix-web](https://github.com/actix/actix-web).
|
||||||
|
|
||||||
[![crates.io](https://img.shields.io/crates/v/actix-web-httpauth?label=latest)](https://crates.io/crates/actix-web-httpauth)
|
[![crates.io](https://img.shields.io/crates/v/actix-web-httpauth?label=latest)](https://crates.io/crates/actix-web-httpauth)
|
||||||
[![Documentation](https://docs.rs/actix-web-httpauth/badge.svg?version=0.6.0-beta.1)](https://docs.rs/actix-web-httpauth/0.6.0-beta.1)
|
[![Documentation](https://docs.rs/actix-web-httpauth/badge.svg?version=0.6.0-beta.2)](https://docs.rs/actix-web-httpauth/0.6.0-beta.2)
|
||||||
![Apache 2.0 or MIT licensed](https://img.shields.io/crates/l/actix-web-httpauth)
|
![Apache 2.0 or MIT licensed](https://img.shields.io/crates/l/actix-web-httpauth)
|
||||||
[![Dependency Status](https://deps.rs/crate/actix-web-httpauth/0.6.0-beta.1/status.svg)](https://deps.rs/crate/actix-web-httpauth/0.6.0-beta.1)
|
[![Dependency Status](https://deps.rs/crate/actix-web-httpauth/0.6.0-beta.2/status.svg)](https://deps.rs/crate/actix-web-httpauth/0.6.0-beta.2)
|
||||||
|
|
||||||
## Documentation & Resources
|
## Documentation & Resources
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user