1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-05-19 16:58:14 +00:00
actix-web/actix-web-codegen/CHANGES.md

105 lines
2.4 KiB
Markdown
Raw Normal View History

2019-03-28 20:46:26 +00:00
# Changes
2021-01-02 00:12:18 +00:00
## Unreleased - 2021-xx-xx
2021-10-20 21:32:05 +00:00
## 0.5.0-beta.6 - 2021-12-11
2021-12-22 08:21:30 +00:00
- No significant changes since `0.5.0-beta.5`.
2021-10-20 21:32:05 +00:00
## 0.5.0-beta.5 - 2021-10-20
2021-12-22 08:21:30 +00:00
- Improve error recovery potential when macro input is invalid. [#2410]
- Add `#[actix_web::test]` macro for setting up tests with a runtime. [#2409]
- Minimum supported Rust version (MSRV) is now 1.52.
[#2410]: https://github.com/actix/actix-web/pull/2410
2021-10-19 16:30:32 +00:00
[#2409]: https://github.com/actix/actix-web/pull/2409
## 0.5.0-beta.4 - 2021-09-09
2021-12-22 08:21:30 +00:00
- In routing macros, paths are now validated at compile time. [#2350]
- Minimum supported Rust version (MSRV) is now 1.51.
[#2350]: https://github.com/actix/actix-web/pull/2350
2021-06-19 10:51:20 +00:00
## 0.5.0-beta.3 - 2021-06-17
2021-12-22 08:21:30 +00:00
- No notable changes.
2021-06-19 10:51:20 +00:00
## 0.5.0-beta.2 - 2021-03-09
2021-12-22 08:21:30 +00:00
- Preserve doc comments when using route macros. [#2022]
- Add `name` attribute to `route` macro. [#1934]
[#2022]: https://github.com/actix/actix-web/pull/2022
[#1934]: https://github.com/actix/actix-web/pull/1934
2020-09-24 22:54:01 +00:00
2021-02-10 12:45:46 +00:00
## 0.5.0-beta.1 - 2021-02-10
2021-12-22 08:21:30 +00:00
- Use new call signature for `System::new`.
2021-02-10 12:45:46 +00:00
2020-09-24 22:54:01 +00:00
## 0.4.0 - 2020-09-20
2021-12-22 08:21:30 +00:00
- Added compile success and failure testing. [#1677]
- Add `route` macro for supporting multiple HTTP methods guards. [#1674]
[#1677]: https://github.com/actix/actix-web/pull/1677
[#1674]: https://github.com/actix/actix-web/pull/1674
2020-09-11 12:50:10 +00:00
## 0.3.0 - 2020-09-11
2021-12-22 08:21:30 +00:00
- No significant changes from `0.3.0-beta.1`.
2020-09-11 12:50:10 +00:00
## 0.3.0-beta.1 - 2020-07-14
2021-12-22 08:21:30 +00:00
- Add main entry-point macro that uses re-exported runtime. [#1559]
[#1559]: https://github.com/actix/actix-web/pull/1559
2020-05-13 00:57:37 +00:00
2020-09-30 10:07:35 +00:00
## 0.2.2 - 2020-05-23
2021-12-22 08:21:30 +00:00
- Add resource middleware on actix-web-codegen [#1467]
2020-05-23 08:22:30 +00:00
[#1467]: https://github.com/actix/actix-web/pull/1467
2020-05-13 00:57:37 +00:00
2020-09-30 10:07:35 +00:00
## 0.2.1 - 2020-02-25
2021-12-22 08:21:30 +00:00
- Add `#[allow(missing_docs)]` attribute to generated structs [#1368]
- Allow the handler function to be named as `config` [#1290]
2020-02-22 21:40:02 +00:00
[#1368]: https://github.com/actix/actix-web/issues/1368
[#1290]: https://github.com/actix/actix-web/issues/1290
2019-12-13 06:18:30 +00:00
2020-09-30 10:07:35 +00:00
## 0.2.0 - 2019-12-13
2021-12-22 08:21:30 +00:00
- Generate code for actix-web 2.0
2019-12-13 06:18:30 +00:00
2020-09-30 10:07:35 +00:00
## 0.1.3 - 2019-10-14
2021-12-22 08:21:30 +00:00
- Bump up `syn` & `quote` to 1.0
- Provide better error message
2019-06-04 16:33:43 +00:00
2020-09-30 10:07:35 +00:00
## 0.1.2 - 2019-06-04
2021-12-22 08:21:30 +00:00
- Add macros for head, options, trace, connect and patch http methods
2019-06-04 16:33:43 +00:00
2019-06-01 11:21:22 +00:00
2020-09-30 10:07:35 +00:00
## 0.1.1 - 2019-06-01
2021-12-22 08:21:30 +00:00
- Add syn "extra-traits" feature
2019-06-01 11:21:22 +00:00
2019-05-18 17:47:08 +00:00
2020-09-30 10:07:35 +00:00
## 0.1.0 - 2019-05-18
2021-12-22 08:21:30 +00:00
- Release
2019-05-18 17:47:08 +00:00
2019-04-21 04:16:51 +00:00
2020-09-30 10:07:35 +00:00
## 0.1.0-beta.1 - 2019-04-20
2021-12-22 08:21:30 +00:00
- Gen code for actix-web 1.0.0-beta.1
2019-04-21 04:16:51 +00:00
2019-04-14 15:09:32 +00:00
2020-09-30 10:07:35 +00:00
## 0.1.0-alpha.6 - 2019-04-14
2021-12-22 08:21:30 +00:00
- Gen code for actix-web 1.0.0-alpha.6
2019-04-14 15:09:32 +00:00
2019-03-28 20:46:26 +00:00
2020-09-30 10:07:35 +00:00
## 0.1.0-alpha.1 - 2019-03-28
2021-12-22 08:21:30 +00:00
- Initial impl