-
Notifications
You must be signed in to change notification settings - Fork 14
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
Changes regarding Meilisearch v1.4.0 #286
Labels
Meilisearch bump
Changes related to the Meilisearch bump version
Comments
brunoocasali
added
the
Meilisearch bump
Changes related to the Meilisearch bump version
label
Sep 5, 2023
This was referenced Sep 5, 2023
Merged
Closed
Closed
Closed
3 tasks
meili-bors bot
added a commit
to meilisearch/meilisearch-php
that referenced
this issue
Sep 25, 2023
574: Changes related to the next Meilisearch release (v1.4.0) r=curquiza a=alallema related to: meilisearch/integration-guides#286 Co-authored-by: alallema <[email protected]> Co-authored-by: Bruno Casali <[email protected]> Co-authored-by: Clémentine U. - curqui <[email protected]>
meili-bors bot
added a commit
to meilisearch/meilisearch-js
that referenced
this issue
Sep 25, 2023
1573: Changes related to the next Meilisearch release (v1.4.0) r=curquiza a=meili-bot Related to this issue: meilisearch/integration-guides#286 This PR: - gathers the changes related to the next Meilisearch release (v1.4.0) so that this package is ready when the official release is out. - should pass the tests against the [latest pre-release of Meilisearch](https://github.com/meilisearch/meilisearch/releases). - might eventually contain test failures until the Meilisearch v1.4.0 is out.⚠️ This PR should NOT be merged until the next release of Meilisearch (v1.4.0) is out. _This PR is auto-generated for the [pre-release week](https://github.com/meilisearch/integration-guides/blob/main/resources/pre-release-week.md) purpose._ Co-authored-by: meili-bot <[email protected]> Co-authored-by: Alexia Toulmet <[email protected]> Co-authored-by: Morgane Dubus <[email protected]> Co-authored-by: Clémentine U. - curqui <[email protected]>
meili-bors bot
added a commit
to meilisearch/meilisearch-ruby
that referenced
this issue
Sep 25, 2023
481: Changes related to the next Meilisearch release (v1.4.0) r=curquiza a=meili-bot Related to this issue: meilisearch/integration-guides#286 This PR: - gathers the changes related to the next Meilisearch release (v1.4.0) so that this package is ready when the official release is out. - should pass the tests against the [latest pre-release of Meilisearch](https://github.com/meilisearch/meilisearch/releases). - might eventually contain test failures until the Meilisearch v1.4.0 is out.⚠️ This PR should NOT be merged until the next release of Meilisearch (v1.4.0) is out. _This PR is auto-generated for the [pre-release week](https://github.com/meilisearch/integration-guides/blob/main/resources/pre-release-week.md) purpose._ Co-authored-by: meili-bot <[email protected]> Co-authored-by: Bruno Casali <[email protected]>
This was referenced Sep 27, 2023
This was referenced Sep 27, 2023
meili-bors bot
added a commit
to meilisearch/meilisearch-swift
that referenced
this issue
Sep 27, 2023
417: [1.4.0] Refactor Settings and Add Pagination, Separator and Dictionary Settings r=curquiza a=Sherlouk # Pull Request ## Related issue Fixes #308 Fixes changes raised under meilisearch/integration-guides#286 (#406) -⚠️ Wait for v1.4.0 ## What does this PR do? - Refactors index settings to improve reuse (functionally identical, but around 300 less lines of code) - Cleaning up some unsafe practices in unit tests - Adds support for three new types of index-level settings (improving parity) All integration tests have been run against v1.4.0 (pre-release) RC 2 and is running locally. CI uses the latest version of the executable (1.3.0) and thus will not work and will throw errors. This is expected. This PR won't be merged until after the 1.4.0 release due to Swift being a tier 3 project, as such we can simply re-run CI once that's released. This PR starts to contain a little bit of cleanup with some various nit picks (nothing that changes the code style though). ## PR checklist Please check if your PR fulfills the following requirements: - [x] Does this PR fix an existing issue, or have you listed the changes applied in the PR description (and why they are needed)? - [x] Have you read the contributing guidelines? - [x] Have you made sure that the title is accurate and descriptive of the changes? Thank you so much for contributing to Meilisearch! Co-authored-by: James Sherlock <[email protected]>
I close this issue since everything has been done for v1.4.0 on integration side |
7 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This issue gathers the changes related to the v1.4.0 of Meilisearch that will impact the integrations team.
📅 Release date: Sep 25th, 2023
The whole milestone of v1.4.0 is here!
tier #1
. Some of the features described may be done fortier #2
but will not be ready for the release day. Check the features below to understand which tier will receive which feature.🖖 Click here to check the current tiers state of the integrations:
Understand everything about tiers here.
Customize text separator
Related to:
Adapts Meilisearch to specific term nomenclature and thus covers more use cases by adding customization to the engine.
Make Meilisearch more customizable and adaptable to different types of data set content and, therefore, different use cases by letting them configure the separators to be indexed.
What needs to be changed:
separatorTokens
andnonSeparatorTokens
withget
,update
, andreset
methods/settings
API to enable the possibility to receive in the payload the two new configurationsseparatorTokens
andnonSeparatorTokens
blueprint of the methods:
Load a user-defined dictionary
Related to:
Some Languages are not always space-separated (Chinese, Japanese, Korean...), forcing Meilisearch to rely on common word dictionaries to segment a text into words. However, this strategy only segments common words and struggles when a text contains domain-specific, technical, or People Nouns.
Because it is impossible to have an exhaustive list of words of all the possible domains or a complete list of Nouns, Meilisearch should allow users to add their list of words specialized for their use case.
What needs to be changed:
dictionary
withget
,update
, andreset
methods/settings
API to enable the possibility of receiving in the payload fordictionary
The text was updated successfully, but these errors were encountered: