Releases: imacrayon/alpine-ajax
v0.10.5
v0.10.4
v0.10.3
Fixed regression which caused View Transition animations to fail. (Thanks @SmileyChris)
Full Changelog: v0.10.2...v0.10.3
v0.10.2
v0.10.1
What's Changed
- Fixed bug where ResponseCache was not deleted during a GET request by @jackmered in #110
New Contributors
- @jackmered made their first contribution in #110
Full Changelog: v0.10.0...v0.10.1
v0.10.0
This release contains a big internal refactor and adds support for target aliases
What's Changed
- Fixed a regression that broke using the back button after a
target.push
request. - We added a new Navigation section on the documentation site with some thoughts on creating a good navigation experience. Credit to @bluz71 for research.
What's New
- Add support for target aliases by @justisr in #104
New Contributors
Full Changelog: v0.9.1...v0.10.0
v0.9.1
v0.9.0
This minor release continues to sand down some rough edges in Alpine AJAX:
-
x-target
will now initialize an Alpine component without requiringx-init
orx-data
. While this isn't a breaking change, you may want to remove unnecessaryx-init
’s in your code:<!-- Before --> <form x-init x-target="..."> </form> <tbody x-data> <a x-target="..."> </tbody> <!-- After --> <form x-target="..."> </form> <tbody> <a x-target="..."> </tbody>
Check out all the attributes we were able to remove from the documentation in this commit: 9949ab5
-
We've fixed some edge cases around response caching. Now Alpine AJAX can further reduce the number of requests hitting the server when multiple components fetch from the same endpoint.
Here's a secret for anybody reading these release notes: I just recorded a 30min walkthrough on how to build apps with Alpine AJAX. It'll go up on the documentation site soon but you can watch it here now: https://www.youtube.com/watch?v=vNiZyFVmoOI
Full Changelog: v0.8.2...v0.9.0