Skip to content

Releases: mattiverse/Laravel-Userstamps

3.1.1

19 Nov 16:20
5171867

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 3.1.0...3.1.1

3.1.0

09 Jun 07:06

Choose a tag to compare

What's New

This release introduces macros to simplify creating migrations.

Userstamp columns can now be created with:

$table->userstamps();
$table->userstampSoftDeletes();

And dropped with:

$table->dropUserstamps();
$table->dropUserstampSoftDeletes();

What's Changed

New Contributors

Full Changelog: 3.0.0...3.1.0

3.0.0

22 Feb 14:16

Choose a tag to compare

Breaking Changes

  • This release drops support for PHP versions lower than 8.2 and Laravel versions lower than 9.x.
  • This release updates the namespace from Wildside\Userstamps to Mattiverse\Userstamps to reflect the ownership change of this project.
  • Additionally, the Userstamps trait has moved from Wildside\Userstamps\Userstamps to Mattiverse\Userstamps\Traits\Userstamps - note the additional nesting under Traits.

What's Changed

Full Changelog: 2.5.0...3.0.0

2.5.0

22 Feb 13:01

Choose a tag to compare

What's Changed

  • feat: support for Laravel 12
  • chore: updated tests

Contributors

Full Changelog: 2.4.0...2.5.0

2.4.0

13 Mar 08:57

Choose a tag to compare

Adds support for Laravel 11.x

2.3.0

15 Feb 09:38

Choose a tag to compare

Adds support for Laravel 10.x

2.2.0

11 Feb 10:38
a54e057

Choose a tag to compare

Adds support for Laravel 9.x

2.1.0

11 Sep 07:12

Choose a tag to compare

Adds support for Laravel 8.x.

2.0.0

09 Mar 17:23

Choose a tag to compare

This releases contains no new functionality, but has a breaking change for an undocumented behaviour.

The majority of use cases should not be effected by this change, but tagging a major version in case anyone was relying on the behaviour.

Previously, setting any of CREATED_BY, UPDATED_BY and DELETED_BY class constants to null would revert to the default column name. This release changes that behaviour to match Laravel's pattern for the timestamp class constants. A value of null on any of those class constants will now disable maintaining of that column.

1.2.0

03 Mar 14:48

Choose a tag to compare

Adds support for Laravel 7.x.