2022-07-31 15:44:45 +02:00
|
|
|
# Changes
|
|
|
|
|
2023-09-16 01:30:38 +02:00
|
|
|
## Unreleased
|
2022-07-31 21:13:27 +02:00
|
|
|
|
2024-08-03 10:59:13 +02:00
|
|
|
- Add new feature named `openssl` for TLS settings using `OpenSSL` dependency. [#380]
|
|
|
|
- Add new function `settings::tls::Tls::get_ssl_acceptor_builder()` to build `openssl::ssl::SslAcceptorBuilder`. [#380]
|
|
|
|
- Implement TLS logic for `ApplySettings<S>::try_apply_settings()`. [#380]
|
|
|
|
- Add `openssl` dependency;
|
2024-01-04 05:10:46 +01:00
|
|
|
- Minimum supported Rust version (MSRV) is now 1.75.
|
2024-08-03 10:59:13 +02:00
|
|
|
- `ApplySettings<S>::apply_settings()` is deprecated; `ApplySettings<S>::try_apply_settings()` should be preferred. [#380]
|
|
|
|
|
|
|
|
[#380]: https://github.com/actix/actix-extras/pull/380
|
2024-01-04 05:10:46 +01:00
|
|
|
|
2023-11-03 21:30:00 +01:00
|
|
|
## 0.7.1
|
|
|
|
|
|
|
|
- Fix doc examples.
|
|
|
|
|
2023-11-03 21:24:04 +01:00
|
|
|
## 0.7.0
|
|
|
|
|
2023-11-03 21:16:31 +01:00
|
|
|
- The `ApplySettings` trait now includes a type parameter, allowing multiple types to be implemented per configuration target.
|
|
|
|
- Implement `ApplySettings` for `ActixSettings`.
|
2023-11-03 21:23:55 +01:00
|
|
|
- `BasicSettings::from_default_template()` is now infallible.
|
2022-08-10 10:13:34 +02:00
|
|
|
- Rename `AtError => Error`.
|
|
|
|
- Remove `AtResult` type alias.
|
2023-09-16 01:59:19 +02:00
|
|
|
- Update `toml` dependency to `0.8`.
|
2023-09-16 02:19:16 +02:00
|
|
|
- Remove `ioe` dependency; `std::io::Error` is now used directly.
|
|
|
|
- Remove `Clone` implementation for `Error`.
|
|
|
|
- Implement `Display` for `Error`.
|
|
|
|
- Implement std's `Error` for `Error`.
|
2023-09-16 01:30:38 +02:00
|
|
|
- Minimum supported Rust version (MSRV) is now 1.68.
|
2022-07-31 21:13:27 +02:00
|
|
|
|
2023-09-16 01:30:38 +02:00
|
|
|
## 0.6.0
|
2022-08-10 10:13:34 +02:00
|
|
|
|
2022-07-31 15:44:45 +02:00
|
|
|
- Update Actix Web dependencies to v4 ecosystem.
|
|
|
|
- Rename `actix.ssl` settings object to `actix.tls`.
|
|
|
|
- `NoSettings` is now marked `#[non_exhaustive]`.
|
|
|
|
|
2023-09-16 01:30:38 +02:00
|
|
|
## 0.5.2
|
2022-08-10 10:13:34 +02:00
|
|
|
|
2022-07-31 15:44:45 +02:00
|
|
|
- Adopted into @actix org from <https://github.com/jjpe/actix-settings>.
|