Skip to content

Tags: livewire/blaze

Tags

v1.0.12

Toggle v1.0.12's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Sort by slowest component (#173)

v1.0.11

Toggle v1.0.11's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Optimize slot extraction and appendable attribute merging (#151)

* Optimize slot extraction and appendable attribute merging

Skip the extract() call for slots when the slots array is empty — self-closing
components always pass an empty slots array, making this a no-op.

Simplify appendable attribute merging (class/style) by replacing the
intermediate array + in_array + implode pattern with direct conditional
assignment. The old code built a temporary array of at most 2 elements,
checked for duplicates with in_array, then imploded — all unnecessary
when there are only two possible values (default and current).

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Add no-attributes and merge/class benchmarks

This adds ~2x CI time (3 benchmarks instead of 1) but covers the three most  representative scenarios: props (general), merge (attribute merging), and no-attributes (baseline overhead).

* Revert

* Revert Wrapper changes

---------

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-authored-by: Filip Ganyicz <ganyicz.filip@gmail.com>

v1.0.10

Toggle v1.0.10's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Laravel 13 support (#129)

* Update illuminate/support and illuminate/view versions

* Update composer.json

---------

Co-authored-by: Filip Ganyicz <ganyicz.filip@gmail.com>

v1.0.9

Toggle v1.0.9's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fix debugger injection (#136)

v1.0.8

Toggle v1.0.8's commit message
Refactor tests

v1.0.7

Toggle v1.0.7's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Add boost skill (#132)

* Remove memo hits

* Add boost skill

* Rename commands

v1.0.6

Toggle v1.0.6's commit message
Formatting

v1.0.5

Toggle v1.0.5's commit message
Update .gitignore

v1.0.4

Toggle v1.0.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fix BlazeRuntime injection for wrapped engines (#102)

* Fix BlazeRuntime injection

* Fix fixture

* Refactor

v1.0.3

Toggle v1.0.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fix debug mode (#92)