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

fix(deps): update dependency meilisearch to ^0.45.0 - autoclosed #39

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 20, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
meilisearch ^0.35.0 -> ^0.45.0 age adoption passing confidence

Release Notes

meilisearch/meilisearch-js (meilisearch)

v0.45.0: 🌻

Compare Source

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

⚠️ Breaking changes (experimental feature only)

🚀 Enhancements

⚙️ Maintenance/misc

Thanks again to @​Barabasbalazs, @​brunoocasali, @​curquiza, @​mdubus! 🎉

v0.44.1: 🌻

Compare Source

🐛 Bug Fixes

Thanks again to @​flevi29 and @​knd775 for the report! 🎉

v0.44.0: 🌻

Compare Source

⚠️ Breaking changes

  • Add package.json "exports" field (#​1611) @​flevi29
    Could be a breaking change for anyone who was importing anything other than what we have in the "exports" package.json field.

⚙️ Maintenance/misc

Thanks again to @​flevi29, @​meili-bors[bot] ! 🎉

v0.43.0: 🌻

Compare Source

⚠️ Breaking changes

🔒 Security

  • build(deps): bump elliptic from 6.5.4 to 6.5.7 in /playgrounds/javascript (#​1699)
  • build(deps): bump serve-static from 1.14.1 to 1.16.2 in /playgrounds/javascript (#​1700)

⚙️ Maintenance/misc

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

v0.42.0: 🌻

Compare Source

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
client.index('INDEX_NAME').updateLocalizedAttributes([
    { attributePatterns: ['jpn'], locales: ['*_ja'] },
];)
client.index('INDEX_NAME').search('進撃の巨人', { locales: ['jpn'] })

⚙️ Maintenance/misc

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

v0.41.0: 🌻

Compare Source

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

🚀 Enhancements
client.index('movies').search('interstellar', { matchingStrategy: MatchingStrategies.FREQUENCY });
client.index('movies').search('badman', { rankingScoreThreshold: 0.2 });
client.index('movies').searchGet('badman', { rankingScoreThreshold: 0.2 });
client.index('movies').search('', { distinct: 'genre' });
client.index('movies').searchSimilarDocuments({ id: 'target-document-id' });
client.index('movies').getDocuments({ retrieveVectors: true });
🔒 Security
  • build(deps): bump ws from 5.2.3 to 5.2.4 in /playgrounds/javascript (#​1672)
⚙️ Maintenance/misc

Thanks again to @​brunoocasali, @​curquiza, @​flevi29, @​mdubus, and @​the-sinner! 🎉

v0.40.0: 🌻

Compare Source

💥 Breaking Changes

  • Fix the issue introduced in the v0.39 that affected vite apps https://github.com/meilisearch/meilisearch-js/pull/1652 @​brunoocasali
  • Now to use the generateTenantToken you should use it with await:
    before:
    const token = client.generateTenantToken(apiKeyUid, searchRules, {
        apiKey: apiKey,
        expiresAt: expiresAt,
      })
    after:
    const token = await client.generateTenantToken(apiKeyUid, searchRules, {
        apiKey: apiKey,
        expiresAt: expiresAt,
      })

⚙️ Maintenance/misc

Thanks again to @​brunoocasali, @​mdubus! 🎉

v0.39.0: 🌻

Compare Source

🚀 Enhancements

⚠️ if you're using vite to build your front-end app, you must add this to your configuration (see more info here https://github.com/meilisearch/meilisearch-js/issues/1649)

export default defineConfig({
  plugins: [vue()],
  build: {
    rollupOptions: {
      external: ['crypto'], // this is the important part
    },
  },
})

Otherwise, you'll face errors like Module "crypto" has been externalized for browser compatibility.

⚙️ Maintenance/misc

Thanks again to @​amit-ksh, @​brunoocasali, @​curquiza, @​flevi29, @​mdubus! 🎉

v0.38.0: 🌻

Compare Source

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

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

⚠️ Breaking changes

  • Update Node.js versions that are used in tests (#​1620) @​flevi29
  • scoreDetails feature is not experimental anymore. You can directly use showRankingScoreDetails during a search without activating the experimental feature 🎉

🚀 Enhancements

v0.37.0: 🌻

Compare Source

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] ! 🎉

v0.36.0: 🌻

Compare Source

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

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

🚀 Enhancements

  • Needs Meilisearch v1.5.0 -> Add new method createSnapshot() to trigger snapshot creation. Similar to the already existing createDump() for dumps (#​1603) @​brunoocasali

v0.35.1: 🌻

Compare Source

🚀 Enhancements

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


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot changed the title fix(deps): update dependency meilisearch to ^0.36.0 fix(deps): update dependency meilisearch to ^0.37.0 Jan 15, 2024
@renovate renovate bot changed the title fix(deps): update dependency meilisearch to ^0.37.0 fix(deps): update dependency meilisearch to ^0.38.0 Mar 11, 2024
@renovate renovate bot force-pushed the renovate/meilisearch-0.x branch from 1294f59 to 2746da7 Compare March 11, 2024 14:31
@renovate renovate bot force-pushed the renovate/meilisearch-0.x branch from 2746da7 to 9d877bd Compare May 6, 2024 13:51
@renovate renovate bot changed the title fix(deps): update dependency meilisearch to ^0.38.0 fix(deps): update dependency meilisearch to ^0.39.0 May 6, 2024
@renovate renovate bot changed the title fix(deps): update dependency meilisearch to ^0.39.0 fix(deps): update dependency meilisearch to ^0.40.0 May 15, 2024
@renovate renovate bot force-pushed the renovate/meilisearch-0.x branch from 9d877bd to 674c6cc Compare May 15, 2024 18:06
@renovate renovate bot force-pushed the renovate/meilisearch-0.x branch from 674c6cc to 200f172 Compare July 1, 2024 17:17
@renovate renovate bot changed the title fix(deps): update dependency meilisearch to ^0.40.0 fix(deps): update dependency meilisearch to ^0.41.0 Jul 1, 2024
@renovate renovate bot force-pushed the renovate/meilisearch-0.x branch from 200f172 to a417b5a Compare August 26, 2024 14:49
@renovate renovate bot changed the title fix(deps): update dependency meilisearch to ^0.41.0 fix(deps): update dependency meilisearch to ^0.42.0 Aug 26, 2024
@renovate renovate bot changed the title fix(deps): update dependency meilisearch to ^0.42.0 fix(deps): update dependency meilisearch to ^0.43.0 Oct 2, 2024
@renovate renovate bot force-pushed the renovate/meilisearch-0.x branch 2 times, most recently from d2382e3 to efe5d12 Compare October 3, 2024 12:52
@renovate renovate bot changed the title fix(deps): update dependency meilisearch to ^0.43.0 fix(deps): update dependency meilisearch to ^0.44.0 Oct 3, 2024
@renovate renovate bot changed the title fix(deps): update dependency meilisearch to ^0.44.0 fix(deps): update dependency meilisearch to ^0.45.0 Oct 28, 2024
@renovate renovate bot changed the title fix(deps): update dependency meilisearch to ^0.45.0 fix(deps): update dependency meilisearch to ^0.45.0 - autoclosed Nov 16, 2024
@renovate renovate bot closed this Nov 16, 2024
@renovate renovate bot deleted the renovate/meilisearch-0.x branch November 16, 2024 20:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants