-
-
Notifications
You must be signed in to change notification settings - Fork 375
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: implement HTMX
plugin using litestar-htmx
#3837
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #3837 +/- ##
==========================================
+ Coverage 98.41% 98.42% +0.01%
==========================================
Files 332 333 +1
Lines 15500 15346 -154
Branches 1703 1694 -9
==========================================
- Hits 15254 15105 -149
+ Misses 113 111 -2
+ Partials 133 130 -3 ☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Right now this is a breaking change though, due to the fact that this line here sets the request class of the application to HTMXRequest
.
There is no |
It looks like `.xml` file extensions are read as `text/xml` instead of `application/xml`. Trio backend has some flaky tests on for the Server Side Sesssion backends.
Quality Gate passedIssues Measures |
Documentation preview will be available shortly at https://litestar-org.github.io/litestar-docs-preview/3837 |
Description
This plugin migrates the HTMX integration to
litestar.plugins.htmx
.This logic has been moved to it's own repository named
litestar-htmx
This is in preparation for 3.0 release where
contrib
will be deprecated.Closes