mirror of
https://github.com/tokio-rs/axum.git
synced 2026-08-26 00:00:23 +02:00
* Fix `#[debug_handler]` for multiple extractors It generated a function for each extractor to check the type but those functions didn't have unique names. Fixed by including all idents in the `arg: Extractor` token tree in the name of the function generated. Not sure there is a simpler way to fix it. * just use a counter * don't need visit feature anymore
29 lines
771 B
Markdown
29 lines
771 B
Markdown
# Changelog
|
|
|
|
All notable changes to this project will be documented in this file.
|
|
|
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
|
# Unreleased
|
|
|
|
- Fix regression causing errors when `#[debug_handler]` was used on functions with multiple
|
|
extractors.
|
|
|
|
# 0.2.1 (19. October 2021)
|
|
|
|
- Make macro handle more cases such as mutable extractors and handlers taking
|
|
`self` ([#518])
|
|
|
|
[#518]: https://github.com/tokio-rs/axum/pull/518
|
|
|
|
# 0.2.0 (13. October 2021)
|
|
|
|
- **breaking:** Removed `debug_router` macro.
|
|
- **breaking:** Removed `check_service` function.
|
|
- **breaking:** Removed `debug_service` function.
|
|
|
|
# 0.1.0 (6. October 2021)
|
|
|
|
- Initial release.
|