Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump meilisearch from 0.38.0 to 0.42.0 #540

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 1, 2024

Bumps meilisearch from 0.38.0 to 0.42.0.

Release notes

Sourced from meilisearch's releases.

v0.42.0 🌻

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

⚠️ Breaking changes

  • Improve errors (#1656) @/flevi29 More details here
  • Changes related to Hybrid search (experimental) for the REST embedder (#1692) @​mdubus
    • Removed parameters: query, inputField, inputType, pathToEmbeddings and embeddingObject.
    • Replaced by request and response
    • New parameter: headers

🚀 Enhancements

  • Hybrid search improvements (#1692) @​mdubus

    • Add url parameter to the OpenAI embedder
    • dimensions is now available as an optional parameter for ollama embedders.
  • Add federated search parameters (#1689) @​flevi29

client.multiSearch({
    federation: {},
    queries: [
      {
        indexUid: 'movies',
        q: 'batman',
        limit: 5,
      },
      {
        indexUid: 'comics',
        q: 'batman',
        limit: 5,
      },
    ]
  })
index.updateDocumentsByFunction({
    context: { ctx: 'Harry' },
    filter: 'id = 4',
    function: 'doc.comment = `Yer a wizard, ${context.ctx}!`',
  })
)
  • Add language settings (#1693) @/flevi29

... (truncated)

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)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps [meilisearch](https://github.com/meilisearch/meilisearch-js) from 0.38.0 to 0.42.0.
- [Release notes](https://github.com/meilisearch/meilisearch-js/releases)
- [Commits](meilisearch/meilisearch-js@v0.38.0...v0.42.0)

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

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file skip-changelog labels Sep 1, 2024
@curquiza
Copy link
Member

curquiza commented Oct 9, 2024

bors try

meili-bors bot added a commit that referenced this pull request Oct 9, 2024
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 Oct 9, 2024
540: Bump meilisearch from 0.38.0 to 0.42.0 r=curquiza a=dependabot[bot]

Bumps [meilisearch](https://github.com/meilisearch/meilisearch-js) from 0.38.0 to 0.42.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.42.0 🌻</h2>
<p>This version introduces features released on Meilisearch v1.10.0 🎉
Check out the changelog of <a href="https://github.com/meilisearch/meilisearch/releases/tag/v1.10.0">Meilisearch v1.10.0</a> for more information on the changes.</p>
<h2>⚠️ Breaking changes</h2>
<ul>
<li>Improve errors (<a href="https://redirect.github.com/meilisearch/meilisearch-js/issues/1656">#1656</a>) `@/flevi29`
More details <a href="https://redirect.github.com/meilisearch/meilisearch-js/pull/1656#issuecomment-2290826478">here</a></li>
<li>Changes related to Hybrid search (experimental) for the REST embedder (<a href="https://redirect.github.com/meilisearch/meilisearch-js/issues/1692">#1692</a>) <a href="https://github.com/mdubus"><code>`@​mdubus</code></a>`
<ul>
<li>Removed parameters: <code>query</code>, <code>inputField</code>, <code>inputType</code>, <code>pathToEmbeddings</code> and <code>embeddingObject</code>.</li>
<li>Replaced by <code>request</code> and <code>response</code></li>
<li>New parameter: <code>headers</code></li>
</ul>
</li>
</ul>
<h2>🚀 Enhancements</h2>
<ul>
<li>
<p>Hybrid search improvements (<a href="https://redirect.github.com/meilisearch/meilisearch-js/issues/1692">#1692</a>) <a href="https://github.com/mdubus"><code>`@​mdubus</code></a></p>`
<ul>
<li>Add <code>url</code> parameter to the OpenAI embedder</li>
<li><code>dimensions</code> is now available as an optional parameter for <code>ollama</code> embedders.</li>
</ul>
</li>
<li>
<p>Add federated search parameters (<a href="https://redirect.github.com/meilisearch/meilisearch-js/issues/1689">#1689</a>) <a href="https://github.com/flevi29"><code>`@​flevi29</code></a></p>`
</li>
</ul>
<pre lang="js"><code>client.multiSearch({
    federation: {},
    queries: [
      {
        indexUid: 'movies',
        q: 'batman',
        limit: 5,
      },
      {
        indexUid: 'comics',
        q: 'batman',
        limit: 5,
      },
    ]
  })
</code></pre>
<ul>
<li>Add capabilities to update documents by function (<a href="https://redirect.github.com/meilisearch/meilisearch-js/issues/1691">#1691</a>) <a href="https://github.com/flevi29"><code>`@​flevi29</code></a></li>`
</ul>
<pre lang="js"><code>index.updateDocumentsByFunction({
    context: { ctx: 'Harry' },
    filter: 'id = 4',
    function: 'doc.comment = `Yer a wizard, ${context.ctx}!`',
  })
)
</code></pre>
<ul>
<li>Add language settings (<a href="https://redirect.github.com/meilisearch/meilisearch-js/issues/1693">#1693</a>) `@/flevi29</li>`
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/meilisearch/meilisearch-js/commit/bb4f53e079eddb6b00157e9a2f951f63837e10db"><code>bb4f53e</code></a> Merge <a href="https://redirect.github.com/meilisearch/meilisearch-js/issues/1695">#1695</a></li>
<li><a href="https://github.com/meilisearch/meilisearch-js/commit/9449574e0831681dd4e6ac1cba3929333d7e0b1b"><code>9449574</code></a> Merge <a href="https://redirect.github.com/meilisearch/meilisearch-js/issues/1682">#1682</a></li>
<li><a href="https://github.com/meilisearch/meilisearch-js/commit/3a8608b56020166779a6c3baf051a7e436dfaad5"><code>3a8608b</code></a> Add federated search parameters (<a href="https://redirect.github.com/meilisearch/meilisearch-js/issues/1689">#1689</a>)</li>
<li><a href="https://github.com/meilisearch/meilisearch-js/commit/30e833f98a0ece09d624829a3ac75bded50e9c75"><code>30e833f</code></a> Add capabilities to update documents by function (<a href="https://redirect.github.com/meilisearch/meilisearch-js/issues/1691">#1691</a>)</li>
<li><a href="https://github.com/meilisearch/meilisearch-js/commit/a2d46d57bbdaeeda6f141e0eebf40a3935155d2b"><code>a2d46d5</code></a> Merge pull request <a href="https://redirect.github.com/meilisearch/meilisearch-js/issues/1693">#1693</a> from flevi29/feature-lang-settings-search-params</li>
<li><a href="https://github.com/meilisearch/meilisearch-js/commit/74b48ab154dec72b02463c1b8df8b92993f694dc"><code>74b48ab</code></a> Update all snapshots</li>
<li><a href="https://github.com/meilisearch/meilisearch-js/commit/7780fdc639e1e22aca2bf488d45c0646b2d4f2f9"><code>7780fdc</code></a> Update snapshots</li>
<li><a href="https://github.com/meilisearch/meilisearch-js/commit/df7248be1b283ed257ea30ca607d2882c13bb0f8"><code>df7248b</code></a> Fix test</li>
<li><a href="https://github.com/meilisearch/meilisearch-js/commit/c8688b3503386a3e0285c01c169cbf59356b0fd8"><code>c8688b3</code></a> Remove test focus</li>
<li><a href="https://github.com/meilisearch/meilisearch-js/commit/238200b8ec5e30be93fda12eb05814ac76230c2a"><code>238200b</code></a> Make test more consistent with the rest, add locales type to SearchRequestGET</li>
<li>Additional commits viewable in <a href="https://github.com/meilisearch/meilisearch-js/compare/v0.38.0...v0.42.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.38.0&new-version=0.42.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>

> **Note**
> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.


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

meili-bors bot commented Oct 9, 2024

try

Build failed:

Copy link
Contributor

meili-bors bot commented Oct 9, 2024

Build failed:

  • cypress_meilisearch-api-key

@curquiza
Copy link
Member

curquiza commented Oct 9, 2024

Sorry to bother you @flevi29, if you have the time (not a priority), we have an issue with our tests here when we try to upgrade meilisearch-js

If it's not related to the breaking you introduced, feel free to ignore my message, I will investigate it later

@flevi29
Copy link
Contributor

flevi29 commented Oct 9, 2024

@curquiza Will look into it tomorrow.

@flevi29
Copy link
Contributor

flevi29 commented Oct 10, 2024

@curquiza I didn't manage to find the problem just yet. Seems like api key input doesn't render in a specific case.

@curquiza
Copy link
Member

@curquiza I didn't manage to find the problem just yet. Seems like api key input doesn't render in a specific case.

Thank you @flevi29
I will take care of it later then 😊

@flevi29
Copy link
Contributor

flevi29 commented Oct 11, 2024

@curquiza I can still look for it, but I'm not 100% sure I'll do it today.

@flevi29
Copy link
Contributor

flevi29 commented Oct 11, 2024

@curquiza Fixed in #553

@curquiza
Copy link
Member

Closed in favor of#553

@curquiza curquiza closed this Oct 14, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 14, 2024

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot bot deleted the dependabot/npm_and_yarn/meilisearch-0.42.0 branch October 14, 2024 09:51
meili-bors bot added a commit that referenced this pull request Oct 15, 2024
553: Bump meilisearch from 0.38.0 to 0.44.1 r=mdubus a=flevi29

Supersedes #540 

Co-authored-by: F. Levi <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file skip-changelog
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants