Skip to content

Commit

Permalink
Merge branch 'main' into fix/tasks-reverse-test
Browse files Browse the repository at this point in the history
  • Loading branch information
curquiza authored Dec 24, 2024
2 parents ab15e11 + 78879c2 commit 6bf667b
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
18 changes: 17 additions & 1 deletion .code-samples.meilisearch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ update_displayed_attributes_1: |-
]);
reset_displayed_attributes_1: |-
$client->index('movies')->resetDisplayedAttributes();
get_typo_tolerance_1:
get_typo_tolerance_1: |-
$client->index('books')->getTypoTolerance();
update_typo_tolerance_1: |-
$client->index('books')->updateTypoTolerance([
Expand Down Expand Up @@ -775,3 +775,19 @@ update_localized_attribute_settings_1: |-
]);
reset_localized_attribute_settings_1: |-
$client->index('INDEX_NAME')->resetLocalizedAttributes();
get_facet_search_settings_1: |-
$client->index('INDEX_NAME')->getFacetSearch();
update_facet_search_settings_1: |-
$client->index('INDEX_NAME')->updateFacetSearch(false);
reset_facet_search_settings_1: |-
$client->index('INDEX_NAME')->resetFacetSearch();
get_prefix_search_settings_1: |-
$client->index('INDEX_NAME')->getPrefixSearch();
update_prefix_search_settings_1: |-
$client->index('INDEX_NAME')->updatePrefixSearch('disabled');
reset_prefix_search_settings_1: |-
$client->index('INDEX_NAME')->resetPrefixSearch();
get_all_batches_1: |-
$client->getBatches();
get_batch_1: |-
$client->getBatch(BATCH_UID);
2 changes: 1 addition & 1 deletion src/Meilisearch.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

class Meilisearch
{
public const VERSION = '1.11.0';
public const VERSION = '1.12.0';

/**
* @return non-empty-string
Expand Down
1 change: 1 addition & 0 deletions tests/Endpoints/BatchesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,5 +68,6 @@ public function testGetOneBatch(): void
self::assertArrayHasKey('duration', $response);
self::assertArrayHasKey('startedAt', $response);
self::assertArrayHasKey('finishedAt', $response);
self::assertArrayHasKey('progress', $response);
}
}

0 comments on commit 6bf667b

Please sign in to comment.