Skip to content

Release 0.7.0 (2025-02-28)

Latest
Compare
Choose a tag to compare
@alexander-schranz alexander-schranz released this 28 Feb 17:55
· 1 commit to 0.7 since this release
e82cda0

SEAL 0.7.0

SEAL Logo with an abstract seal sitting on a telescope.
Logo created by Meine Wilma

What's Changed

Full Changelog: 0.6.1...0.7.0

With this new release you can use the highlight method to get additional _formatted data with the matched string:

$result = $this->engine->createSearchBuilder('blog')
    ->addFilter(new Condition\SearchCondition('Search Term'))
    ->highlight(
        fields: ['title', 'description'],
        preTag: '<mark>',
        postTag: '</mark>',
    )

This is supported by all Adapter with the exception of Redisearch see: #491