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

Tags: buildwithyab/laravel-scout-mysql-driver

Tags

v5.1.0

Toggle v5.1.0's commit message
Fix for fulltext w/where() not working

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

Toggle v5.0.0's commit message
Support scout v9

v4.0.0

Toggle v4.0.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update composer.json

v3.0.0

Toggle v3.0.0's commit message
Laravel 7 + Scout 8 support

According to: https://github.com/laravel/scout/blob/8.x/UPGRADE.md

v2.40

Toggle v2.40's commit message
added laravel ^6.0 support

v2.3.0

Toggle v2.3.0's commit message
fixed where null issue

v2.2.0

Toggle v2.2.0's commit message
Fix laravel/scout constraint

v2.1.0

Toggle v2.1.0's commit message
Improve Lumen support

v2.0.7

Toggle v2.0.7's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request #74 from DariusIII/patch-1

Add missing $results variable to map function declaration

v2.0.7-rc0

Toggle v2.0.7-rc0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request #49 from mattdfloyd/master

Implement mapIds()