Skip to content
This repository has been archived by the owner on Jan 9, 2024. It is now read-only.

Releases: yabhq/laravel-scout-mysql-driver

v5.1.0: Fix for fulltext w/where() not working

08 Dec 05:54
Compare
Choose a tag to compare
When using fulltext search + where() clause(s) in place even when I knew the combination should bring entries none was retrieved.

I found that the $params array get populated in the wrong order.

Eg;

select *, MATCH(name,email,data) AGAINST(? IN NATURAL LANGUAGE MODE) AS relevance from `users` where guid = ? AND MATCH(name,email,data) AGAINST(? IN BOOLEAN MODE)

array:2 [▼
  "guid" => "9260a604-22b6-4075-891e-a82d52ba69fe"
  0 => "text2search4"
]

after ksort($params,SORT_NATURAL); the $params lists gets;

array:2 [▼
  0 => "text2search4"
  "guid" => "9260a604-22b6-4075-891e-a82d52ba69fe"
]

v5.0.0

12 Aug 05:30
Compare
Choose a tag to compare
Support scout v9

Fixes #98

16 Apr 05:35
f63480b
Compare
Choose a tag to compare
v4.0.0

Update composer.json

v3.0.0: Laravel 7 + Scout 8 support

11 Mar 08:08
Compare
Choose a tag to compare
According to: https://github.com/laravel/scout/blob/8.x/UPGRADE.md

v2.40

06 Sep 17:15
Compare
Choose a tag to compare
added laravel ^6.0 support

v2.3.0

16 Mar 05:54
Compare
Choose a tag to compare
fixed where null issue

Scout v7 support

13 Mar 09:30
Compare
Choose a tag to compare
v2.2.0

Fix laravel/scout constraint

With Scout 6 and relaxed dependencies of laravel

11 Dec 10:57
Compare
Choose a tag to compare

v2.0.7: Merge pull request #74 from DariusIII/patch-1

17 Oct 06:30
b039768
Compare
Choose a tag to compare
Add missing $results variable to map function declaration

Implemented mapIds

16 Oct 10:46
fc2418d
Compare
Choose a tag to compare
Merge pull request #49 from mattdfloyd/master

Implement mapIds()