Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions tests/Integration/SettingsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ class SettingsTest extends BaseKernelTestCase
'typo',
'proximity',
'attribute',
'sort',
'exactness',
];

Expand Down Expand Up @@ -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']);
}
}