Skip to content

Tags: meilisearch/meilisearch-php

Tags

v1.13.0

Verified

This commit was created on github.com and signed with GitHub’s verified signature.
Merge #723

723: Update version for the next release (v1.13) r=brunoocasali a=meili-bot

_This PR is auto-generated._

The automated script updates the version of meilisearch-php to a new version: "v1.13"

👇 CHANGELOG

## ✨ New

- [AI-powered search](https://www.meilisearch.com/docs/learn/ai_powered_search/getting_started_with_ai_search) is now stable `@/Strift`

## ⚙️ Maintenance/misc

* Fix flaky tasks reverse test (#710) `@/Strift`

Thanks again to `@/Strift!` 🎉


Co-authored-by: meili-bot <74670311+meili-bot@users.noreply.github.com>
Co-authored-by: Laurent Cazanove <lau.cazanove@gmail.com>

v1.12.0

Verified

This commit was created on github.com and signed with GitHub’s verified signature.
Merge #692

692: Changes related to the next Meilisearch release (v1.12.0) r=curquiza a=meili-bot

Related to this issue: meilisearch/integration-guides#307

This PR:
- gathers the changes related to the next Meilisearch release (v1.12.0) so that this package is ready when the official release is out.
- should pass the tests against the [latest pre-release of Meilisearch](https://github.com/meilisearch/meilisearch/releases).
- might eventually contain test failures until the Meilisearch v1.12.0 is out.

⚠️ This PR should NOT be merged until the next release of Meilisearch (v1.12.0) is out.

_This PR is auto-generated for the [pre-release week](https://github.com/meilisearch/integration-guides/blob/main/resources/pre-release-week.md) purpose._


Co-authored-by: meili-bot <74670311+meili-bot@users.noreply.github.com>
Co-authored-by: Clémentine <clementine@meilisearch.com>
Co-authored-by: Strift <lau.cazanove@gmail.com>
Co-authored-by: Laurent Cazanove <lau.cazanove@gmail.com>

v1.11.0

Verified

This commit was created on github.com and signed with GitHub’s verified signature.
Merge #689

689: Update version for the next release (v1.11.0) r=brunoocasali a=meili-bot

_This PR is auto-generated._

The automated script updates the version of meilisearch-php to a new version: "v1.11.0"

--- CHANGELOG ---

This version introduces features released on Meilisearch v1.11.0 🎉
Check out the [changelog of Meilisearch v1.11.0](https://github.com/meilisearch/meilisearch/releases/tag/v1.11.0) for more information on the changes.

## ⚠️ Breaking change (experimental feature only)

* Adapt the library to the new usage of [Meilisearch v1.11](https://github.com/meilisearch/meilisearch/releases/tag/v1.11.0) (#683) `@/ManyTheFish` & `@/norkunas` 

## 🚀 Enhancements

* Add facet distribution to `multiSearch` (#683) `@/ManyTheFish` & `@/norkunas` 

## ⚙️ Maintenance/misc

* Improve coding standards (#684) `@/norkunas`

Thanks again to `@/ManyTheFish,`  and `@/norkunas!` 🎉



Co-authored-by: meili-bot <74670311+meili-bot@users.noreply.github.com>

v1.10.1

Verified

This commit was created on github.com and signed with GitHub’s verified signature.
Merge #679

679: Update version for the next release (v1.10.1) r=brunoocasali a=meili-bot

_This PR is auto-generated._

The automated script updates the version of meilisearch-php to a new version: "v1.10.1"


Co-authored-by: meili-bot <74670311+meili-bot@users.noreply.github.com>

v1.10.0

Verified

This commit was created on github.com and signed with GitHub’s verified signature.
Merge #668

668: Update version for the next release (v1.10.0) r=brunoocasali a=meili-bot

_This PR is auto-generated._

The automated script updates the version of meilisearch-php to a new version: "v1.10.0"

CHANGELOGS 👇

This version introduces features released on Meilisearch v1.10.0 🎉
Check out the changelog of [Meilisearch v1.10.0](https://github.com/meilisearch/meilisearch/releases/tag/v1.10.0) for more information on the changes.

## 🚀 Enhancements

- Add localized attributes settings (#662) `@/irevoire` 
```
$client->index('INDEX_NAME')->updateLocalizedAttributes([
    'locales' => ['jpn'],
    'attributePatterns' => ['*_ja']
]);
```

- Add `locales` search parameter (#663) `@/irevoire`
```php
$client->index('INDEX_NAME')->search('進撃の巨人', [
    'locales' => ['jpn']
]);
```

- Add federation options when doing multi-search (#663) `@/irevoire` 
```php
$client->multiSearch([
      (new SearchQuery())
        ->setIndexUid('movies'))
        ->setQuery('batman')
        ->setLimit(5),
      (new SearchQuery())
        ->setIndexUid('comics')
        ->setQuery('batman')
        ->setLimit(5),
    ],
    (new MultiSearchFederation())
  );
```

- Add capability to update documents by function (⚠️ experimental feature) (#664) `@/irevoire`

```php
 $function = '
            if doc.id % context.modulo == 0 {
                doc.title = `kefir would read ${doc.title}`;
            };
            doc.remove("comment");
            doc.remove("genre");
';
$client-> index->updateDocumentsByFunction($function, ['context' => ['modulo' => 3]]);
```

## ⚙️ Maintenance/misc

- Update CI (#666 & #667) `@/norkunas` 


Co-authored-by: meili-bot <74670311+meili-bot@users.noreply.github.com>

v1.9.1

Verified

This commit was created on github.com and signed with GitHub’s verified signature.
Merge #657

657: Update version for the next release (v1.9.1) r=curquiza a=meili-bot

_This PR is auto-generated._

The automated script updates the version of meilisearch-php to a new version: "v1.9.1"


Co-authored-by: meili-bot <74670311+meili-bot@users.noreply.github.com>

v1.9.0

Verified

This commit was created on github.com and signed with GitHub’s verified signature.
Merge #643

643: Changes related to the next Meilisearch release (v1.9.0) r=curquiza a=meili-bot

Related to this issue: meilisearch/integration-guides#301

This PR:
- gathers the changes related to the next Meilisearch release (v1.9.0) so that this package is ready when the official release is out.
- should pass the tests against the [latest pre-release of Meilisearch](https://github.com/meilisearch/meilisearch/releases).
- might eventually contain test failures until the Meilisearch v1.9.0 is out.

⚠️ This PR should NOT be merged until the next release of Meilisearch (v1.9.0) is out.

_This PR is auto-generated for the [pre-release week](https://github.com/meilisearch/integration-guides/blob/main/resources/pre-release-week.md) purpose._


Co-authored-by: meili-bot <74670311+meili-bot@users.noreply.github.com>
Co-authored-by: Shalabh Agarwal <34604329+the-sinner@users.noreply.github.com>
Co-authored-by: Many the fish <many@meilisearch.com>
Co-authored-by: curquiza <clementine@meilisearch.com>
Co-authored-by: Clémentine <clementine@meilisearch.com>

v1.8.0

Verified

This commit was created on github.com and signed with GitHub’s verified signature.
Merge #638

638: Update version for the next release (v1.8.0) r=curquiza a=meili-bot

_This PR is auto-generated._

The automated script updates the version of meilisearch-php to a new version: "v1.8.0"

---

This version introduces features released on Meilisearch v1.8.0 🎉
Check out the changelog of [Meilisearch v1.8.0](https://github.com/meilisearch/meilisearch/releases/tag/v1.7.0) for more information on the changes.

## 🚀 Enhancements

* Add support for the new setting: `searchCutoffMs` (#636) `@/brunoocasali`
```php
$client->index('books')->getSearchCutoffMs();
$client->index('books')->updateSearchCutoffMs(150);
$client->index('books')->resetSearchCutoffMs();
```

* Add `getSemanticHitCount()` method to retrieve how many results were found because of the semantic query. #639 `@brunoocasali` 

## ⚙️ Maintenance/misc

* Add missing $ to documentation code sample (#633) `@/guimachiavelli`

Co-authored-by: meili-bot <74670311+meili-bot@users.noreply.github.com>
Co-authored-by: Clémentine <clementine@meilisearch.com>

v1.7.0

Verified

This commit was created on github.com and signed with GitHub’s verified signature.
Merge #621

621: Update version for the next release (v1.7.0) r=curquiza a=meili-bot

_This PR is auto-generated._

The automated script updates the version of meilisearch-php to a new version: "v1.7.0"

---

Part of this work
#617

---

This version introduces features released on Meilisearch v1.7.0 🎉
Check out the changelog of [Meilisearch v1.7.0](https://github.com/meilisearch/meilisearch/releases/tag/v1.7.0) for more information on the changes. 

 ## ⚠️ Breaking changes

* `scoreDetails` feature is not experimental anymore. You can directly use `showRankingScoreDetails` during a search without activating the experimental feature 🎉

## 🚀 Enhancements

* Includes any changes related to Hybrid search introduced in Meilisearch v1.7.0 🎉

## ⚙️ Maintenance/misc

* Added CodeCov coverage report support (#616) connorhu

Co-authored-by: meili-bot <74670311+meili-bot@users.noreply.github.com>
Co-authored-by: Clémentine U. - curqui <clementine@meilisearch.com>

v1.6.1

Verified

This commit was created on github.com and signed with GitHub’s verified signature.
Merge #620

620: Update version for the next release (v1.6.1) r=curquiza a=meili-bot

_This PR is auto-generated._

The automated script updates the version of meilisearch-php to a new version: "v1.6.1"


Co-authored-by: meili-bot <74670311+meili-bot@users.noreply.github.com>
Co-authored-by: Clémentine U. - curqui <clementine@meilisearch.com>