summaryrefslogtreecommitdiffstatshomepage
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorCarson Gross <carson@bigsky.software>2024-06-18 10:36:13 -0600
committerCarson Gross <carson@bigsky.software>2024-06-18 10:36:13 -0600
commitd006d5c52ee64babb122457464c0c8225f16d1a4 (patch)
tree4e59e1a3db4cd86ca19dec232aeebd2bab6bcfa2 /CHANGELOG.md
parentf3ae976aa2e1dd425b11303adf22ae90712be455 (diff)
downloadhtmx-d006d5c52ee64babb122457464c0c8225f16d1a4.tar.gz
htmx-d006d5c52ee64babb122457464c0c8225f16d1a4.zip
update the changelog
fixes https://github.com/bigskysoftware/htmx/issues/2638
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 64124681..b9522042 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,22 @@
# Changelog
+## [2.0.0] - 2024-06-17
+
+* Removed extensions and moved to their own repos linked off of <https://extensions.htmx.org>
+* The website now supports dark mode! (Thanks [@pokonski](https://github.com/pokonski)!)
+* The older, deprecated [SSE & WS](https://v1.htmx.org/docs/#websockets-and-sse) attributes were removed
+* Better support for [Web Components](https://htmx.org/examples/web-components/)
+* HTTP `DELETE` requests now use parameters, rather than form encoded bodies, for their payload (This is in accordance w/ the spec.)
+* Module support was split into different files:
+* We now provide specific files in `/dist` for the various JavaScript module styles:
+ * ESM Modules: `/dist/htmx.esm.js`
+ * UMD Modules: `/dist/htmx.umd.js`
+ * AMD Modules: `/dist/htmx.amd.js`
+ * The `/dist/htmx.js` file continues to be browser-loadable
+* The `hx-on` attribute, with its special syntax, has been removed in favor of the less-hacky `hx-on:` syntax.
+* See the [Upgrade Guide](https://htmx.org/migration-guide-htmx-1/) for more details on upgrade steps
+* The `selectAndSwap()` internal API method was replaced with the public (and much better) [`swap()`](/api/#swap) method
+
## [1.9.12] - 2024-04-17
* [IE Fixes](https://github.com/bigskysoftware/htmx/commit/e64238dba3113c2eabe26b1e9e9ba7fe29ba3010)