Update changelogs

This commit is contained in:
Jonas Platte 2019-11-20 23:28:50 +01:00
parent 8c898f3766
commit d054bbb407
No known key found for this signature in database
GPG Key ID: 7D261D771D915378
2 changed files with 12 additions and 7 deletions

View File

@ -1,12 +1,5 @@
# [unreleased]
Improvements:
* Add more sanity checks
* No multiple `#[ruma_api(body)]` fields in one request / response definition
* No multiple field kind declarations `#[ruma_api(body|query|path)]` on one field
* No (newtype) body fields in GET endpoints
# 0.11.0
Breaking changes:

View File

@ -1,5 +1,17 @@
# [unreleased]
Improvements:
* Add spans to almost every error that can come up in `ruma_api!`
* Add a new field kind: `#[ruma_api(query_map)]`
* This allows endpoints that have a dynamic set of query parameters to be implemented
* For details see the documentation of `ruma_api!`
* Add more sanity checks
* No multiple `#[ruma_api(body)]` fields in one request / response definition
* No multiple field kind declarations `#[ruma_api(body|query|path)]` on one field
* No (newtype) body fields in GET endpoints
* Lots of refactoring of the internals
# 0.7.1
Bug fixes: