All notable changes to laravel-tags
will be documented in this file
- Add without tags scope by @stfndamjanovic in spatie#428
- @stfndamjanovic made their first contribution in spatie#428
Full Changelog: https://github.com/spatie/laravel-tags/compare/4.3.4...4.3.5
- change phpunit to pest testing framework by @uthadehikaru in spatie#423
- Fix typos in the docs by @ahmad-moussawi in spatie#425
- Fixed Collection support in syncTags function and added regression test by @zupolgec in spatie#427
- @uthadehikaru made their first contribution in spatie#423
- @ahmad-moussawi made their first contribution in spatie#425
Full Changelog: https://github.com/spatie/laravel-tags/compare/4.3.3...4.3.4
- Added support for strings and corresponding tests by @zupolgec in spatie#395
- @zupolgec made their first contribution in spatie#395
Full Changelog: https://github.com/spatie/laravel-tags/compare/4.3.2...4.3.3
- Added example of getting all the tags of a model by @titonova in spatie#394
- Update using-tags.md typo by changing "Find" to "find" by @jorgemurta in spatie#401
- readme: add example apply trait by @erlangparasu in spatie#403
- Update .gitattributes to decrease package installed size by @lakuapik in spatie#407
- @titonova made their first contribution in spatie#394
- @jorgemurta made their first contribution in spatie#401
- @erlangparasu made their first contribution in spatie#403
- @lakuapik made their first contribution in spatie#407
Full Changelog: https://github.com/spatie/laravel-tags/compare/4.3.1...4.3.2
- Fix BadMethodCallException caused by attach() by @umairparacha00 in spatie#389
- Ignore the
phpunit.xml
file by default by @markwalet in spatie#362 - Fixed the docs by @umairparacha00 in spatie#390
- Add support for spatie/laravel-translatable:^6.0 by @dsturm in spatie#391
- @umairparacha00 made their first contribution in spatie#389
- @markwalet made their first contribution in spatie#362
- @dsturm made their first contribution in spatie#391
Full Changelog: https://github.com/spatie/laravel-tags/compare/4.3.0...4.3.1
- allow Laravel 9
- enable and fix test by @delta1186 in spatie#373
- Fix find from string of any type by @delta1186 in spatie#375
Full Changelog: https://github.com/spatie/laravel-tags/compare/4.2.0...4.2.1
- Make convertToTags() method $values arg support Tag instance by @chuoke in spatie#371
- @chuoke made their first contribution in spatie#371
Full Changelog: https://github.com/spatie/laravel-tags/compare/4.1.0...4.2.0
- Adding a static function for current locale to the tag by @leonidlezner in spatie#368
- @leonidlezner made their first contribution in spatie#368
Full Changelog: https://github.com/spatie/laravel-tags/compare/4.0.5...4.1.0
- PHP 8.1 Support by @sergiy-petrov in spatie#361
- Update installation-and-setup.md by @PatrickJunod in spatie#365
- Remove extra ordered on getWithType by @delta1186 in spatie#367
- @sergiy-petrov made their first contribution in spatie#361
- @PatrickJunod made their first contribution in spatie#365
- @delta1186 made their first contribution in spatie#367
Full Changelog: https://github.com/spatie/laravel-tags/compare/4.0.4...4.0.5
- get the tag model table name when syncing tags (#351)
- allow eloquent-sortable v4
- update deps
- fix translatable attributes (#300)
- drop support for all PHP versions below 8.0
-add tag_model
config variable (#301)
- Get all registered tag types (#296)
- add support for PHP 8
- drop support for anything below Laravel 8
- add
HasFactory
to tags model.
- add support for Laravel 8
- avoid duplicate error on syncTagsWithType (#274)
- allow specifying type when using
attachTags()
ordetachTags()
(#273)
- change mutator behaviour: use sync instead of attach (#260)
- add support for Laravel 7
- make sure each tag is unique on the database level (#251)
- use
morphs
in migration
findOrCreateFromString
can now be overloaded (#231)
- make
scopeContaining
compatible with Postgresql
- add support for Laravel 6
- fix
scopeWithAllTags
* scopes
- use
ordered()
scope to determine order column name (#193)
- fix
str_slug
being deprecated
- added ability to work with multibyte charset
- performance enhanchements
- add
tagsTranslated
- drop support for Laravel 5.7 and below
- drop support for PHP 7.1 and below
- add support for Laravel 5.8
- use morph map name for taggable_type if it exists
- add
scopeWithAllTagsOfAnyType
andscopeWithAnyTagsOfAnyType
- update deps
- fix for locales with hypens in their name
- use
getTable()
instead of$table
in the scope
- fix for
withAnyTags
- add support for laravel-translatable v3
- improve performance
- add
containing
scope
- add L5.7 compatibility
- add L5.6 compatibility
- added compatiblity with Laravel 5.5, dropped support for all older versions
- renamed config file from
laravel-tags
totags
- deleting a model with tags will now delete related records in the
taggables
table
- add
syncWithType
- allow the name of a tag to be set by changing the name property
- fix bug where the same tag would be created multiple times
- removed typehint from HasTags::convertToTags to allow and instance of
Tag
to be passed in
- remove classmap from
composer.json
THIS VERSION IS BROKEN, DO NOT USE
- fix missings deps
THIS VERSION IS BROKEN, DO NOT USE
- add compatibility with Laravel 5.4
- the
withAllTags
andwithAnyTags
scopes now optionally accept atype
- fix bug where a custom tag model would not be used in
tags()
- The function that determines the value of the slug can now be modified in the config file
- fixed bug in
attachTag
where using aTag
model would be converted to a string
- fix migration path in service provider
- initial release