Skip to content

Files

Latest commit

c33c3ef · Dec 5, 2024

History

History
249 lines (131 loc) · 8.02 KB

CHANGELOG.md

File metadata and controls

249 lines (131 loc) · 8.02 KB

Changelog

All notable changes to wireuse will be documented in this file.

v2.8.3 - 2024-12-05

Full Changelog: https://github.com/foxws/wireuse/compare/v2.8.2...v2.8.3

v2.8.2 - 2024-12-05

Full Changelog: https://github.com/foxws/wireuse/compare/v2.8.1...v2.8.2

v2.8.1 - 2024-11-28

Full Changelog: https://github.com/foxws/wireuse/compare/v2.8.0...v2.8.1

v2.8.0 - 2024-11-27

Upgrade Notice

  • Foxws\WireUse\Forms\Concerns\WithAttributes now uses FormRequest, and it's methods have been renamed from $form->toCollect() to $form->collect(), $form->toFluent() to $form->fluent(), and newly introduced $form->request().
  • To use SEO on Foxws\WireUse\Views\Support\Page, please install and configure artesaos/seotools.
  • For navigation links, it's recommended to use wire:current to mark active classes.

What's Changed

  • feat: seo by @francoism90 in #15

Full Changelog: https://github.com/foxws/wireuse/compare/v2.7.3...v2.8.0

v2.7.3 - 2024-11-01

Full Changelog: https://github.com/foxws/wireuse/compare/v2.7.2...v2.7.3

v2.7.2 - 2024-11-01

Full Changelog: https://github.com/foxws/wireuse/compare/v2.7.1...v2.7.2

This adds the missing WithPaginateScroll trait, which can be used for scrolling using WithPagination.

v2.7.1 - 2024-10-31

Full Changelog: https://github.com/foxws/wireuse/compare/v2.7.0...v2.7.1

v2.7.0 - 2024-10-31

What's Changed

  • Code refactoring by @francoism90 in #13

Upgrade Notice

  • The WithScroll trait is now only compatible with Collections containing models, and it's namespace has changed to Foxws\WireUse\Models\Concerns to reflect this change
  • The Blade helpers have been removed. Please consider alternatives like blade#slot-attributes or Spatie Laravel HTML

Full Changelog: https://github.com/foxws/wireuse/compare/v2.6.1...v2.7.0

v2.6.1 - 2024-10-21

Full Changelog: https://github.com/foxws/wireuse/compare/v2.6.0...v2.6.1

v2.6.0 - 2024-10-18

Upgrade Notice

  • The WithScroll trait has changed method names, but does introduce more features.

Full Changelog: https://github.com/foxws/wireuse/compare/v2.5.4...v2.6.0

v2.5.4 - 2024-10-17

  • Improve WithScroll trait

Full Changelog: https://github.com/foxws/wireuse/compare/v2.5.3...v2.5.4

v2.5.3 - 2024-10-17

Full Changelog: https://github.com/foxws/wireuse/compare/v2.5.2...v2.5.3

v2.5.2 - 2024-10-16

Full Changelog: https://github.com/foxws/wireuse/compare/v2.5.1...v2.5.2

v2.5.1 - 2024-10-14

Upgrade Notice

  • The HTML wireModel() method, doesn't set the ID anymore.

Full Changelog: https://github.com/foxws/wireuse/compare/v2.5.0...v2.5.1

v2.5.0 - 2024-10-10

Upgrade Notice

  • Most methods have been converted into non-static, this makes it easier to call Livewire methods.
  • The method getAuthUser() has been renamed to getAuthModel()

Full Changelog: https://github.com/foxws/wireuse/compare/v2.4.1...v2.5.0

v2.4.1 - 2024-09-27

Full Changelog: https://github.com/foxws/wireuse/compare/v2.4.0...v2.4.1

v2.4.0 - 2024-09-19

Upgrade Notice

Form validation has been improved:

  • Replace html()->validate('form.name') with html()->error('form.name')
  • Form classes have been converted into generic classes: label, label-error, input-error

Full Changelog: https://github.com/foxws/wireuse/compare/v2.3.4...v2.4.0

v2.3.4 - 2024-08-15

Full Changelog: https://github.com/foxws/wireuse/compare/v2.3.3...v2.3.4

v2.3.3 - 2024-08-13

Full Changelog: https://github.com/foxws/wireuse/compare/v2.3.2...v2.3.3

v2.3.2 - 2024-08-12

Full Changelog: https://github.com/foxws/wireuse/compare/v2.3.1...v2.3.2

v2.3.1 - 2024-08-10

Full Changelog: https://github.com/foxws/wireuse/compare/v2.3.0...v2.3.1

v2.3.0 - 2024-08-06

Upgrade Notice

Optional package features are now behind a feature flag, can be configured in config/wireuse.php.

Please adjust the configuration when you depend on those features.

What's Changed

  • feat: check package installation by @francoism90 in #12

Full Changelog: https://github.com/foxws/wireuse/compare/v2.2.1...v2.3.0

v2.2.1 - 2024-07-30

Full Changelog: https://github.com/foxws/wireuse/compare/v2.2.0...v2.2.1

v2.2.0 - 2024-07-29

What's Changed

  • improve-scout by @francoism90 in #11

Full Changelog: https://github.com/foxws/wireuse/compare/v2.1.3...v2.2.0

v2.1.2 - 2024-07-20

Full Changelog: https://github.com/foxws/wireuse/compare/v2.1.1...v2.1.2

v2.1.1 - 2024-07-16

What's Changed

Full Changelog: https://github.com/foxws/wireuse/compare/v2.1.0...v2.1.1

v2.1.0 - 2024-07-16

Upgrade Notice

The package laravel-html:^3.11 has introduced methods we previously provided. You should replace html()->a()->route('name') with html()->a()->link('name') if you want to use our route builder logic.

Full Changelog: https://github.com/foxws/wireuse/compare/v2.0.2...v2.1.0

v2.0.2 - 2024-07-13

Full Changelog: https://github.com/foxws/wireuse/compare/v2.0.1...v2.0.2

v2.0.1 - 2024-07-12

Upgrade Notice

Please CHANGELOG.md for the upgrade notice.

Full Changelog: https://github.com/foxws/wireuse/compare/v2.0.0...v2.0.1

v2.0.0 - 2024-07-12

Upgrade Notice

Blade macros aren't enabled by default anymore

Because I want to focus on laravel-html, you have to register the Blade macros manually using a service provider. Checkout the documentation for details.

Components and controllers have been removed

I don't want to provide any components and controllers anymore. The idea of this package, is to create them yourself.

If you still need them, please checkout the following sources, and re-implement them in your project:

Actions have been removed

Actions have been removed, because they were too difficult to maintain and not that usable.

If you still need them, please checkout the following sources, and re-implement them in your project:

What's Changed

  • Bump dependabot/fetch-metadata from 2.1.0 to 2.2.0 by @dependabot in #8
  • feat: Laravel HTML by @francoism90 in #9

Full Changelog: https://github.com/foxws/wireuse/compare/v1.0.7...v2.0.0

v1.0.7 - 2024-06-21

Full Changelog: https://github.com/foxws/wireuse/compare/v1.0.6...v1.0.7

v1.0.6 - 2024-06-20

Full Changelog: https://github.com/foxws/wireuse/compare/v1.0.5...v1.0.6

v1.0.5 - 2024-05-29

What's Changed

  • Allow custom icon class on link
  • Add has methods to concerns
  • Use wireKey() for validation
  • Fallback to name for wireKey()

Full Changelog: https://github.com/foxws/wireuse/compare/v1.0.4...v1.0.5

v1.0.4 - 2024-05-19

What's Changed

  • feat: phpstan by @francoism90 in #7

Full Changelog: https://github.com/foxws/wireuse/compare/v1.0.3...v1.0.4