2018-01-23 10:06:43 -08:00
# Changes
2022-06-22 20:42:46 +09:00
## Unreleased - 2022-xx-xx
2022-08-28 20:30:32 +01:00
- Minimum supported Rust version (MSRV) is now 1.59 due to transitive `time` dependency.
2022-07-09 20:11:56 +01:00
## 0.12.0 - 2022-07-09
2022-07-09 20:11:14 +01:00
- Update `actix` dependency to `0.13` .
- Update `redis-async` dependency to `0.13` .
- Update `tokio-util` dependency to `0.7` .
2022-06-22 20:42:46 +09:00
- Minimum supported Rust version (MSRV) is now 1.57 due to transitive `time` dependency.
2022-03-15 18:01:31 +00:00
## 0.11.0 - 2022-03-15
2022-03-05 23:22:14 +00:00
### Removed
- `RedisSession` has been removed. Check out `RedisActorSessionStore` in `actix-session` for a session store backed by Redis using `actix-redis` . [#212 ]
2022-03-15 18:01:31 +00:00
2022-03-05 23:22:14 +00:00
### Changed
- Update `redis-async` dependency to `0.12` . [#212 ]
[#212 ]: https://github.com/actix/actix-extras/pull/212
2022-02-07 17:49:06 +00:00
2022-03-01 04:12:20 +00:00
## 0.10.0 - 2022-03-01
2022-03-01 04:13:56 +00:00
- Update `actix-web` dependency to `4` .
2022-03-01 04:12:20 +00:00
2022-02-07 17:49:06 +00:00
## 0.10.0-beta.6 - 2022-02-07
2022-02-03 22:33:47 +00:00
- Update `actix-web` dependency to `4.0.0-rc.1` .
2021-12-29 10:26:17 +00:00
## 0.10.0-beta.5 - 2021-12-29
2021-12-29 10:22:56 +00:00
- Update `actix-web` dependency to `4.0.0.beta-18` . [#218 ]
2021-12-29 09:42:31 +00:00
- Minimum supported Rust version (MSRV) is now 1.54.
2021-12-12 19:12:46 +00:00
2021-12-29 10:22:56 +00:00
[#218 ]: https://github.com/actix/actix-extras/pull/218
2021-12-12 19:12:46 +00:00
## 0.10.0-beta.4 - 2021-12-12
2021-12-29 09:36:12 +00:00
- A session will be created in Redis if and only if there is some data inside the session state. This reduces the performance impact of `RedisSession` on routes that do not leverage sessions. [#207 ]
- Update `actix-web` dependency to `4.0.0.beta-14` . [#209 ]
2021-12-11 16:05:21 +00:00
2021-12-11 16:23:22 +00:00
[#207 ]: https://github.com/actix/actix-extras/pull/207
2021-12-11 16:05:21 +00:00
[#209 ]: https://github.com/actix/actix-extras/pull/209
2021-10-21 17:59:05 +01:00
## 0.10.0-beta.3 - 2021-10-21
2021-12-29 09:36:12 +00:00
- Update `actix-web` dependency to v4.0.0-beta.10. [#203 ]
- Minimum supported Rust version (MSRV) is now 1.52.
2021-04-02 11:38:27 +01:00
2021-10-21 13:10:00 +00:00
[#203 ]: https://github.com/actix/actix-extras/pull/203
2021-04-02 11:38:27 +01:00
2021-10-21 17:37:00 +01:00
## 0.10.0-beta.2 - 2021-06-27
2021-12-29 09:36:12 +00:00
- No notable changes.
2021-06-27 07:28:26 +01:00
2021-10-21 17:37:00 +01:00
## 0.10.0-beta.1 - 2021-04-02
2021-12-29 09:36:12 +00:00
- Update `actix-web` dependency to 4.0.0 beta.
- Minimum supported Rust version (MSRV) is now 1.46.0.
2021-03-21 09:38:29 +00:00
2021-10-21 17:37:00 +01:00
## 0.9.2 - 2021-03-21
2021-12-29 09:36:12 +00:00
- Implement `std::error::Error` for `Error` [#135 ]
- Allow the removal of `Max-Age` for session-only cookies. [#161 ]
2021-03-06 19:26:06 +00:00
2021-03-21 09:38:29 +00:00
[#135 ]: https://github.com/actix/actix-extras/pull/135
2021-03-06 19:26:06 +00:00
[#161 ]: https://github.com/actix/actix-extras/pull/161
2020-09-13 04:28:08 +01:00
2021-03-21 09:38:29 +00:00
2020-09-13 04:28:08 +01:00
## 0.9.1 - 2020-09-12
2021-12-29 09:36:12 +00:00
- Enforce minimum redis-async version of 0.6.3 to workaround breaking patch change.
2020-09-11 21:22:55 +01:00
## 0.9.0 - 2020-09-11
2021-12-29 09:36:12 +00:00
- Update `actix-web` dependency to 3.0.0.
- Minimize `futures` dependency.
2020-05-21 17:17:56 +09:00
2020-03-29 14:36:01 +02:00
2020-09-11 21:22:55 +01:00
## 0.9.0-alpha.2 - 2020-05-17
2021-12-29 09:36:12 +00:00
- Add `cookie_http_only` functionality to RedisSession builder, setting this
2020-03-29 14:36:01 +02:00
to false allows JavaScript to access cookies. Defaults to true.
2021-12-29 09:36:12 +00:00
- Change type of parameter of ttl method to u32.
- Update `actix` to 0.10.0-alpha.3
- Update `tokio-util` to 0.3
- Minimum supported Rust version(MSRV) is now 1.40.0.
2020-05-17 11:34:00 +09:00
2020-03-15 03:54:35 -04:00
2020-09-11 21:22:55 +01:00
## 0.9.0-alpha.1 - 2020-03-28
2021-12-29 09:36:12 +00:00
- Update `actix` to 0.10.0-alpha.2
- Update `actix-session` to 0.4.0-alpha.1
- Update `actix-web` to 3.0.0-alpha.1
- Update `time` to 0.2.9
2020-03-15 03:54:35 -04:00
2020-09-11 21:22:55 +01:00
2020-09-12 00:52:55 +01:00
## 0.8.1 - 2020-02-18
2021-12-29 09:36:12 +00:00
- Move `env_logger` dependency to dev-dependencies and update to 0.7
- Update `actix_web` to 2.0.0 from 2.0.0-rc
- Move repository to actix-extras
2020-02-18 08:01:26 +09:00
2019-12-20 22:09:08 +06:00
2020-09-12 00:52:55 +01:00
## 0.8.0 - 2019-12-20
2021-12-29 09:36:12 +00:00
- Release
2019-12-20 22:09:08 +06:00
2019-12-15 23:46:03 +06:00
2020-09-12 00:52:55 +01:00
## 0.8.0-alpha.1 - 2019-12-16
2021-12-29 09:36:12 +00:00
- Migrate to actix 0.9
2019-12-15 23:46:03 +06:00
2019-09-25 08:42:49 -04:00
2020-09-12 00:52:55 +01:00
## 0.7.0 - 2019-09-25
2021-12-29 09:36:12 +00:00
- added cache_keygen functionality to RedisSession builder, enabling support for
2019-09-25 08:42:49 -04:00
customizable cache key creation
2020-09-12 00:52:55 +01:00
## 0.6.1 - 2019-07-19
2021-12-29 09:36:12 +00:00
- remove ClonableService usage
- added comprehensive tests for session workflow
2019-07-11 15:19:22 -04:00
2019-07-04 06:10:03 -04:00
2020-09-12 00:52:55 +01:00
## 0.6.0 - 2019-07-08
2021-12-29 09:36:12 +00:00
- actix-web 1.0.0 compatibility
- Upgraded logic that evaluates session state, including new SessionStatus field,
2019-07-04 06:10:03 -04:00
and introduced ``session.renew()`` and ``session.purge()` ` functionality.
Use ``renew()`` to cycle the session key at successful login. ``renew()` ` keeps a
session's state while replacing the old cookie and session key with new ones.
Use ``purge()` ` at logout to invalidate the session cookie and remove the
session's redis cache entry.
2020-09-12 00:52:55 +01:00
## 0.5.1 - 2018-08-02
2021-12-29 09:36:12 +00:00
- Use cookie 0.11
2018-08-02 11:35:34 -07:00
2020-09-12 00:52:55 +01:00
## 0.5.0 - 2018-07-21
2021-12-29 09:36:12 +00:00
- Session cookie configuration
- Actix/Actix-web 0.7 compatibility
2018-07-20 14:54:50 -07:00
2020-09-12 00:52:55 +01:00
## 0.4.0 - 2018-05-08
2021-12-29 09:36:12 +00:00
- Actix web 0.6 compatibility
2018-05-08 10:12:57 -07:00
2018-04-10 12:20:24 -07:00
2020-09-12 00:52:55 +01:00
## 0.3.0 - 2018-04-10
2021-12-29 09:36:12 +00:00
- Actix web 0.5 compatibility
2018-04-10 12:20:24 -07:00
2018-02-28 08:05:44 -08:00
2020-09-12 00:52:55 +01:00
## 0.2.0 - 2018-02-28
2021-12-29 09:36:12 +00:00
- Use resolver actor from actix
- Use actix web 0.5
2018-02-28 08:05:44 -08:00
2018-01-23 10:06:43 -08:00
2020-09-12 00:52:55 +01:00
## 0.1.0 - 2018-01-23
2021-12-29 09:36:12 +00:00
- First release