mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-23 15: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
|
||||
Check your PR fulfills the following:
|
||||
|
||||
<!-- Check your PR fulfills the following items. -->
|
||||
<!-- For draft PRs check the boxes as you complete them. -->
|
||||
|
||||
- [ ] Tests for the changes have been added / updated.
|
||||
- [ ] Documentation comments have been added / updated.
|
||||
- [ ] 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
|
||||
|
@ -3,6 +3,10 @@
|
||||
## Unreleased - 2021-xx-xx
|
||||
|
||||
|
||||
## 0.6.0-beta.2 - 2021-06-27
|
||||
* No notable changes.
|
||||
|
||||
|
||||
## 0.6.0-beta.1 - 2021-04-02
|
||||
* Update `actix-web` dependency to 4.0.0 beta.
|
||||
* Minimum supported Rust version (MSRV) is now 1.46.0.
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "actix-cors"
|
||||
version = "0.6.0-beta.1"
|
||||
version = "0.6.0-beta.2"
|
||||
authors = [
|
||||
"Nikolay Kim <fafhrd91@gmail.com>",
|
||||
"Rob Ede <robjtede@icloud.com>",
|
||||
|
@ -3,9 +3,9 @@
|
||||
> 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)
|
||||
[![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)
|
||||
[![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
|
||||
|
||||
|
@ -3,6 +3,10 @@
|
||||
## Unreleased - 2020-xx-xx
|
||||
|
||||
|
||||
## 0.4.0-beta.2 - 2020-06-27
|
||||
* No notable changes.
|
||||
|
||||
|
||||
## 0.4.0-beta.1 - 2020-04-02
|
||||
* Rename `CookieIdentityPolicy::{max_age => max_age_secs}`. [#168]
|
||||
* Rename `CookieIdentityPolicy::{max_age_time => max_age}`. [#168]
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "actix-identity"
|
||||
version = "0.4.0-beta.1"
|
||||
version = "0.4.0-beta.2"
|
||||
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
||||
description = "Identity service for Actix web"
|
||||
keywords = ["actix", "auth", "identity", "web", "security"]
|
||||
@ -22,5 +22,5 @@ serde_json = "1.0"
|
||||
time = "0.2.23"
|
||||
|
||||
[dev-dependencies]
|
||||
actix-http = "3.0.0-beta.4"
|
||||
actix-http = "3.0.0-beta.8"
|
||||
actix-rt = "2"
|
||||
|
@ -3,9 +3,9 @@
|
||||
> Identity service for actix-web framework.
|
||||
|
||||
[![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)
|
||||
[![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
|
||||
|
||||
|
@ -1,6 +1,9 @@
|
||||
# Changes
|
||||
|
||||
## Unreleased - 2020-xx-xx
|
||||
|
||||
|
||||
## 0.7.0-beta.1 - 2020-06-27
|
||||
* Bump `prost` version to 0.7. [#144]
|
||||
* Update `actix-web` dependency to 4.0.0 beta.
|
||||
* Minimum supported Rust version (MSRV) is now 1.46.0.
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "actix-protobuf"
|
||||
version = "0.6.0"
|
||||
version = "0.7.0-beta.1"
|
||||
edition = "2018"
|
||||
authors = [
|
||||
"kingxsp <jin.hb.zh@outlook.com>",
|
||||
|
@ -1,14 +1,17 @@
|
||||
# actix-protobuf
|
||||
|
||||
[![crates.io](https://img.shields.io/crates/v/actix-protobuf)](https://crates.io/crates/actix-protobuf)
|
||||
[![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)
|
||||
> Protobuf support for Actix Web.
|
||||
|
||||
[![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)
|
||||
[![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
|
||||
|
||||
@ -36,7 +39,7 @@ See [here](https://github.com/actix/actix-extras/tree/master/actix-protobuf/exam
|
||||
|
||||
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))
|
||||
* MIT license ([LICENSE-MIT](LICENSE-MIT) or [https://opensource.org/licenses/MIT](https://opensource.org/licenses/MIT))
|
||||
- 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))
|
||||
|
||||
at your option.
|
||||
|
@ -3,6 +3,10 @@
|
||||
## Unreleased - 2020-xx-xx
|
||||
|
||||
|
||||
## 0.10.0-beta.2 - 2020-06-27
|
||||
* No notable changes.
|
||||
|
||||
|
||||
## 0.10.0-beta.1 - 2020-04-02
|
||||
* Update `actix-web` dependency to 4.0.0 beta.
|
||||
* Minimum supported Rust version (MSRV) is now 1.46.0.
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "actix-redis"
|
||||
version = "0.10.0-beta.1"
|
||||
version = "0.10.0-beta.2"
|
||||
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
||||
description = "Redis integration for Actix and session store for Actix Web"
|
||||
license = "MIT OR Apache-2.0"
|
||||
@ -46,14 +46,14 @@ tokio-util = "0.6.1"
|
||||
|
||||
# actix-session
|
||||
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 }
|
||||
serde = { version = "1.0.101", optional = true }
|
||||
serde_json = { version = "1.0.40", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
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"
|
||||
env_logger = "0.8"
|
||||
serde = { version = "1.0.101", features = ["derive"] }
|
||||
|
@ -3,9 +3,9 @@
|
||||
> 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)
|
||||
[![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)
|
||||
[![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
|
||||
|
||||
|
@ -3,6 +3,10 @@
|
||||
## Unreleased - 2020-xx-xx
|
||||
|
||||
|
||||
## 0.5.0-beta.2 - 2020-06-27
|
||||
* No notable changes.
|
||||
|
||||
|
||||
## 0.5.0-beta.1 - 2020-04-02
|
||||
* Add `Session::entries`. [#170]
|
||||
* Rename `Session::{set => insert}` to match standard hash map naming. [#170]
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "actix-session"
|
||||
version = "0.5.0-beta.1"
|
||||
version = "0.5.0-beta.2"
|
||||
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
||||
description = "Sessions for Actix web"
|
||||
keywords = ["http", "web", "framework", "async", "session"]
|
||||
|
@ -3,9 +3,9 @@
|
||||
> Sessions for Actix Web.
|
||||
|
||||
[![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)
|
||||
[![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
|
||||
|
@ -3,6 +3,10 @@
|
||||
## Unreleased - 2020-xx-xx
|
||||
|
||||
|
||||
## 0.6.0-beta.2 - 2020-06-27
|
||||
* No notable changes.
|
||||
|
||||
|
||||
## 0.6.0-beta.1 - 2020-04-02
|
||||
* Update `actix-web` dependency to 4.0.0 beta.
|
||||
* Minimum supported Rust version (MSRV) is now 1.46.0.
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "actix-web-httpauth"
|
||||
version = "0.6.0-beta.1"
|
||||
version = "0.6.0-beta.2"
|
||||
authors = [
|
||||
"svartalf <self@svartalf.info>",
|
||||
"Yuki Okushi <huyuumi.dev@gmail.com>",
|
||||
@ -24,5 +24,5 @@ base64 = "0.13"
|
||||
futures-util = { version = "0.3.7", default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
actix-cors = "0.6.0-beta.1"
|
||||
actix-cors = "0.6.0-beta.2"
|
||||
actix-rt = "2"
|
||||
|
@ -3,9 +3,9 @@
|
||||
> 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)
|
||||
[![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)
|
||||
[![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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user