Skip to content

Commit bd86cbd

Browse files
bors[bot]meili-botbidoubiwa
authored
Merge #1013
1013: Changes related to the next MeiliSearch release (v0.23.0) r=bidoubiwa a=meili-bot Related to this issue: meilisearch/integration-guides#142 This PR: - gathers the changes related to the next MeiliSearch release (v0.23.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.23.0 is out. ⚠️ This PR should NOT be merged until the next release of MeiliSearch (v0.23.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: cvermand <[email protected]>
2 parents e56ded5 + ee89f94 commit bd86cbd

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

.code-samples.meilisearch.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -415,3 +415,28 @@ search_parameter_guide_sort_1: |-
415415
client.index('books').search('science fiction', {
416416
sort: ['price:asc'],
417417
})
418+
geosearch_guide_filter_settings_1: |-
419+
client.index('restaurants')
420+
.updateFilterableAttributes([
421+
'_geo'
422+
])
423+
geosearch_guide_filter_usage_1: |-
424+
client.index('restaurants').search('', {
425+
filter: ['_geoRadius(45.4628328, 9.1076931, 2000)'],
426+
})
427+
geosearch_guide_filter_usage_2: |-
428+
client.index('restaurants').search('', {
429+
filter: ['_geoRadius(45.4628328, 9.1076931, 2000) AND type = pizza'],
430+
})
431+
geosearch_guide_sort_settings_1: |-
432+
client.index('restaurants').updateSortableAttributes([
433+
'_geo'
434+
])
435+
geosearch_guide_sort_usage_1: |-
436+
client.index('restaurants').search('', {
437+
sort: ['_geoPoint(48.8583701,2.2922926):asc'],
438+
})
439+
geosearch_guide_sort_usage_2: |-
440+
client.index('restaurants').search('', {
441+
sort: ['_geoPoint(48.8583701,2.2922926):asc', 'rating:desc'],
442+
})

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ controller.abort()
297297

298298
## 🤖 Compatibility with MeiliSearch
299299

300-
This package only guarantees the compatibility with the [version v0.22.0 of MeiliSearch](https://github.com/meilisearch/MeiliSearch/releases/tag/v0.22.0).
300+
This package only guarantees the compatibility with the [version v0.23.0 of MeiliSearch](https://github.com/meilisearch/MeiliSearch/releases/tag/v0.23.0).
301301

302302
## 💡 Learn More
303303

0 commit comments

Comments
 (0)