-
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 v0.28.0 #205
Labels
Meilisearch bump
Changes related to the Meilisearch bump version
Comments
brunoocasali
added
the
Meilisearch bump
Changes related to the Meilisearch bump version
label
Jun 8, 2022
This was referenced Jun 9, 2022
Merged
Merged
Merged
Merged
Merged
Merged
Merged
5 tasks
This was referenced Jun 15, 2022
This was referenced Jul 16, 2022
Closed
Add support to the facet setting customization at the index level
meilisearch/meilisearch-dotnet#295
Closed
Closed
Closed
Closed
Closed
Add support to the facet setting customization at the index level
meilisearch/meilisearch-python#496
Closed
Closed
Closed
bors bot
added a commit
to meilisearch/meilisearch-dotnet
that referenced
this issue
Jul 28, 2022
281: Changes related to the next Meilisearch release (v0.28.0) r=brunoocasali a=meili-bot Related to this issue: meilisearch/integration-guides#205 This PR: - gathers the changes related to the next Meilisearch release (v0.28.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 v0.28.0 is out.⚠️ This PR should NOT be merged until the next release of Meilisearch (v0.28.0) is out. _This PR is auto-generated for the [pre-release week](https://github.com/meilisearch/integration-guides/blob/master/guides/pre-release-week.md) purpose._ Done: - #282 - #286 - #287 - #288 - #289 - #290 - #291 - #292 - #293 - #298 Co-authored-by: meili-bot <[email protected]> Co-authored-by: Clémentine Urquizar <[email protected]> Co-authored-by: Amélie <[email protected]> Co-authored-by: alallema <[email protected]>
meili-bors bot
added a commit
to meilisearch/meilisearch-swift
that referenced
this issue
Aug 4, 2022
305: Changes related to the next Meilisearch release (v0.28.0) r=brunoocasali a=meili-bot Related to this issue: meilisearch/integration-guides#205 This PR: - gathers the changes related to the next Meilisearch release (v0.28.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 v0.28.0 is out.⚠️ This PR should NOT be merged until the next release of Meilisearch (v0.28.0) is out. _This PR is auto-generated for the [pre-release week](https://github.com/meilisearch/integration-guides/blob/master/guides/pre-release-week.md) purpose._ Co-authored-by: meili-bot <[email protected]> Co-authored-by: Bruno Casali <[email protected]>
bors bot
added a commit
to meilisearch/meilisearch-rust
that referenced
this issue
Aug 31, 2022
297: Changes related to the next Meilisearch release (v0.28.0) r=brunoocasali a=meili-bot Related to this issue: meilisearch/integration-guides#205 This PR: - gathers the changes related to the next Meilisearch release (v0.28.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 v0.28.0 is out.⚠️ This PR should NOT be merged until the next release of Meilisearch (v0.28.0) is out. _This PR is auto-generated for the [pre-release week](https://github.com/meilisearch/integration-guides/blob/master/guides/pre-release-week.md) purpose._ Co-authored-by: meili-bot <[email protected]> Co-authored-by: Charlotte Vermandel <[email protected]> Co-authored-by: cvermand <[email protected]>
This was referenced Dec 21, 2022
Let's close this one. Fantastic work, everyone (@meilisearch/integration-team)! ❤️ you're the best! |
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 v0.28.0 of Meilisearch that will impact the integrations team.
Release date: July 11, 2022
The whole milestone of v0.28.0 is here!
Changes related to the
keys
managementRelated to:
/keys
ressources meilisearch#2442All the changes:
GET /keys
has pagination metadata, addedlimit
(default: 20),offset
(default: 0),total
.GET /keys/:uid_or_key
can receive either a:uid
or:key
to find the key, not just the:key
how it used to be.DELETE /keys/:uid_or_key
can receive either a:uid
or:key
to find the key, not just the:key
how it used to be.PATCH /keys/:uid_or_key
can receive either a:uid
or:key
to find the key, not just the:key
how it used to be.:uid
to generate deterministic API keys ifnull
Meilisearch generates one. It must be a UUID v4 value.:name
attribute to the resource (can be null).keys.get
,keys.create
,keys.update
andkeys.delete
.PATCH /keys/:uid_or_key
can update onlyname
anddescription
fields.apiKeyPrefix
claim is now namedapiKeyUid
and expects the uid of the signing API key as a value.ReplacemasterKey
fromREADME.md
Getting started section (and others maybe?) with onlyapiKey
.Changes related to the
HTTP
verbsRelated to:
To be more compliant with the RESTful good practices we must change the following verbs:
PATCH
/indexes/{indexUid}
instead ofPUT
PATCH
/indexes/{indexUid}/settings
instead ofPOST
PATCH
/indexes/{indexUid}/settings/typo-tolerance
instead ofPOST
PUT
/indexes/{indexUid}/settings/displayed-attributes
instead ofPOST
PUT
/indexes/{indexUid}/settings/distinct-attribute
instead ofPOST
PUT
/indexes/{indexUid}/settings/filterable-attributes
instead ofPOST
PUT
/indexes/{indexUid}/settings/ranking-rules
instead ofPOST
PUT
/indexes/{indexUid}/settings/searchable-attributes
instead ofPOST
PUT
/indexes/{indexUid}/settings/sortable-attributes
instead ofPOST
PUT
/indexes/{indexUid}/settings/stop-words
instead ofPOST
PUT
/indexes/{indexUid}/settings/synonyms
instead ofPOST
Changes related to the
tasks
resourcesRelated to:
/tasks
endpoints meilisearch#2377All the changes:
GET /indexes/:indexUid/tasks
. UseGET /tasks?indexUid=:indexUid
instead.GET /indexes/:indexUid/tasks/:taskUid
. UseGET /tasks/:taskUid
instead.uid
totaskUid
in the202 - Accepted task
response return by every asynchronous tasks (ex: index creation, document addition...)indexUid
can benull
.GET /tasks
based in this specification usinglimit
,from
,next
metadata in the response.documentPartial
->documentAdditionOrUpdate
documentAddition
->documentAdditionOrUpdate
clearAll
->documentDeletion
GET /tasks
we can filter by:type
,status
andindexUid
.status
like this:enqueued,processing
.Changes related to the
search
Related to:
/search
endpoint meilisearch#2376All the changes:
nbHits
response parameter toestimatedTotalHits
.exhaustiveNbHits
response parameter.exhaustiveFacetsCount
response parameter.matches
request parameter is renamedshowMatchesPosition
._matchesInfo
response parameter is renamed_matchesPosition
.facetsDistribution
request parameter is renamedfacets
.facetsDistribution
response parameter is renamedfacetDistribution
.Changes related to the
indexes
resourcesRelated to:
Indexes
resources meilisearch#2373All the changes:
name
field in the index.results
key.GET /indexes
has pagination metadata, addedlimit
(default: 20),offset
(default: 0),total
.Changes related to the
documents
resourcesRelated to:
Documents
resources meilisearch#2372All the changes:
GET /documents/:uid
,GET /documents
Add the possibility to reduce the body payload by using a query parameter calledfields
(previously calledattributesToRetrieve
), check the issue and the spec for the entire behavior.results
key.GET /documents
has pagination metadata, addedlimit
(default: 20),offset
(default: 0),total
.displayedAttributes
settings do not impact anymore the displayed fields returned in the/documents
endpoints. These settings only affect the/search
endpoint.Changes related to the
dumps
resourcesRelated to:
task
meilisearch#2371All the changes:
get_dump_status_1
task
object from typedumpCreation
.dump_already_processing
don't need to be handled.Changes regarding the
smart crop
behaviorRelated to:
Fix tests regarding two new settings,
pagination
andfaceting
Related to:
According to the issues above, we must ensure our tests pass after adding the two new settings.
⚠️ These settings should not be implemented right now ⚠️ . We will do that later in coop between the Integrations team and our community ❤️.
Since we have some tests that rely on the result of the
GET /settings
API result, we should make them pass.The text was updated successfully, but these errors were encountered: