mirror of
https://github.com/actix/actix-web.git
synced 2024-11-23 01:51:11 +00:00
3db7891303
* add scope proc macro * Update scope macro code to work with current HttpServiceFactory * started some test code * add some unit tests * code formatting cleanup * add another test for combining and calling 2 scopes * format code with formatter * Update actix-web-codegen/src/lib.rs with comment documentation fix Co-authored-by: oliver <151407407+kwfn@users.noreply.github.com> * work in progress. revised procedural macro to change othe macro call * add tests again. refactor nested code. * clean up code. fix bugs with route and method attributes with parameters * clean up for rust fmt * clean up for rust fmt * fix out of date comment for scope macro * sync to master branch by adding test_wrap * needed to format code * test: split out scope tests * test: add negative tests * chore: move imports back inside (?) * docs: tweak scope docs * fix: prevent trailing slashes in scope prefixes * chore: address clippy lints --------- Co-authored-by: oliver <151407407+kwfn@users.noreply.github.com> Co-authored-by: Rob Ede <robjtede@icloud.com>
3.4 KiB
3.4 KiB
Changes
Unreleased
- Add
#[scope]
macro. - Prevent inclusion of default
actix-router
features. - Minimum supported Rust version (MSRV) is now 1.72.
4.2.2
- Fix regression when declaring
wrap
attribute using an expression.
4.2.1
- Update
syn
dependency to2
. - Minimum supported Rust version (MSRV) is now 1.68 due to transitive
time
dependency.
4.2.0
- Add support for custom methods with the
#[route]
macro. #2969
4.1.0
- Add
#[routes]
macro to support multiple paths for one handler. #2718 - Minimum supported Rust version (MSRV) is now 1.59 due to transitive
time
dependency.
4.0.1
- Fix support for guard paths in route handler macros. #2771
- Minimum supported Rust version (MSRV) is now 1.56 due to transitive
hashbrown
dependency.
4.0.0
- Version aligned with
actix-web
and will remain in sync going forward. - No significant changes since
0.5.0
.
0.5.0
- No significant changes since
0.5.0-rc.2
.
0.5.0-rc.2
- No significant changes since
0.5.0-rc.1
.
0.5.0-rc.1
- Minimum supported Rust version (MSRV) is now 1.54.
0.5.0-beta.6
- No significant changes since
0.5.0-beta.5
.
0.5.0-beta.5
- 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.
0.5.0-beta.4
- In routing macros, paths are now validated at compile time. #2350
- Minimum supported Rust version (MSRV) is now 1.51.
0.5.0-beta.3
- No notable changes.
0.5.0-beta.2
0.5.0-beta.1
- Use new call signature for
System::new
.
0.4.0
- Added compile success and failure testing. #1677
- Add
route
macro for supporting multiple HTTP methods guards. #1674
0.3.0
- No significant changes from
0.3.0-beta.1
.
0.3.0-beta.1
- Add main entry-point macro that uses re-exported runtime. #1559
0.2.2
- Add resource middleware on actix-web-codegen #1467
0.2.1
- Add
#[allow(missing_docs)]
attribute to generated structs #1368 - Allow the handler function to be named as
config
#1290
0.2.0
- Generate code for actix-web 2.0
0.1.3
- Bump up
syn
"e
to 1.0 - Provide better error message
0.1.2
- Add macros for head, options, trace, connect and patch http methods
0.1.1
- Add syn "extra-traits" feature
0.1.0
- Release
0.1.0-beta.1
- Gen code for actix-web 1.0.0-beta.1
0.1.0-alpha.6
- Gen code for actix-web 1.0.0-alpha.6
0.1.0-alpha.1
- Initial impl