Skip to content

Commit

Permalink
Merge #609
Browse files Browse the repository at this point in the history
609: Update version for the next release (v1.6.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.6.0"

**CHANGELOG:**

---

## 🚀 Enhancements

* Add support for the new setting: `proximityPrecision` (#606) brunoocasali
```php
$client->index('books')->getProximityPrecision();
$client->index('books')->updateProximityPrecision('byAttribute');
$client->index('books')->resetProximityPrecision();
```

## 🧪 Experimental enhancement - Hybrid and vector search

⚠️ This is about an experimental feature of Meilisearch. Activate the [`vectorStore` experimental feature to use it](https://www.meilisearch.com/docs/reference/api/experimental_features#configure-experimental-features)

* Add support for the `embedders` settings & Add support for the `hybrid` parameter during search (#608) brunoocasali
```js
$client->index('books')->getEmbedders();
$client->index('books')->updateEmbedders(['default' => ['source' => 'userProvided', 'dimensions' => 1]]);
$client->index('books')->resetEmbedders();
```

## ⚙️ Maintenance/misc

* Declare ``@throws`` in HandlesTasks delegate (#599) `@norkunas`

Thanks again to `@norkunas,` `@brunoocasali!` 🎉


Co-authored-by: meili-bot <74670311+meili-bot@users.noreply.github.com>
  • Loading branch information
meili-bors[bot] and meili-bot authored Jan 15, 2024
2 parents 87bc862 + 5df8b38 commit 4dbb26d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Meilisearch.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

class Meilisearch
{
public const VERSION = '1.5.0';
public const VERSION = '1.6.0';

public static function qualifiedVersion()
{
Expand Down

0 comments on commit 4dbb26d

Please sign in to comment.