Skip to content

Releases: statamic-rad-pack/meilisearch

1.1.0

02 Aug 08:33
Compare
Choose a tag to compare

Changed

  • Allow use of latest meilisearch/meilisearch-php v0.24.*

Meilisearch 0.28 has a lot of breaking changes in its api. You may need to require an older Meilisearch Client if you use an older Version of Meilisearch.

Full Changelog: 1.0.6...1.1.0

1.0.6

09 May 21:30
Compare
Choose a tag to compare

Changed

  • Fix missing type hint for Statamic\Taxonomies\Term

Full Changelog: 1.0.5...1.0.6

1.0.5

09 May 21:23
Compare
Choose a tag to compare

Changed

Nothing! Just a new version to release changes for real (I forgot to push before I created the previous release 🤦‍♂️)

Full Changelog: 1.0.4...1.0.5

1.0.4

09 May 21:19
Compare
Choose a tag to compare

Changed

  • Pass reference and not whole object to delete method.

Full Changelog: 1.0.3...1.0.4

1.0.3

09 May 20:33
Compare
Choose a tag to compare

Changed

Add compare url to new changelog updates

1.0.2

09 May 20:30
Compare
Choose a tag to compare

Changed

Use correct target branch for tag.

Full Changelog: 1.0.0...1.0.2

1.0.1

09 May 20:29
Compare
Choose a tag to compare

Changes

  • Some follow up changes after using changelog updater

1.0.0

09 May 20:17
Compare
Choose a tag to compare

In consultation with @tao, I have revised the adapter, and we present the first "stable" version.

Added

  • reference is automatically added to the index. (Statamic needs this to resolve the search results).
  • The code will now be automatically formatted (php-cs-fixer).
  • We added a basic test setup to ensure at least the packages can be installed together.

Changed

  • We no longer follow the MeiliSearch release cycle (the search client is used so superficially that we do not expect any breaking changes here).
  • The ID of the search documents will now be transformed according to the MeiliSearch rules #5 .
  • The property collection is no longer indexed by default. If you still need it, add this transformer to your search configuration:
'tags' => [
    'driver' => 'meilisearch',
    'searchables' => ['taxonomy:tags'],
    'fields' => ['title', 'slug', 'collection'],
    'transformers' => [
        'collection' => fn($collection) => $collection?->handle(),
    ],
 ],
  • The Package Service Provider has been renamed to StatamicMeiliSearchServiceProvider. If you have problems updating, you may have to remove the package with composer remove elvenstar/statamic-meilisearch and add it again with composer require elvenstar/statamic-meilisearch.

Removed

  • We have removed PHP support for versions older than 8.0.
  • We have removed Laravel support for versions older than 8.0.

v0.25.1

11 Apr 11:43
@tao tao
32cca2d
Compare
Choose a tag to compare

Update searchUsingApi to allow filter and options variables.

v0.25.0

27 Jan 15:54
@tao tao
a4c706f
Compare
Choose a tag to compare

Update driver for compatibility with MeiliSearch v0.25