summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorSam Scott <sam@osohq.com>2024-04-07 14:36:05 -0500
committerGitHub <noreply@github.com>2024-04-07 14:36:05 -0500
commitc6e5914a31e0d602695a3ea601f6976a1ab07d0e (patch)
tree08d2521ea9c6d5067466f08978488a0db5db298a /CHANGELOG.md
parent671266456066aca49e577b871281191d84d01e2e (diff)
Actix: extract querystring from form data (#98)
* Deprecate support for actix-web 2.0 * Update actix.rs Added QsForm to support application/x-www-form-urlencoded Web forms * Update actix.rs with working adjustments Added Into_inner function for both QsQuery and QsForm to behave like actix_webs default extractors Made some fixes * Added missing code to actix.rs for QsForm * Update actix.rs Added new trait "IntoInner" Fixed QsFormConfig not correctly setting new settings correctly * Update actix.rs Removed trait requirement for using into_inner() now functions as a function. * Update src/actix.rs * Remove redundant config, add tests * Add changelog * Bump serde qs version * Add Debug bound to docs example --------- Co-authored-by: nMessage <135612238+nMessage@users.noreply.github.com>
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
index 0000000..35aa5c1
--- /dev/null
+++ b/CHANGELOG.md
@@ -0,0 +1,7 @@
+# Changelog
+
+## Version 0.13.0
+
+- Bump `axum` support to 0.7
+- Remove support for `actix-web 2.0`
+- Add support for extracting form data in actix via `QsForm`