diff --git a/CHANGELOG.md b/CHANGELOG.md index 71e8fcb..e04181c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +## 0.6.0 (18. September, 2023) +### Changed +- Updated axum_session to 0.6.0. + ## 0.5.0 (6. September, 2023) ### Changed - Updated axum_session to 0.5.0. diff --git a/Cargo.toml b/Cargo.toml index c36edbe..08148be 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,6 +27,7 @@ postgres-native = ["axum_session/postgres-native"] mysql-rustls = ["axum_session/mysql-rustls"] mysql-native = ["axum_session/mysql-native"] redis-db = ["axum_session/redis-db"] +redis-clusterdb = ["axum_session/redis-clusterdb"] surrealdb-rocksdb = ["axum_session/surrealdb-rocksdb"] surrealdb-tikv = ["axum_session/surrealdb-tikv"] surrealdb-fdb-6_1 = ["axum_session/surrealdb-fdb-6_1"] @@ -36,6 +37,7 @@ surrealdb-fdb-7_0 = ["axum_session/surrealdb-fdb-7_0"] surrealdb-fdb-7_1 = ["axum_session/surrealdb-fdb-7_1"] surrealdb-mem = ["axum_session/surrealdb-mem"] key-store = ["axum_session/key-store"] +mongo = ["axum_session/mongo"] [dependencies] axum-core = "0.3.4" @@ -54,10 +56,10 @@ tokio = { version = "1.32.0", features = ["full"] } serde = "1.0.188" [dependencies.axum_session] -#path = "D:/Sources/AxumSessions" +#path = "C:/Sources/AxumSession" #git = "https://github.com/AscendingCreations/AxumSessions.git" #branch = "axum0.6" -version = "0.5.0" +version = "0.6.0" default-features = false [package.metadata.docs.rs] diff --git a/README.md b/README.md index 6c2e1d1..bcaaf6d 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ If you need help with this library or have suggestions please go to our [Discord # Cargo.toml [dependencies] # Postgres + rustls -axum_session_auth = { version = "0.5.0", features = [ "postgres-rustls" ] } +axum_session_auth = { version = "0.6.0", features = [ "postgres-rustls" ] } ``` #### Cargo Feature Flags @@ -50,15 +50,19 @@ axum_session_auth = { version = "0.5.0", features = [ "postgres-rustls" ] } `mysql-native`: `Sqlx` support for the MySQL/MariaDB database server and `native-tls`. -`redis-db`: `redis 0.23.0` session support. +`redis-db`: `redis_pool 0.2.1` session support. Enables Redis Client Pool -`surrealdb-rocksdb`: `1.0.0-beta.9` support for rocksdb. +`redis-clusterdb`: `redis_pool 0.2.0` session support. Enabled Redis ClusterClient Pool. -`surrealdb-tikv` : `1.0.0-beta.9` support for tikv. +`surrealdb-rocksdb`: `1.0.0` support for rocksdb. -`surrealdb-fdb-?_?` : `1.0.0-beta.9` support for fdb versions 6_1, 6_2, 6_3, 7_0, 7_1. Replace ?_? with version. +`surrealdb-tikv` : `1.0.0` support for tikv. -`surrealdb-mem` : `1.0.0-beta.9` support for mem. +`surrealdb-fdb-?_?` : `1.0.0` support for fdb versions 6_1, 6_2, 6_3, 7_0, 7_1. Replace ?_? with version. + +`surrealdb-mem` : `1.0.0` support for mem. + +`mongo` : `mongodb 2.6.1` support for mongo. # Example diff --git a/examples/NoPoolType/Cargo.toml b/examples/NoPoolType/Cargo.toml index 0823781..e92b851 100644 --- a/examples/NoPoolType/Cargo.toml +++ b/examples/NoPoolType/Cargo.toml @@ -21,7 +21,7 @@ anyhow = "1.0.71" serde = "1.0.167" [dependencies.axum_session] -version = "0.5.0" +version = "0.6.0" features = ["sqlite-rustls"] [dependencies.axum_session_auth] diff --git a/examples/sqlx-example/Cargo.toml b/examples/sqlx-example/Cargo.toml index f9c4a3d..faa802b 100644 --- a/examples/sqlx-example/Cargo.toml +++ b/examples/sqlx-example/Cargo.toml @@ -21,7 +21,7 @@ anyhow = "1.0.71" serde = "1.0.167" [dependencies.axum_session] -version = "0.5.0" +version = "0.6.0" features = ["sqlite-rustls"] [dependencies.axum_session_auth]