Releases: dereuromark/cakephp-tags
Releases · dereuromark/cakephp-tags
2.1.0
2.0.1
Fixes
Removed deprecations.
2.0.0
CakePHP 5 compatible release
Enjoy!
2.0.0-RC
CakePHP 5 compatible pre-release
Please test. Once this has been tested and approved, the stable release can be tagged.
1.2.2
Improvements
- Allow tags to be created from admin backend, including slug creation.
- Allow adjusting the structure of tags cloud.
- Allow disabling links for tag cloud output.
1.2.1
Fixes
- Fixed tag cloud fetching
1.2.0
Improvements
Adjusted the callbacks to always accept the EventInterface instead of the concrete Event class.
1.1.2
Fixes
Fixed warning for helper with division by 0 issue.
1.1.1
Fixes
Fixed query to work also with joined tables by using always aliases keys.
1.1.0
Improvements
Added "and"/"or" filtering with multiple tags
Using orSeparator
/andSeparator
config, one can also filter by multiple tags at once:
// Records that have either "one" or "two" tag
$query->find('tagged', ['slug' => 'one,two']);
// Records that have both "one" and "two" tag
$query->find('tagged', ['slug' => 'one+two']);