diff --git a/README.md b/README.md index 88367b9b..8b39e592 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ Also, see our [Documentation](https://docs.meilisearch.com/learn/tutorials/getti ## 🤖 Compatibility with MeiliSearch -This package only guarantees the compatibility with the [version v0.21.0 of MeiliSearch](https://github.com/meilisearch/MeiliSearch/releases/tag/v0.21.0). +This package only guarantees the compatibility with the [version v0.22.0 of MeiliSearch](https://github.com/meilisearch/MeiliSearch/releases/tag/v0.22.0). ## 💡 Learn More diff --git a/tests/Integration/SettingsTest.php b/tests/Integration/SettingsTest.php index 53e27d2b..308d9be5 100644 --- a/tests/Integration/SettingsTest.php +++ b/tests/Integration/SettingsTest.php @@ -22,6 +22,7 @@ class SettingsTest extends BaseKernelTestCase 'typo', 'proximity', 'attribute', + 'sort', 'exactness', ]; @@ -85,7 +86,6 @@ public function testUpdateSettings(): void $this->assertEquals(['a', 'an', 'the'], $settings['stopWords']); $this->assertNotEmpty($settings['filterableAttributes']); - // commented until this bug is fixed: https://github.com/meilisearch/MeiliSearch/issues/1625 - // $this->assertEquals(['title', 'publishedAt'], $settings['filterableAttributes']); + $this->assertEquals(['publishedAt', 'title'], $settings['filterableAttributes']); } }