release cleanup

This commit is contained in:
Carson Gross 2023-03-02 16:46:48 -07:00
parent 5785e0c8e7
commit d20919ad6c
4 changed files with 28 additions and 6 deletions

2
.gitignore vendored
View File

@ -2,5 +2,5 @@
*.iml
/node_modules
_site
test/scratch.html
test/scratch/scratch.html
.DS_Store

View File

@ -18,7 +18,7 @@
<h2>Scratch Page</h2>
<ul>
<li>
<a href="scratch.html">Scratch Page</a>
<a href="scratch/scratch.html">Scratch Page</a>
</li>
</ul>

View File

@ -18,10 +18,10 @@
</head>
<body style="padding:20px;font-family: sans-serif">
<script src="../node_modules/sinon/pkg/sinon.js"></script>
<script src="../src/htmx.js"></script>
<script src="util/util.js"></script>
<script src="util/scratch_server.js"></script>
<script src="../../node_modules/sinon/pkg/sinon.js"></script>
<script src="../../src/htmx.js"></script>
<script src="../util/util.js"></script>
<script src="../util/scratch_server.js"></script>
<script>

View File

@ -0,0 +1,22 @@
---
layout: layout.njk
tags: ['posts', 'announcements']
title: htmx 1.8.6 has been released!
date: 2023-03-02
---
## htmx 1.8.6 Release
I'm happy to announce the [1.8.6 release](https://unpkg.com/browse/htmx.org@1.8.6/) of htmx.
### New Features
* [ESM support](https://github.com/bigskysoftware/htmx/commit/a85ad4ac67c3a471dbb8472900ec1e583b571a67) (thank you @dkniffin!)
* Sass has been vanquished from the htmx.org website so python 2 (!!!) is no longer required for developing htmx (thank you @dz4k!)
### Improvements & Bug fixes
* Fixed a bug where the `changed` modifier on `keyup` did not work properly if an input was tabbed into
* Many other smaller bug fixes and doc fixes
Thank you to everyone who contributed, and enjoy!