You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While the CDN approach is extremely simple, you may want to consider [not using CDNs in production](https://blog.wesleyac.com/posts/why-not-javascript-cdn).
I'm happy to announce the [1.9.3 release](https://unpkg.com/browse/htmx.org@1.9.3/) of htmx.
11
+
12
+
### New Features
13
+
14
+
* The `hx-on` attribute has been deprecated (sorry) in favor of `hx-on-<event name>` attributes. See [`hx-on`](/attributes/hx-on) for more information.
15
+
* You can now configure if a type of HTTP request uses the body for parameters or not. In particular, the `DELETE`_should_ use
16
+
query parameters, according to the spec. htmx has used the body, instead. To avoid breaking code we are keeping this undefined
17
+
behavior for now, but allowing people to fix it for their use cases by updating the `htmx.config.methodsThatUseUrlParams` config
18
+
option. Thank you to Alex and Vincent for their feedback and work on this issue!
19
+
* The `this` symbol is now available in event filter expressions, and refers to the element the `hx-trigger` is on
20
+
* The `HX-Reselect` HTTP response header has been added to change the selection from the returned content
21
+
22
+
### Improvements & Bug fixes
23
+
24
+
* We now have functioning CI using GitHub actions!
25
+
* Fix bug where the `htmx:afterSettle` event was raised multiple times with oob swaps occured
26
+
* A large number of accessibility fixes were made in the docs (Thank you Denis & crew!)
0 commit comments