mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-23 07:39:25 +01:00
007a0e85f2
* Use 308 status instead of 301 when redirecting For redirects resulting from requests to paths with a trailing slash, use 308 instead of 301 to prevent non-GET requests (POST, PUT, etc) from being changed to GET. For example, (assuming a route for /path is defined)... - Old behavior results in: POST /path/ -> GET /path - New behavior results in: POST /path/ -> POST /path Fixes #681 * Add deprecation notice to found() Deprecates found() due to its use of HTTP 302 * rustfmt * Use dedicated redirect method Use Redirect::permanent instead of re-implementing its functionality * Remove deprecated method from example Replace usages of Redirect:found with Redirect::to and Redirect::temporary as appropriate * Fix panic in oauth example Previously the example would panic if a request was made without the `Cookie` header. Now the user is redirected to the login page as expected. * Update CHANGELOG * Revert pub TypedheaderRejection fields * Fix clippy lint * cargo fmt * Fix CHANGELOG link * Adhere to implicit line length limit |
||
---|---|---|
.. | ||
async-graphql | ||
chat | ||
cors | ||
customize-extractor-error | ||
customize-path-rejection | ||
error-handling-and-dependency-injection | ||
form | ||
global-404-handler | ||
graceful-shutdown | ||
hello-world | ||
http-proxy | ||
jwt | ||
key-value-store | ||
low-level-rustls | ||
multipart-form | ||
oauth | ||
print-request-response | ||
prometheus-metrics | ||
query-params-with-empty-strings | ||
readme | ||
reverse-proxy | ||
routes-and-handlers-close-together | ||
sessions | ||
sse | ||
static-file-server | ||
templates | ||
testing | ||
tls-rustls | ||
todos | ||
tokio-postgres | ||
tracing-aka-logging | ||
unix-domain-socket | ||
validator | ||
versioning | ||
websockets | ||
README.md |