Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 22, 2024

Bumps meilisearch from 0.36.0 to 0.37.0.

Release notes

Sourced from meilisearch's releases.

v0.37.0 🌻

This version introduces features released on Meilisearch v1.6.0 🎉 Check out the changelog of Meilisearch v1.6.0 for more information on the changes.

⚠️ If you want to adopt new features of this release, update the Meilisearch server to the according version.

🚀 Enhancements

client.index('books').getProximityPrecision()
client.index('books').updateProximityPrecision('byAttribute')
client.index('books').resetProximityPrecision()
  • Update error inheritance to extend MeiliSearchError (#1607) amit-ksh

🧪 Experimental enhancement - Hybrid and vector search

⚠️ This is about an experimental feature of Meilisearch. Activate the vectorStore experimental feature to use it

client.index('books').getEmbedders()
client.index('books').updateEmbedders({ default: { source: 'userProvided', dimensions: 1 }})
client.index('books').resetEmbedders()

⚙️ Maintenance/misc

  • Fix test name in error.test.ts (#1609) amit-ksh
  • Update Jest (#1622) flevi29

Thanks again to @​amit-ksh, @​curquiza, @​flevi29, @​mdubus, @​meili-bors[bot] ! 🎉

Commits

Dependabot compatibility score

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [meilisearch](https://github.com/meilisearch/meilisearch-js) from 0.36.0 to 0.37.0.
- [Release notes](https://github.com/meilisearch/meilisearch-js/releases)
- [Commits](meilisearch/meilisearch-js@v0.36.0...v0.37.0)

---
updated-dependencies:
- dependency-name: meilisearch
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Improvements or additions to documentation skip-changelog The PR will not appear in the release changelogs labels Jan 22, 2024
@changeset-bot
Copy link

changeset-bot bot commented Jan 22, 2024

🦋 Changeset detected

Latest commit: 72726ac

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 1 package
Name Type
@meilisearch/instant-meilisearch Minor

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

Copy link
Member

@curquiza curquiza left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

bors merge

meili-bors bot added a commit that referenced this pull request Jan 22, 2024
1281: Bump meilisearch from 0.36.0 to 0.37.0 r=curquiza a=dependabot[bot]

Bumps [meilisearch](https://github.com/meilisearch/meilisearch-js) from 0.36.0 to 0.37.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/meilisearch/meilisearch-js/releases">meilisearch's releases</a>.</em></p>
<blockquote>
<h2>v0.37.0 🌻</h2>
<p>This version introduces features released on Meilisearch v1.6.0 🎉
Check out the changelog of <a href="https://github.com/meilisearch/meilisearch/releases/tag/v1.6.0">Meilisearch v1.6.0</a> for more information on the changes.</p>
<p>⚠️ If you want to adopt new features of this release, <strong>update the Meilisearch server</strong> to the according version.</p>
<h2>🚀 Enhancements</h2>
<ul>
<li>Add support for the new setting: <code>proximityPrecision</code> (<a href="https://redirect.github.com/meilisearch/meilisearch-js/pull/1619">meilisearch/meilisearch-js#1619</a>) mdubus</li>
</ul>
<pre lang="js"><code>client.index('books').getProximityPrecision()
client.index('books').updateProximityPrecision('byAttribute')
client.index('books').resetProximityPrecision()
</code></pre>
<ul>
<li>Update error inheritance to extend <code>MeiliSearchError</code> (<a href="https://redirect.github.com/meilisearch/meilisearch-js/issues/1607">#1607</a>) amit-ksh</li>
</ul>
<h2>🧪 Experimental enhancement - Hybrid and vector search</h2>
<p>⚠️ This is about an experimental feature of Meilisearch. Activate the <a href="https://www.meilisearch.com/docs/reference/api/experimental_features#configure-experimental-features"><code>vectorStore</code> experimental feature to use it</a></p>
<ul>
<li>Add support for the <code>embedders</code> settings (<a href="https://redirect.github.com/meilisearch/meilisearch-js/pull/1623">meilisearch/meilisearch-js#1623</a>) mdubus</li>
</ul>
<pre lang="js"><code>client.index('books').getEmbedders()
client.index('books').updateEmbedders({ default: { source: 'userProvided', dimensions: 1 }})
client.index('books').resetEmbedders()
</code></pre>
<ul>
<li>Add support for the <code>hybrid</code> parameter during search (<a href="https://redirect.github.com/meilisearch/meilisearch-js/pull/1623">meilisearch/meilisearch-js#1623</a>) mdubus</li>
</ul>
<h2>⚙️ Maintenance/misc</h2>
<ul>
<li>Fix test name in error.test.ts (<a href="https://redirect.github.com/meilisearch/meilisearch-js/issues/1609">#1609</a>) amit-ksh</li>
<li>Update Jest (<a href="https://redirect.github.com/meilisearch/meilisearch-js/issues/1622">#1622</a>) flevi29</li>
</ul>
<p>Thanks again to <a href="https://github.com/amit-ksh"><code>`@​amit-ksh</code></a>,` <a href="https://github.com/curquiza"><code>`@​curquiza</code></a>,` <a href="https://github.com/flevi29"><code>`@​flevi29</code></a>,` <a href="https://github.com/mdubus"><code>`@​mdubus</code></a>,` <a href="https://github.com/meili-bors"><code>`@​meili-bors</code></a>[bot]` ! 🎉</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/meilisearch/meilisearch-js/commit/a8b5e4b2dc0a4d0467545683e7491da7802a9384"><code>a8b5e4b</code></a> Merge <a href="https://redirect.github.com/meilisearch/meilisearch-js/issues/1625">#1625</a></li>
<li><a href="https://github.com/meilisearch/meilisearch-js/commit/1a9c032e7d5195c2d7411768e79e4576d09067da"><code>1a9c032</code></a> Merge <a href="https://redirect.github.com/meilisearch/meilisearch-js/issues/1614">#1614</a></li>
<li><a href="https://github.com/meilisearch/meilisearch-js/commit/e598d94e6bd6b2193d0288eabc9bb84dfa1a8fc2"><code>e598d94</code></a> fix: default embedders for sub-route settings should be null</li>
<li><a href="https://github.com/meilisearch/meilisearch-js/commit/53ef480bc8e767f3a12714c2b586fca79fa121d6"><code>53ef480</code></a> fix: snapshots after removing embedders from default settings (<a href="https://redirect.github.com/meilisearch/meilisearch-js/issues/1627">#1627</a>)</li>
<li><a href="https://github.com/meilisearch/meilisearch-js/commit/6cd6b03d96a6ddbbd56be013ff5c79e9011b37b4"><code>6cd6b03</code></a> Add code samples v1.6.0 (<a href="https://redirect.github.com/meilisearch/meilisearch-js/issues/1624">#1624</a>)</li>
<li><a href="https://github.com/meilisearch/meilisearch-js/commit/6750d75f5d245e46d487a73cfb68c0a851836da9"><code>6750d75</code></a> Merge branch 'main' into bump-meilisearch-v1.6.0</li>
<li><a href="https://github.com/meilisearch/meilisearch-js/commit/13c9c56a8f37a6baeaf79c48691171879715dd36"><code>13c9c56</code></a> Update README.md</li>
<li><a href="https://github.com/meilisearch/meilisearch-js/commit/1e9d22f88adda2cf49aa5e9bc1c6290f7e9f6776"><code>1e9d22f</code></a> Update src/package-version.ts</li>
<li><a href="https://github.com/meilisearch/meilisearch-js/commit/f2a8ee683be804d66b1924a4db021ab7e626aa9f"><code>f2a8ee6</code></a> Update package.json</li>
<li><a href="https://github.com/meilisearch/meilisearch-js/commit/4e4b2e74be09c704fb41eebdaf12132d5513e2eb"><code>4e4b2e7</code></a> Implement vector search experimental feature (<a href="https://redirect.github.com/meilisearch/meilisearch-js/issues/1623">#1623</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/meilisearch/meilisearch-js/compare/v0.36.0...v0.37.0">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=meilisearch&package-manager=npm_and_yarn&previous-version=0.36.0&new-version=0.37.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

You can trigger a rebase of this PR by commenting ``@dependabot` rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- ``@dependabot` rebase` will rebase this PR
- ``@dependabot` recreate` will recreate this PR, overwriting any edits that have been made to it
- ``@dependabot` merge` will merge this PR after your CI passes on it
- ``@dependabot` squash and merge` will squash and merge this PR after your CI passes on it
- ``@dependabot` cancel merge` will cancel a previously requested merge and block automerging
- ``@dependabot` reopen` will reopen this PR if it is closed
- ``@dependabot` close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- ``@dependabot` show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency
- ``@dependabot` ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- ``@dependabot` ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- ``@dependabot` ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: curquiza <clementine@meilisearch.com>
@meili-bors
Copy link
Contributor

meili-bors bot commented Jan 22, 2024

This PR was included in a batch that successfully built, but then failed to merge into main (it was a non-fast-forward update). It will be automatically retried.

@meili-bors meili-bors bot merged commit 0b3dfe1 into main Jan 22, 2024
@meili-bors meili-bors bot deleted the dependabot/npm_and_yarn/meilisearch-0.37.0 branch January 22, 2024 12:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Improvements or additions to documentation skip-changelog The PR will not appear in the release changelogs

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants