Skip to content

Releases: dereuromark/cakephp-tags

2.1.0

16 Sep 21:00
Compare
Choose a tag to compare

Improvements

Compatibility with CakePHP 5.1+

Included commits: 2.0.1...2.1.0

2.0.1

27 Nov 20:57
Compare
Choose a tag to compare

Fixes

Removed deprecations.

2.0.0

13 Nov 12:19
Compare
Choose a tag to compare

CakePHP 5 compatible release

Enjoy!

2.0.0-RC

05 Oct 02:33
Compare
Choose a tag to compare

CakePHP 5 compatible pre-release

Please test. Once this has been tested and approved, the stable release can be tagged.

1.2.2

11 Mar 16:33
Compare
Choose a tag to compare

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

27 Oct 21:17
0672c3a
Compare
Choose a tag to compare

Fixes

  • Fixed tag cloud fetching

1.2.0

14 Apr 17:50
Compare
Choose a tag to compare

Improvements

Adjusted the callbacks to always accept the EventInterface instead of the concrete Event class.

1.1.2

04 Mar 09:24
acb511a
Compare
Choose a tag to compare

Fixes

Fixed warning for helper with division by 0 issue.

1.1.1

05 Jan 01:14
Compare
Choose a tag to compare

Fixes

Fixed query to work also with joined tables by using always aliases keys.

1.1.0

04 Aug 17:39
1a95a7b
Compare
Choose a tag to compare

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']);