mirror of
https://github.com/actix/actix-extras.git
synced 2025-08-31 19:37:00 +02:00
* build(deps): bump deadpool-redis from 0.20.0 to 0.21.1 Bumps [deadpool-redis](https://github.com/bikeshedder/deadpool) from 0.20.0 to 0.21.1. - [Changelog](https://github.com/deadpool-rs/deadpool/blob/master/CHANGELOG.md) - [Commits](https://github.com/bikeshedder/deadpool/compare/deadpool-redis-v0.20.0...deadpool-redis-v0.21.1) --- updated-dependencies: - dependency-name: deadpool-redis dependency-version: 0.21.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Update redis crate * Update MSRV --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Yuki Okushi <huyuumi.dev@gmail.com>
1.3 KiB
1.3 KiB
Changes
Unreleased
- Minimum supported Rust version (MSRV) is now 1.80.
0.8.0
- Add
openssl
crate feature for TLS settings using OpenSSL. - Add
ApplySettings::try_apply_settings()
. - Implement TLS logic for
ApplySettings::try_apply_settings()
. - Add
Tls::get_ssl_acceptor_builder()
function to buildopenssl::ssl::SslAcceptorBuilder
. - Deprecate
ApplySettings::apply_settings()
. - Minimum supported Rust version (MSRV) is now 1.75.
0.7.1
- Fix doc examples.
0.7.0
- The
ApplySettings
trait now includes a type parameter, allowing multiple types to be implemented per configuration target. - Implement
ApplySettings
forActixSettings
. BasicSettings::from_default_template()
is now infallible.- Rename
AtError => Error
. - Remove
AtResult
type alias. - Update
toml
dependency to0.8
. - Remove
ioe
dependency;std::io::Error
is now used directly. - Remove
Clone
implementation forError
. - Implement
Display
forError
. - Implement std's
Error
forError
. - Minimum supported Rust version (MSRV) is now 1.68.
0.6.0
- Update Actix Web dependencies to v4 ecosystem.
- Rename
actix.ssl
settings object toactix.tls
. NoSettings
is now marked#[non_exhaustive]
.
0.5.2
- Adopted into @actix org from https://github.com/jjpe/actix-settings.