From 2cc8125a5db0be2dba7f9e498805841dbe4a00a9 Mon Sep 17 00:00:00 2001 From: Pascal Baljet Date: Wed, 16 Feb 2022 13:13:25 +0100 Subject: [PATCH] Update CHANGELOG.md --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 13c54f9..a9f5898 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to `laravel-cross-eloquent-search` will be documented in this file +## 3.0.0 - 2022-02-16 + +* Support for Full-Text Search. +* The `get` method has been renamed to `search`. +* The `addWhen` method has been removed in favor of `when`. +* Support for custom *type* values when using the `includeModelType` method. +* By default, the results are sorted by the *updated* column, which is the `updated_at` column in most cases. If you don't use timestamps, it will now use the primary key by default. + ## 2.7.1 - 2022-02-10 - Add Conditionable trait to Searcher (thanks @Daanra!)