UNPKG

26.4 kBMarkdownView Raw
1# Changelog
2
3## [1.9.5] - 2023-08-25
4
5* Web sockets now properly pass the target id in the HEADERS struct
6* A very rare loading state bug was fixed (see https://github.com/bigskysoftware/htmx/commit/93bd81b6d003bb7bc445f10192bdb8089fa3495d)
7* `hx-on` will not evaluate if `allowEval` is set to false
8* You can disable the interpretation of script tags with the new `htmx.config.allowScriptTags` config variable
9* You can now disable htmx-based requests to non-origin hosts via the `htmx.config.selfRequestsOnly` config variable
10* The [Security](https://htmx.org/docs#security) section has been expanded to help developers better understand how to
11 properly secure their htmx-based applications.
12
13## [1.9.4] - 2023-07-25
14
15* This is a bug-fix release for the most part, w/a heavy dose of @telroshan
16* The `HX-Trigger` response header now supports comma separated event names
17* Submit buttons that use the `form` attribute now work correctly
18* The `changed` modifier now uses the triggering element, rather than the element the `hx-trigger` is defined on
19* `hx-disable` is now handled dynamically so it can be added and removed
20* IE11 compatibility restored! (maybe, hard to test)
21* Fixed bug with `hx-on` event handler cleanup
22* Many smaller bug fixes, typo fixes and general improvements
23
24## [1.9.3] - 2023-07-14
25
26* 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.
27* We now have functioning CI using GitHub actions!
28* You can now configure if a type of HTTP request uses the body for parameters or not. In particular, the `DELETE` _should_ use
29 query parameters, according to the spec. htmx has used the body, instead. To avoid breaking code we are keeping this undefined
30 behavior for now, but allowing people to fix it for their use cases by updating the `htmx.config.methodsThatUseUrlParams` config
31 option. Thank you to Alex and Vincent for their feedback and work on this issue!
32* The `this` symbol is now available in event filter expressions, and refers to the element the `hx-trigger` is on
33* Fix bug where the `htmx:afterSettle` event was raised multiple times with oob swaps occurred
34* A large number of accessibility fixes were made in the docs (Thank you Denis & crew!)
35* Fixed bug w/ WebSocket extension initialization caused by "naked" `hx-trigger` feature
36* The `HX-Reselect` HTTP response header has been added to change the selection from the returned content
37* Many other smaller bug fixes
38
39## [1.9.2] - 2023-04-28
40
41* Fixed bug w/ `hx-on` not properly de-initializing
42
43## [1.9.1] - 2023-04-27
44
45* Fixed a bug with the new naked triggers that prevented boosted elements with explicit `hx-trigger`'s from functioning
46 properly
47* Added code to play well with other libraries that also use the `window.onpopstate` Daily reminder: <https://htmx.org/img/memes/javascripthistory.png>
48
49## [1.9.0] - 2023-04-11
50
51* Support for generalized inline event handling via the new [`hx-on`](/attributes/hx-on) attribute, which addresses
52 the shortcoming of limited [`onevent` properties](https://developer.mozilla.org/en-US/docs/Web/Events/Event_handlers#using_onevent_properties) attributes in HTML.
53* Support for [view transitions](/docs#view-transitions), based on the experimental [View Transitions API](https://developer.mozilla.org/en-US/docs/Web/API/View_Transitions_API)
54 currently available in Chrome 111+ and coming to other browsers soon.
55* Support for "naked" [`hx-trigger`](/attributes/hx-trigger) attributes, where an `hx-trigger` is present on an element
56 that does not have an `hx-get`, etc. defined on it. Instead, it will trigger the new `htmx:triggered` event, which can
57 be responded to via your [preferred scripting solution](/docs#scripting).
58* A memory leak fix by [@croxton](https://github.com/bigskysoftware/htmx/commit/8cd3a480a7388877628ce8b9b8e50cd5df48bb81)
59* The htmx website has been migrated from 11ty to [zola](https://www.getzola.org/) by [@danieljsummers](https://github.com/danieljsummers), cutting
60 way down on the number of "development" javascript dependencies
61* Many other smaller bug fixes
62
63## [1.8.6] - 2023-03-02
64
65* ESM support!
66* Sass has been vanquished from the htmx.org website, which should set us up for some good progress going forward
67* Fixed a bug where the `changed` modifier on `keyup` did not work properly if an input was tabbed into
68* Many other smaller bug fixes and doc fixes
69
70## [1.8.5] - 2023-01-17
71
72* Support a new optional cache-busting configuration option, `getCacheBusterParam`, to allow browsers to disambiguate
73 between `GET` requests from htmx and from the raw browser
74* Support new `hx-history='false'` attribute, to prevent sensitive data from being stored in the history cache. (Thank you @croxton!)
75* Extensive new event-oriented features are available in the [Web Socket](/extensions/web-sockets/) extension (Thank you @Renerick!)
76* A bug fix for when a form contains multiple empty input values with the same name (Thank you @bluekeyes!)
77* A bug fix around inputs that throw exceptions when calling `setSelectionRange()` (Thank you @gone!)
78* A bug fix to pass through the proper event for the `htmx:configRequest` event
79* A bug fix/improvement for the `preload` extension
80* Many other small bug fixes
81
82## [1.8.4] - 2022-11-05
83
84* Fix the _exact same_ regression in `revealed` logic as in 1.8.2
85
86## [1.8.3] - 2022-11-04
87
88* A new [`htmx:confirm` event](/events#htmx:confirm) was added that allows for asynchronous confirmation dialogs to
89 be integrated into htmx requests
90* The new [head-support](/extensions/head-support) extension allows for more elaborate head tag merging than standard htmx
91 supports. This functionality may be integrated into htmx 2.0, depending on feedback.
92* The new [multi-swap](/extensions/multi-swap) provides more elaborate swapping of multiple elements on a screen using
93 a custom swap strategy
94* Many doc fixes (thank you to everyone who contributed!)
95
96## [1.8.2] - 2022-10-12
97
98* Fix regression in `revealed` logic
99
100## [1.8.1] - 2022-10-11
101
102* We now keep a count of outstanding requests for an indicator, so more than one overlapping request can share the same
103 indicator without issues
104* We now track the attribute state of an element and re-initialize it if `htmx.process()` is called on the element and
105 the attributes have changed
106* [Idiomorph](https://github.com/bigskysoftware/idiomorph) is now available for all your morph-swapping needs
107* The `unset` directive now works properly for `hx-vals` and `hx-vars`
108* The title of the page is now properly set on a history cache miss
109* The new [`hx-validate`](https://htmx.org/attributes/hx-validate) attribute will force elements to validate before a request, even if
110 they are not within a form being submitted
111* Many smaller bug and docs fixes
112
113## [1.8.0] - 2022-7-12
114
115* **NOTE**: This release involved some changes to touchy code (e.g. history support) so please test thoroughly and let
116 us know if you see any issues
117* Boosted forms now will automatically push URLs into history as with links. The [response URL](https://caniuse.com/mdn-api_xmlhttprequest_responseurl)
118 detection API support is good enough that we feel comfortable making this the default now.
119 * If you do not want this behavior you can add `hx-push-url='false'` to your boosted forms
120* The [`hx-replace-url`](https://htmx.org/attributes/hx-replace-url) attribute was introduced, allowing you to replace
121 the current URL in history (to complement `hx-push-url`)
122* Bug fix - if htmx is included in a page more than once, we do not process elements multiple times
123* Bug fix - When localStorage is not available we do not attempt to save history in it
124* [Bug fix](https://github.com/bigskysoftware/htmx/issues/908) - `hx-boost` respects the `enctype` attribute
125* `m` is now a valid timing modifier (e.g. `hx-trigger="every 2m"`)
126* `next` and `previous` are now valid extended query selector modifiers, e.g. `hx-target="next div"` will target the
127 next div from the current element
128* Bug fix - `hx-boost` will boost anchor tags with a `_self` target
129* The `load` event now properly supports event filters
130* The websocket extension has had many improvements: (A huge thank you to Denis Palashevskii, our newest committer on the project!)
131 * Implement proper `hx-trigger` support
132 * Expose trigger handling API to extensions
133 * Implement safe message sending with sending queue
134 * Fix `ws-send` attributes connecting in new elements
135 * Fix OOB swapping of multiple elements in response
136* The `HX-Location` response header now implements client-side redirects entirely within htmx
137* The `HX-Reswap` response header allows you to change the swap behavior of htmx
138* The new [`hx-select-oob`](https://htmx.org/attributes/hx-select-oob) attribute selects one or more elements from a server response to swap in via an out of band swap
139* The new [`hx-replace-url`](https://htmx.org/attributes/hx-replace-url) attribute can be used to replace the current URL in the location
140 bar (very similar to `hx-push-url` but no new history entry is created). The corresponding `HX-Replace-Url` response header can be used as well.
141* htmx now properly handles anchors in both boosted links, as well as in `hx-get`, etc. attributes
142
143## [1.7.0] - 2022-02-22
144
145* The new [`hx-sync`](https://htmx.org/attributes/hx-sync) attribute allows you to synchronize multiple element requests on a single
146 element using various strategies (e.g. replace)
147 * You can also now abort an element making a request by sending it the `htmx:abort` event
148* [Server Sent Events](/extensions/server-sent-events) and [Web Sockets](/extensions/web-sockets) are now available as
149 extensions, in addition to the normal core support. In htmx 2.0, the current `hx-sse` and `hx-ws` attributes will be
150 moved entirely out to these new extensions. By moving these features to extensions we will be able to add functionality
151 to both of them without compromising the core file size of htmx. You are encouraged to move over to the new
152 extensions, but `hx-sse` and `hx-ws` will continue to work indefinitely in htmx 1.x.
153* You can now mask out [attribute inheritance](/docs#inheritance) via the [`hx-disinherit`](https://htmx.org/attributes/hx-disinherit) attribute.
154* The `HX-Push` header can now have the `false` value, which will prevent a history snapshot from occurring.
155* Many new extensions, with a big thanks to all the contributors!
156 * A new [`alpine-morph`](/extensions/alpine-morph) allows you to use Alpine's swapping engine, which preserves Alpine
157 * A [restored](/extensions/restored) extension was added that will trigger a `restore` event on all elements in the DOM
158 on history restoration.
159 * A [loading-states](/extensions/loading-states) extension was added that allows you to easily manage loading states
160 while a request is in flight, including disabling elements, and adding and removing CSS classes.
161* The `this` symbol now resolves properly for the [`hx-include`](https://htmx.org/attributes/hx-include) and [`hx-indicator`](https://htmx.org/attributes/hx-indicator)
162 attributes
163* When an object is included via the [`hx-vals`](https://htmx.org/attributes/hx-vals) attribute, it will be converted to JSON (rather
164 than rendering as the string `[Object object]"`)
165* You can now pass a swap style in to the `htmx.ajax()` function call.
166* Poll events now contain a `target` attribute, allowing you to filter a poll on the element that is polling.
167* Two new Out Of Band-related events were added: `htmx:oobBeforeSwap` & `htmx:oobAfterSwap`
168
169## [1.6.1] - 2021-11-22
170
171* A new `HX-Retarget` header allows you to change the default target of returned content
172* The `htmx:beforeSwap` event now includes another configurable property: `detail.isError` which can
173 be used to indicate if a given response should be treated as an error or not
174* The `htmx:afterRequest` event has two new detail properties: `success` and `failed`, allowing you to write
175 trigger filters in htmx or hyperscript:
176 ```applescript
177 on htmx:afterRequest[failed]
178 set #myCheckbox's checked to true
179 ```
180* Fixed the `from:` option in [`hx-trigger`](https://htmx.org/attributes/hx-trigger) to support `closest <CSS selector>`
181 and `find <CSS selector>` forms
182* Don't boost anchor tags with an explicit `target` set
183* Don't cancel all events on boosted elements, only the events that naturally trigger them (click for anchors, submit
184 for forms)
185* Persist revealed state in the DOM so that on history navigation, revealed elements are not re-requested
186* Process all [`hx-ext`](https://htmx.org/attributes/hx-ext) attributes, even if no other htmx attribute is on the element
187* Snapshot the current URL on load so that history support works properly after a page refresh occurs
188* Many, many documentation updates (thank you to all the contributors!)
189
190
191## [1.6.0] - 2021-10-01
192
193* Completely reworked `<script>` tag support that now supports the `<script src="...'/>` form
194* You can now use the value `unset` to clear a property that would normally be inherited (e.g. hx-confirm)
195* The `htmx-added` class is added to new content before a swap and removed after the settle phase, which allows you
196 more flexibility in writing CSS transitions for added content (rather than relying on the target, as with `htmx-settling`)
197* The `htmx:beforeSwap` event has been updated to allow you to [configure swapping](https://htmx.org/docs/#modifying_swapping_behavior_with_events)
198 behavior
199* Improved `<title>` extraction support
200* You can listen to events on the `window` object using the `from:` modifier in `hx-trigger`
201* The `root` option of the `intersect` event was fixed
202* Boosted forms respect the `enctype` declaration
203* The `HX-Boosted` header will be sent on requests from boosted elements
204* Promises are not returned from the main ajax function unless it is an api call (i.e. `htmx.ajax`)
205
206## [1.5.0] - 2021-7-12
207
208* Support tracking of button clicked during a form submission
209* Conditional polling via the [hx-trigger](https://htmx.org/attributes/hx-trigger) attribute
210* `document` is now a valid pseudo-selector on the [hx-trigger](https://htmx.org/attributes/hx-trigger) `from:` argument, allowing you
211 to listen for events on the document.
212* Added the [hx-request](https://htmx.org/attributes/hx-request) attribute, allowing you to configure the following aspects of the request
213 * `timeout` - the timeout of the request
214 * `credentials` - if the request will send credentials
215 * `noHeaders` - strips all headers from the request
216* Along with the above attribute, you can configure the default values for each of these via the corresponding `htmx.config`
217 properties (e.g. `htmx.config.timeout`)
218* Both the `scroll` and `show` options on [hx-swap](https://htmx.org/attributes/hx-swap) now support extended syntax for selecting the
219 element to scroll or to show, including the pseudo-selectors `window:top` and `window:bottom`.
220
221## [1.4.1] - 2021-6-1
222
223* typo fix
224
225## [1.4.0] - 2021-5-25
226
227* Added the `queue` option to the [hx-trigger](https://htmx.org/attributes/hx-trigger) attribute, allowing you to specify how events
228 should be queued when they are received with a request in flight
229* The `htmx.config.useTemplateFragments` option was added, allowing you to use HTML template tags for parsing content
230 from the server. This allows you to use Out of Band content when returning things like table rows, but it is not
231 IE11 compatible.
232* The `defaultSettleDelay` was dropped to 20ms from 100ms
233* Introduced a new synthetic event, [intersect](https://htmx.org/docs#pecial-events) that allows you to trigger when an item is scrolled into view
234 as specified by the `IntersectionObserver` API
235* Fixed timing issue that caused exceptions in the `reveal` logic when scrolling at incredible speeds - <https://github.com/bigskysoftware/htmx/issues/463>
236* Fixed bug causing SVG titles to be incorrectly used as page title - <https://github.com/bigskysoftware/htmx/issues/459>
237* Boosted forms that issue a GET will now push the URL by default - <https://github.com/bigskysoftware/htmx/issues/485>
238* Better dispatch of request events when an element is removed from the DOM
239* Fixed a bug causing `hx-prompt` to fail
240* The `htmx.config.withCredentials` option was added, to send credentials with ajax requests (default is `false`)
241* The `throttle` option on `hx-trigger` does not delay the initial request any longer
242* The `meta` key is ignored on boosted links
243* `<script>` tags are now evaluated in the global scope
244* `hx-swap` now supports the `none` option
245* Safari text selection bug - <https://github.com/bigskysoftware/htmx/issues/438>
246
247## [1.3.3] - 2021-4-5
248
249* Added the [`hx-disabled`](https://htmx.org/docs#security) attribute to allow htmx to be turned off for parts of the DOM
250* SSE now uses a full-jitter exponential backoff algorithm on reconnection, using the `htmx.config.wsReconnectDelay`
251 setting
252
253## [1.3.2] - 2021-3-9
254
255* Bug fixes
256
257## [1.3.1] - 2021-3-9
258
259* IE11 fixes
260
261## [1.3.0] - 2021-3-6
262
263* Support a `target` modifier on `hx-trigger` to filter based on the element targeted by an event. This allows
264 lazy binding to that target selector.
265* Events are no longer consumed by the first element that might handle them, unless the `consume` keyword is
266 added to the `hx-trigger` specification
267* Added the `htmx:beforeSend` event, fired just before an ajax request begins
268* SSE swaps are properly settled
269* Fixed bug that was improperly cancelling all clicks on anchors
270* `htmx.ajax()` now returns a promise
271
272## [1.2.1] - 2021-2-19
273
274* Fixed an issue with the history cache, where the cache was getting blown out after the first navigation backwards
275* Added the `htmx.config.refreshOnHistoryMiss` option, allowing users to trigger a full page refresh on history cache miss
276 rather than issuing an AJAX request
277
278## [1.2.0] - 2021-2-13
279
280### New Features
281
282* `hx-vars` has been deprecated in favor of `hx-vals`
283* `hx-vals` now supports a `javascript:` prefix to achieve the behavior that `hx-vars` provided
284* The new `hx-headers` attribute allows you to add headers to a request via an attribute. Like `hx-vals` it supports
285 JSON or javascript via the `javascript:` prefix
286* `hx-include` will now include all inputs under an element, even if that element is not a form tag
287* The [preload extension](https://htmx.org/extensions/preload/) now offers a `preload-images="true"` attribute that will aggressively load images in preloaded content
288* On requests driven by a history cache miss, the new `HX-History-Restore-Request` header is included so that the server
289 can differentiate between history requests and normal requests
290
291### Improvements & Bug fixes
292
293* Improved handling of precedence of input values to favor the enclosing form (see [here](https://github.com/bigskysoftware/htmx/commit/a10e43d619dc340aa324d37772c06a69a2f47ec9))
294* Moved event filtering logic *after* `preventDefault` so filtering still allows events to be properly handled
295* No longer trigger after swap events on elements that have been removed via an `outerHTML` swap
296* Properly remove event handlers added to other elements when an element is removed from the DOM
297* Handle the `scroll:` modifier in `hx-swap` properly when an `outerHTML` swap occurs
298* Lots of docs fixes
299
300## [1.1.0] - 2021-1-6
301
302* Newly added [preload extension](https://htmx.org/extensions/preload/) allows you to preload resources for lower
303 latency requests!
304* Support the `ignore:` modifier for extensions
305* Updated form variable order inclusion to include the enclosing form *last* so that, in the presence of multiple
306 values, the most relevant value is the most likely to be selected by the server
307* Support for the [`htmx.ajax()`](https://dev.htmx.org/api/#ajax) javascript function, to issue an htmx-style ajax
308 request from javascript
309* Removed the following htmx request headers for better cache behavior: `HX-Event-Target`, `HX-Active-Element`,
310 `HX-Active-Element-Name`, `HX-Active-Element-Value`
311* Added the [`hx-preserve`](https://dev.htmx.org/attributes/hx-preserve) attribute, which allows
312 you to preserve elements across requests (for example, to keep a video element playing properly)
313* The [path-deps](https://dev.htmx.org/extensions/path-deps/#refresh) now surfaces a small api
314 for refreshing path dependencies manually in javascript
315* Now support the `from:` clause on [`hx-trigger`](https://dev.htmx.org/attributes/hx-trigger) to
316 allow an element to respond to events on other elements.
317* Added the `htmx:beforeProcessNode` event, renamed the (previously undocumented) `htmx:processedNode` to `htmx:afterProcessNode`
318* Added `closest` syntax support for the [`hx-indicator`](https://dev.htmx.org/attributes/hx-indicator) attribute
319* Added `on load` support for the newest version of [hyperscript](https://hyperscript.org)
320* Added the `htmx.config.allowEval` configuration value, for CSP compatibility
321* Bug fixes & improvements
322
323## [1.0.2] - 2020-12-12
324
325* Extend all API methods to take a string selector as well as an element
326* Out of band swap elements need not be top level now
327* [`hx-swap-oob`](https://htmx.org/attributes/hx-swap-oob) now can accept a CSS selector to retarget with
328
329## [1.0.1] - 2020-12-04
330
331* AJAX file upload now correctly fires events, allowing for [a proper progress bar](https://htmx.org/examples/file-upload)
332* htmx api functions that expect an element now can accept a string selector instead:
333 ```js
334 htmx.on('#form', 'htmx:xhr:progress', function(evt) {
335 htmx.find('#progress').setAttribute('value', evt.detail.loaded/evt.detail.total * 100)
336 });
337 ```
338* htmx now properly handles the `multiple` attribute on `<select>` elements
339
340## [1.0.0] - 2020-11-24
341
342* Bumped the release version :)
343
344## [0.4.1] - 2020-11-23
345
346* Fixed bug with title tag support when title tag contained HTML entities
347* Pass properties for the `loadstart`, `loadend`, `progress`, `abort` events through properly to the htmx equivalents
348
349## [0.4.0] - 2020-11-16
350
351* Now support the `HX-Redirect` and `HX-Refresh` response headers for redirecting client side and triggering a page refresh, respectively
352* `hx-vars` now overrides input values
353* `<title>` tags in responses will be used to update page titles
354* All uses of `eval()` have been removed in favor of `Function`
355* [`hx-vals`](https://htmx.org/attributes/hx-vals) is available as a safe alternative to `hx-vars`. It uses `JSON.parse()` rather than evaluation, if you wish to safely pass user-provided values through to htmx.
356
357## [0.3.0] - 2020-10-27
358
359* `hx-trigger` parsing has been rewritten and now supports [trigger filters](https://htmx.org/docs/#trigger-filters) to filter
360 events based on arbitrary javascript expressions
361* htmx now supports two additional response headers `HX-Trigger-After-Swap` and `HX-Trigger-After-Settle` allowing
362 an event to be triggered after a given life cycle event (instead of before the swap)
363* The `requestConfig` is now passed out to events surrounding the AJAX life cycle
364* htmx now evaluates `<script>` tags as javascript when no language is defined on them
365* A new [`event-header`](https://htmx.org/extensions/event-header) extension, which will include a serialized JSON representation of the triggering event in requests
366
367## [0.2.0] - 2020-9-30
368
369* AJAX file upload [support](https://htmx.org/docs#files)
370* The HTML validation API is [respected](https://htmx.org/docs#validation)
371
372## [0.1.0] - 2020-9-18
373
374* *BREAKING CHANGE*: The SSE attribute [`hx-sse`](https://htmx.org/attributes/hx-sse/) and the Web Sockets attribute [`hx-ws`](https://htmx.org/attributes/hx-ws) have changed syntax to now use colon separators: `hx-sse='connect:/chat swap:message'`
375* The SSE attribute [`hx-sse`](https://htmx.org/attributes/hx-sse/) allows for swapping content directly on an event, in addition to triggering an htmx element,
376with the new `swap:<event name>` syntax.
377* [`hx-target`](https://htmx.org/attributes/hx-target) now supports a `find` syntax to find elements below the element by a CSS selector
378* htmx plays better with deferred loading and many package managers
379* All htmx events are dispatched in both camelCase as well as kebab-case, for better compatibility with AlpineJS and other frameworks. (e.g. `htmx:afterOnLoad` will also be triggered as
380`htmx:after-on-load`)
381* [hypeerscript](https://hyperscript.org) is now initialized independently of htmx
382
383## [0.0.8] - 2020-7-8
384
385* The `view` modifier on `hx-swap` has been renamed to `show`: `hx-swap='innerHTML show:top'`
386
387## [0.0.7] - 2020-6-30
388
389* The [`hx-swap`](https://htmx.org/attributes/hx-swap) attribute now supports two new modifiers:
390 * `scroll` - allows you to scroll the target to the `top` or `bottom`
391 * `view` - allows you to scroll the `top` or `bottom` of the target into view
392* The [`hx-push-url`](https://htmx.org/attributes/hx-push-url) attribute now can optionally take a URL to push, in addition to `true` and `false`
393* Added the [`hx-vars`](https://htmx.org/attributes/hx-vars) attribute that allows you to dynamically add to the parameters that will be submitted with a request
394
395## [0.0.6] - 2020-6-20
396
397* Custom request/response headers no longer start with the `X-` prefix, which is no longer recommended
398* empty verb attributes are now allowed and follow the anchor tag semantics (e.g. `<div hx-get></div>`)
399* nunjuks inline rendering is now supported in the `client-side-templates` extension
400* the new `ajax-header` extension includes the `X-Requested-With` header
401* bad JSON is now handled more gracefully
402* `hx-swap="none"` will cause no swap to take place <https://github.com/bigskysoftware/htmx/issues/89>
403* `hx-trigger` now supports a `throttle` modifier <https://github.com/bigskysoftware/htmx/issues/88>
404* the focused element is preserved if possible after a replacement
405* perf improvements for large DOM trees with sparse `hx-` annotations
406
407## [0.0.4] - 2020-5-24
408
409* Extension mechanism added
410* SSE support added
411* WebSocket support added
412
413## [0.0.3] - 2020-5-17
414
415* Renamed to htmx
416* A bug fix for the `hx-prompt` attribute
417* A bug fix for multiple `hx-swap-oob` attributes
418* Moved the default CSS indicator injection into its own sheet to avoid breaking
419* Added the `htmx.config.includeIndicatorStyles` configuration option so people can opt out of injecting the indicator CSS
420
421
422## [0.0.1] - 2020-5-15
423
424* Initial release (originally named kutty)
425
\No newline at end of file