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 module github.com/meilisearch/meilisearch-go to v0.28.0 - autoclosed #40

Closed

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 17, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
github.com/meilisearch/meilisearch-go v0.26.0 -> v0.28.0 age adoption passing confidence

Release Notes

meilisearch/meilisearch-go (github.com/meilisearch/meilisearch-go)

v0.28.0: 🐹

Compare Source

⚠️ Breaking changes

  • Refactor meilisearch client wtih new client and documentation (#​556 ) @​Ja7ad
// Before
client := meilisearch.NewClient(meilisearch.ClientConfig{
	client := meilisearch.New("http://localhost:7700", meilisearch.WithAPIKey("foobar"))
                Host: "http://127.0.0.1:7700",

                APIKey: "masterKey",
        })

// Now
client := meilisearch.New("http://localhost:7700", meilisearch.WithAPIKey("foobar"))
  • Feat sort facets value by alphanumerical (SortFacetTypeAlpha) or count order (SortFacetTypeCount) (#​558) @​Ja7ad

Before:

// Before
client.Index("movies").UpdateFaceting(&meilisearch.Faceting{
      MaxValuesPerFacet: 2,
      SortFacetValuesBy: {
         "*": "count",
      }
  })

// Now
client.Index("movies").UpdateFaceting(&meilisearch.Faceting{
      MaxValuesPerFacet: 2,
      SortFacetValuesBy: {
         "*": SortFacetTypeCount,
      }
  })
  • Feat accept the frequency (Frequency) value for the matchingStrategy search (#​565) @​Ja7ad
// Before
resp, err := client.Index("movies").Search("big fat liar", &meilisearch.SearchRequest{
    MatchingStrategy:   "last",
})
// or
resp, err := client.Index("movies").Search("big fat liar", &meilisearch.SearchRequest{
    MatchingStrategy:   "all",
})

// Now
resp, err := client.Index("movies").Search("big fat liar", &meilisearch.SearchRequest{
    MatchingStrategy: Last,
})
// or
resp, err := client.Index("movies").Search("big fat liar", &meilisearch.SearchRequest{
    MatchingStrategy:   All,
})

🚀 Enhancements

⚙️ Maintenance/misc

v0.27.2: 🐹

Compare Source

🚀 Enhancements

🐛 Bug Fixes

Thanks again to @​Ja7ad, ! 🎉

v0.27.1: 🐹

Compare Source

🚀 Enhancements

🐛 Bug Fixes

Thanks again to @​Ja7ad, @​curquiza, and @​migueltarga! 🎉

v0.27.0: 🐹

Compare Source

⚠️ Breaking changes

Breaking because Meilisearch v1.9 is breaking regarding vector display at search for the Hybrid search experimental feature. More detail in the v1.9 changelog

  • Changes related to the next Meilisearch release (v1.9.0) (#​535)
    • Introduction of the retrieveVectors parameter at search -> when true, the display of the previous version is kept. Use it to avoid any breaking.

v0.26.3: 🐹

Compare Source

🚀 Enhancements

🐛 Bug Fixes

⚙️ Maintenance/misc

Thanks again to @​LGXerxes, @​Tommy-42, @​brunoocasali, @​curquiza, @​jackielii, @​thisisdev-patrick! 🎉

v0.26.2: 🐹

Compare Source

🚀 Enhancements

  • Enable to use DeleteDocumentsByFilter through IndexInterface (#​511) @​yuku

Thanks again to and @​yuku! 🎉

v0.26.1: 🐹

Compare Source

🚀 Enhancements

⚙️ Maintenance/misc

  • Update tests related to the next Meilisearch release (v1.6.0) (#​503)

Thanks again to @​brunoocasali, @​curquiza, @​fitimvata, ! 🎉


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 force-pushed the renovate/github.com-meilisearch-meilisearch-go-0.x branch from 8e69ac7 to 9f50009 Compare February 19, 2024 13:09
@renovate renovate bot changed the title fix(deps): update module github.com/meilisearch/meilisearch-go to v0.26.1 fix(deps): update module github.com/meilisearch/meilisearch-go to v0.26.2 Feb 19, 2024
@renovate renovate bot force-pushed the renovate/github.com-meilisearch-meilisearch-go-0.x branch from 9f50009 to 1448f43 Compare May 6, 2024 15:52
@renovate renovate bot changed the title fix(deps): update module github.com/meilisearch/meilisearch-go to v0.26.2 fix(deps): update module github.com/meilisearch/meilisearch-go to v0.26.3 May 6, 2024
@renovate renovate bot force-pushed the renovate/github.com-meilisearch-meilisearch-go-0.x branch from 1448f43 to 6b9a58c Compare July 4, 2024 23:36
@renovate renovate bot changed the title fix(deps): update module github.com/meilisearch/meilisearch-go to v0.26.3 fix(deps): update module github.com/meilisearch/meilisearch-go to v0.27.0 Jul 4, 2024
@renovate renovate bot force-pushed the renovate/github.com-meilisearch-meilisearch-go-0.x branch from 6b9a58c to 5491b31 Compare July 30, 2024 10:48
@renovate renovate bot changed the title fix(deps): update module github.com/meilisearch/meilisearch-go to v0.27.0 fix(deps): update module github.com/meilisearch/meilisearch-go to v0.27.1 Jul 30, 2024
@renovate renovate bot force-pushed the renovate/github.com-meilisearch-meilisearch-go-0.x branch from 5491b31 to c8927c5 Compare August 3, 2024 16:09
@renovate renovate bot changed the title fix(deps): update module github.com/meilisearch/meilisearch-go to v0.27.1 fix(deps): update module github.com/meilisearch/meilisearch-go to v0.27.2 Aug 3, 2024
@renovate renovate bot force-pushed the renovate/github.com-meilisearch-meilisearch-go-0.x branch from c8927c5 to e6bb325 Compare August 21, 2024 17:15
@renovate renovate bot changed the title fix(deps): update module github.com/meilisearch/meilisearch-go to v0.27.2 fix(deps): update module github.com/meilisearch/meilisearch-go to v0.28.0 Aug 21, 2024
@renovate renovate bot changed the title fix(deps): update module github.com/meilisearch/meilisearch-go to v0.28.0 fix(deps): update module github.com/meilisearch/meilisearch-go to v0.28.0 - autoclosed Sep 3, 2024
@renovate renovate bot closed this Sep 3, 2024
@renovate renovate bot deleted the renovate/github.com-meilisearch-meilisearch-go-0.x branch September 3, 2024 02:02
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