Skip to content

v0.13.0 🎵

Compare
Choose a tag to compare
@meili-bot meili-bot released this 12 Jun 18:44
· 189 commits to refs/heads/main since this release
5795e6e

🚀 Enhancements

  • Fix deprecations (#259) @norkunas

  • Allow using services for settings (#253) @norkunas
    Define a service that implements Meilisearch\Bundle\SettingsProvider.
    And then use the new service definition in the meilisearch.yml config file:

    Example:

         ....
            - name: index_name
              class: 'Your\Path\Entity\IndexWithDynamicSettings'
              settings:
                  stopWords:
                      _service: '@Your\Path\Services\StopWords'
                  synonyms:
                      _service: '@Your\Path\Services\Synonyms'
    
          services:
              Your\Path\:
                  resource: '../Services/'

Thanks again to @norkunas! 🎉