Skip to content

Releases: barryvdh/laravel-ide-helper

v3.2.2

29 Oct 14:03
07e3bd8
Compare
Choose a tag to compare

What’s Changed

Full Changelog: v3.2.1...v3.2.2

v3.2.1

28 Oct 11:33
800e234
Compare
Choose a tag to compare

What's Changed

  • chore: Fix the description of unused option by @KentarouTakeda in #1600
  • feat(pivot): add support for multiple pivot types when using the same accessor by @pataar in #1597
  • Add support for AsCollection::using and AsEnumCollection::of casts by @uno-sw in #1577
  • Smarter reset by @barryvdh in #1603
  • feat: use numeric type on fields with decimal casts by @ekisu in #1583

New Contributors

Full Changelog: v3.2.0...v3.2.1

v3.2.0

18 Oct 11:51
7956ccb
Compare
Choose a tag to compare

This version adds support for the Generics in the Eloquent Builder from Laravel 11. To better support this, support for Laravel < 11 is dropped. The minimum version is now Laravel 11 and PHP8.2. Older Laravel/PHP versions can still keep using v3.1.x

What's Changed

New Contributors

Full Changelog: v3.1.0...v3.2.0

v3.2.0-rc1

17 Oct 16:43
7956ccb
Compare
Choose a tag to compare
v3.2.0-rc1 Pre-release
Pre-release

What's Changed

New Contributors

Full Changelog: v3.1.0...v3.2.0-rc1

v3.1.0

12 Jul 14:21
591e7d6
Compare
Choose a tag to compare

2024-07-12, 3.1.0

Fixed

Added

New Contributors

Full Changelog: v3.0.0...v3.1.0

v3.0.0: Support Laravel 11 & Remove Doctrine

01 Mar 12:53
bc1d67f
Compare
Choose a tag to compare

Added

Changed

Removed

  • Support for Laravel 9 and use of doctrine/dbal #1512 / barryvdh
    With this functionality gone, a few changes have been made:
    • support for custom datatypes has been dropped (config custom_db_types) unknown data types default to string now and to fix the type, add a proper cast in Eloquent
    • You might have top-level dependency on doctrine/dbal. This may have been in the past due to ide-helper, we suggest to check if you still need it and remove it otherwise
    • Minimum PHP version, due to Laravel 10, is now PHP 8.1

v2.15.1: Fix final class keyword (#1517)

15 Feb 14:24
7783185
Compare
Choose a tag to compare
* Fix final class keyword

* Add changelog

v2.15.0

14 Feb 11:25
dca3ebe
Compare
Choose a tag to compare

Shortly after the previous release, a release with some long standing Pull Requests.
This release is the last minor release before removing support for Laravel 9 and Doctrine.

Fixed

Changed

Added

v2.14.0: long time, no see… and Goodbye Lumen 👋

05 Feb 10:34
@mfn mfn
485c756
Compare
Choose a tag to compare

Finally after a year a new release 🎉

As mentioned below, Lumen is no longer officially supported.

Changed

  • Official support for Lumen has been dropped #1425 / mfn
  • Refactor resolving of null information for custom casted attribute types #1330 / wimski

Fixed

Added

  • Add support for nikic/php-parser 5 (next to 4) #1502 / mfn
  • Add support for immutable_date:* and immutable_datetime:* casts. #1380 / thekonz

v2.13.0: Fix Castables issue #1312 (#1388)

04 Feb 15:23
81d5b22
Compare
Choose a tag to compare

Fixes

  • Fix return type of methods provided by SoftDeletes #1345 / KentarouTakeda
  • Handle PHP 8.1 deprecation warnings when passing null to new \ReflectionClass #1351 / mfn
  • Fix issue where \Eloquent is not included when using write_mixin #1352 / Jefemy
  • Fix model factory method arguments for Laravel >= 9 #1361 / wimski
  • Improve return type of mock helper methods in tests #1405 / bentleyo
  • Fix Castable class if failed to detect it from return types #1388 / kwarcu

Added