Skip to content

Releases: michalsn/codeigniter-htmx

v2.0.0

17 Oct 08:34
3bc7671
Compare
Choose a tag to compare

What's Changed

Fixes

Refactor

  • refactor: manage config cache just like in the original codeigniter source code by @michalsn in #74
  • refactor: move tests cache to ./build by @neznaika0 in #76

Breaking changes

  • The public method View::renderFragment() has been removed.
  • The protected property View::fragments has been removed.
  • The methods have been changed: View::fragment(), View::endFragment(), View::render(), View::include().

Note

The breaking changes are irrelevant from the perspective of a developer who used only the available methods described in the documentation. You need to consider them only if you extend the View class.

Full Changelog: v1.6.0...v2.0.0

v1.6.0

09 Sep 09:28
f3a37ac
Compare
Choose a tag to compare

What's Changed

Fixes

Other

New Contributors

Full Changelog: v1.5.0...v1.6.0

v1.5.0

10 Jun 15:59
3022615
Compare
Choose a tag to compare

What's Changed

Enhancements

Full Changelog: v1.4.0...v1.5.0

v1.4.0

23 Nov 16:44
ec8c6d8
Compare
Choose a tag to compare

What's Changed

Enhancements

Full Changelog: v1.3.0...v1.4.0

v1.3.0

20 Nov 11:39
e81aec8
Compare
Choose a tag to compare

What's Changed

Enhancements

Full Changelog: v1.2.2...v1.3.0

v1.2.2

26 Aug 06:19
1d32017
Compare
Choose a tag to compare

What's Changed

CodeIgniter 4.4 compatibility release.

Fixes

New Contributors

Full Changelog: v1.2.1...v1.2.2

v1.2.1

17 Jun 09:52
a85c93a
Compare
Choose a tag to compare

What's Changed

Fixes

  • In some cases view_fragment wasn't parsed properly by @michalsn in #39

Full Changelog: v1.2.0...v1.2.1

v1.2.0

06 Jun 11:52
30dfa95
Compare
Choose a tag to compare

What's Changed

  • The Debug Toolbar now works out of the box for htmx requests (but only if you don't use head-support extension).
  • All JavaScript added by this library is now added to the head tag.

Enhancements

New Contributors

Full Changelog: v1.1.0...v1.2.0

v1.1.0

10 Jan 14:07
ebc33d5
Compare
Choose a tag to compare

What's Changed

Enhancements

  • Add support for htmx and boosted param to the IncomingRequest::is() by @michalsn in #9

New Contributors

Full Changelog: v1.0.0...v1.1.0

v1.0.0

09 Dec 12:14
51f5cb8
Compare
Choose a tag to compare

First official release.

Changed

  • When an HTTP error response occurs, display it in the modal.
  • Add view_fragment() function to return only fragments of the view.

Fixed

  • Fixed the issue with applying an ErrorDecorator to the CLI requests.