8.2 KiB
8.2 KiB
Changelog
All notable changes to laravel-html
will be documented in this file.
3.6.0 - 2024-03-08
What's Changed
- Laravel 11.x Compatibility by @laravel-shift in https://github.com/spatie/laravel-html/pull/214
Full Changelog: https://github.com/spatie/laravel-html/compare/3.5.0...3.6.0
3.4.0 - 2024-01-05
What's Changed
- Fix docblock to solve phpstan errors when passing an array to html()->div() by @SanderMuller in https://github.com/spatie/laravel-html/pull/210
- Documentation on how to extend the package by @azamtav in https://github.com/spatie/laravel-html/pull/204
New Contributors
- @SanderMuller made their first contribution in https://github.com/spatie/laravel-html/pull/210
- @azamtav made their first contribution in https://github.com/spatie/laravel-html/pull/204
Full Changelog: https://github.com/spatie/laravel-html/compare/3.3.0...3.4.0
3.3.0 - 2023-10-24
What's Changed
- Add documentation for new FormElement::route() method by @miken32 in https://github.com/spatie/laravel-html/pull/190
- Update
.gitattributes
by @totoprayogo1916 in https://github.com/spatie/laravel-html/pull/194 - Correction to docs re: readonly vs isReadonly by @sgilberg in https://github.com/spatie/laravel-html/pull/195
- Get value from model with casts php native enum by @bskl in https://github.com/spatie/laravel-html/pull/203
New Contributors
- @totoprayogo1916 made their first contribution in https://github.com/spatie/laravel-html/pull/194
- @sgilberg made their first contribution in https://github.com/spatie/laravel-html/pull/195
- @bskl made their first contribution in https://github.com/spatie/laravel-html/pull/203
Full Changelog: https://github.com/spatie/laravel-html/compare/3.2.2...3.3.0
3.2.2 - 2023-07-20
What's Changed
- Allow setting a form action to a route by @miken32 in https://github.com/spatie/laravel-html/pull/189
New Contributors
- @miken32 made their first contribution in https://github.com/spatie/laravel-html/pull/189
Full Changelog: https://github.com/spatie/laravel-html/compare/3.2.1...3.2.2
3.2.1 - 2023-01-24
What's Changed
- Convert all tests to Pest by @alexmanase in https://github.com/spatie/laravel-html/pull/183
- Laravel 10.x Compatibility by @laravel-shift in https://github.com/spatie/laravel-html/pull/184
New Contributors
- @alexmanase made their first contribution in https://github.com/spatie/laravel-html/pull/183
- @laravel-shift made their first contribution in https://github.com/spatie/laravel-html/pull/184
Full Changelog: https://github.com/spatie/laravel-html/compare/3.2.0...3.2.1
3.2.0 - 2022-12-27
- Add
P
class to render paragraphs
3.1.0 - 2022-01-14
- Allow Laravel 9
3.0.0 - 2021-11-17
- Add compatiblity with PHP 8.1. The only breaking change with v2 is that
readonly
has been renamed toisReadonly
.
2.30.0 - 2022-07-09
- Better support for numeric values in attributes
2.29.0 - 2021-02-09
- Add
target
attribute method to links and button
2.28.1 - 2020-11-30
- add support for PHP 8
2.28.0 - 2020-09-30
- add the disabled method to all elements that support the attribute (#165)
2.27.0 - 2020-09-09
- Add support for Laravel 8
2.26.0 - 2020-04-20
- Internal refactor to normalize availabel attribute methods
2.25.0 - 2020-03-02
- add Laravel 7 support
2.24.0 - 2019-09-04
- Added number input
2.23.0 - 2019-09-04
- Laravel 6 support
- Better handling for
0
values in inputs - Add
range
for range inputs - Format date and time values
2.22.1 - 2019-07-16
- Prevent password fields to be filled
2.22.0 - 2019-04-26
- Changed the
value
parameter indata
to an optional parameter
2.21.0 - 2019-02-27
- Added Laravel 5.8 support
- Dropped PHP 7.0 support
- Dropped Laravel 5.4 support
- Dropped PHPUnit 6 support
2.20.1 - 2019-02-01
- use
Arr::
andStr::
functions
2.20.0 - 2019-01-18
- Added
unless
method and magic__call
handler (e.g.$input->valueUnless(false, 5)
) - Added
size
attribute method toInput
- Added
name
attribute method toButton
- Fixed checkbox value repopulation after request
2.19.9 - 2019-01-10
- Improve default of
tel
link
2.19.8 - 2018-09-04
- Add support for Laravel 5.7
2.19.7 - 2018-04-30
- Allow radio input check "0" value
2.19.6 - 2018-04-30
- Correctly prefill form array attributes from the model
2.19.5 - 2018-04-04
- Allow
null
children
2.19.4 - 2018-03-28
- Revert comparison function change in
2.19.2
2.19.2 - 2018-03-26
- Fixed comparison function for selected options in
Select
2.19.1 - 2018-03-23
- Fixed
Html::radio
auto-generated id's & checked behaviour
2.19.0 - 2018-03-09
- Changed
Input::require
to accept a boolean value
2.18.0 - 2018-03-02
- Added
I
element class andHtml::i
factory method
2.17.0 - 2018-02-28
- Added
Html::value
function that's a public method forold
2.16.0 - 2018-02-26
- Added
Img
element class andHtml::img
factory method
2.15.1 - 2018-02-26
- Removed
id
from CSRF fields
2.15.0 - 2018-02-23
- Added
Input::date
andInput::time
2.14.0 - 2018-02-22
- Added
Input::disabled
2.13.1 - 2018-02-20
- Added
Form::novalidate
2.12.1 - 2018-02-08
- Fixed Laravel 5.6 compatibility
2.12.0 - 2018-02-08
- Added Laravel 5.6 compatibility
- Fixed an issue with checkbox values
2.11.0 - 2018-02-02
- Add
readonly
method to input
2.10.3 - 2018-01-09
- Fix
__call
when using macros
2.10.2 - 2017-12-28
Htmlable
elements can now be used in thehtml()
method- Array notation is now implicitly converted to dot notation in
old
(e.g.foo[1] -> foo.1
)
2.10.1 - 2017-12-18
- Fixed old values containing
0
2.10.0 - 2017-11-08
- Added
required
method toSelect
2.9.0 - 2017-10-20
- Added
required
method toTextarea
2.8.2 - 2017-10-13
- Fixed a bug with values that are a
"0"
string
2.8.1 - 2017-10-12
- Fixed a bug with values that are a
"0"
string
2.8.0 - 2017-10-12
- Added a magic
__call
method that responds to methods ending withIf
, so any method can be called with a condition as it's first argument. The method will only be applied if the condition is truthy.
2.7.0 - 2017-10-11
- Added
BaseElement::data
for data attributes
2.6.0 - 2017-10-11
- Added
BaseElement::setChildren
to replace all children - Fixed a bug that didn't select options in optgroups when applying a value
2.5.0 - 2017-10-11
- Added
BaseElement::style
for setting the style attribute (with a string or an associative array) - Added
Html::reset
for form reset buttons
2.4.1 - 2017-09-07
- Nothing changed, but
2.2.0
was accidentally tagged as2.4.0
. This release contains the actual latest version at the time of writing.
2.3.0 - 2017-09-04
- Added
checked
andunchecked
methods toInput
2.2.0 - 2017-08-29
- Added
Optgroup
element - Added the ability to create optgroups in
Options
by passing an array of groups with options
2.1.0 - 2017-08-24
- Added
Html::file
and aFile
element for file inputs
2.0.2 - 2017-07-14
- Fixed an issue that stripped square brackets from element attributes
2.0.1 - 2017-06-28
- Fixed the
Html
facade
2.0.0 - 2017-06-13
- Minimum requirements have been reduced to PHP 7.0
- Added a
html()
helper function that returns an instance ofHtml
- Added
Macroable
to all elements andHtml
- Loosened type hints in method signatures for flexibility
- Added
Html::multiselect
method - Added
Select::multiple
method
1.5.0 - 2017-05-19
- Added
class
method toHtml
1.4.0 - 2017-05-16
- Added a
placeholder
method toTextarea
1.3.1 - 2017-05-09
- Added an empty
value
toSelect::placeholder
1.3.0 - 2017-05-08
- Added a
placeholder
method toSelect
for default empty values
1.2.0 - 2017-04-28
- Added a
Html
facade
1.1.1 - 2017-04-27
- Fixed an issue where html was escaped when you didn't want it to do that, like in buttons and links
1.1.0 - 2017-04-19
- Added
Html::radio
- Fixed an issue that set the wrong
value
for a checkbox created withHtml::checkbox
- Fixed a case sensitivity issue with the
Textarea
class
1.0.0 - 2017-03-31
- Initial release