bump to 1.9.2

This commit is contained in:
Carson Gross 2023-04-28 11:28:12 -06:00
parent 99b33b5bf6
commit 6c0aa11f62
7 changed files with 11 additions and 7 deletions

View File

@ -1,6 +1,10 @@
# Changelog
## [1.9.1] - 2023-04-16
## [1.9.2] - 2023-04-28
* Fixed bug w/ `hx-on` not properly de-initializing
## [1.9.1] - 2023-04-27
* Fixed a bug with the new naked triggers that prevented boosted elements with explicit `hx-trigger`'s from functioning
properly

View File

@ -33,7 +33,7 @@ By removing these arbitrary constraints htmx completes HTML as a
## quick start
```html
<script src="https://unpkg.com/htmx.org@1.9.1"></script>
<script src="https://unpkg.com/htmx.org@1.9.2"></script>
<!-- have a button POST a click via AJAX -->
<button hx-post="/clicked" hx-swap="outerHTML">
Click Me

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "htmx.org",
"version": "1.9.1",
"version": "1.9.2",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -5,7 +5,7 @@
"AJAX",
"HTML"
],
"version": "1.9.1",
"version": "1.9.2",
"homepage": "https://htmx.org/",
"bugs": {
"url": "https://github.com/bigskysoftware/htmx/issues"

View File

@ -82,7 +82,7 @@ return (function () {
sock.binaryType = htmx.config.wsBinaryType;
return sock;
},
version: "1.9.1"
version: "1.9.2"
};
/** @type {import("./htmx").HtmxInternalApi} */

View File

@ -32,7 +32,7 @@ By removing these arbitrary constraints, htmx completes HTML as a [hypertext](ht
<h2>quick start</h2>
```html
<script src="https://unpkg.com/htmx.org@1.9.1"></script>
<script src="https://unpkg.com/htmx.org@1.9.2"></script>
<!-- have a button POST a click via AJAX -->
<button hx-post="/clicked" hx-swap="outerHTML">
Click Me

View File

@ -114,7 +114,7 @@ The fastest way to get going with htmx is to load it via a CDN. You can simply a
and get going:
```html
<script src="https://unpkg.com/htmx.org@1.9.1" integrity="sha384-KReoNuwj58fe4zgWyjj5a1HrvXYPBeV0a3bNPVjK7n5FdsGC41fHRx6sq5tONeP0" crossorigin="anonymous"></script>
<script src="https://unpkg.com/htmx.org@1.9.2" integrity="sha384-TODO" crossorigin="anonymous"></script>
```
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).