Skip to content

Releases: pdphilip/laravel-elasticsearch

v4.5.3

19 Mar 23:16

Choose a tag to compare

This release is compatible with Laravel 10 and 11

Bug fix

  • Bug fix with nested of nested queries
  • Minor bug in a few options when chaining: Tag: v4.5.2

Full Changelog: v4.5.1...v4.5.3

v5.0.0-RC2

17 Mar 20:21

Choose a tag to compare

v5.0.0-RC2 Pre-release
Pre-release

This second release candidate of V5 brings in Laravel 12 compatibility along with a few bug fixes

What's Changed

  • Small Bug Fixes found in RC1 by @use-the-fork in #60

Full Changelog: v5.0.0-RC1...v5.0.0-RC2

v5.0.0-RC1

13 Mar 23:23

Choose a tag to compare

v5.0.0-RC1 Pre-release
Pre-release

This is the first release candidate of V5, a near-complete rewrite of the Laravel-Elasticsearch package. This update delivers a more seamless integration with Laravel’s Models, Eloquent, and Query Builders while providing greater access to Elasticsearch’s advanced features.

V5 introduces significant breaking changes, major upgrades, and new functionality. A full breakdown will be available in the updated documentation upon the final release.

The current RC is compatible with Laravel 10 and 11, while the final 5.0.0 release will support Laravel 12 as well.

Special thanks to @use-the-fork for initiating this rebuild and laying the groundwork (and then some) for this major release.

What's Changed

  • V5.0.0 by @use-the-fork in #54

Full Changelog: v4.5.1...v5.0.0-RC1

v4.5.1

11 Mar 23:19

Choose a tag to compare

This release is compatible with Laravel 10 and 11

What's Changed

  • Add updateOrCreate and updateOrCreateWithoutRefresh methods by @IonutRusen in #57
  • refactor: update the return type of getConnection() by @shalomabitan in #58

New Contributors

Full Changelog: v4.5.0...v4.5.1

v4.5.0

17 Oct 21:32

Choose a tag to compare

This release is for compatibility with both Laravel 10 and 11, and marks a version bump to 4.5.0.

New features

1. Bypass field map validation for queries that require keyword mapping

Keyword type queries are checked by default and will select the keyword sub-mapping if it is found; however, this invokes an extra query to check the mapping first.

You can now disable this by setting options.bypass_map_validation = true

'elasticsearch' => [
    ......
     'options' => [
        'bypass_map_validation' => env('ES_OPT_BYPASS_MAP_VALIDATION', false),
         .....
    ],
    .....
],

2. Adjustable chunk size for bulk insert (default 1000)

When performing bulk inserts, the default is 1000 at a time.

You can now adjust this by setting options.insert_chunk_size to your desired amount.

'elasticsearch' => [
    ......
    'options' => [
        'insert_chunk_size'  => env('ES_OPT_INSERT_CHUNK_SIZE', 1000),
         .....
    ],
    .....
],

Updated connection config

'elasticsearch' => [
    'driver' => 'elasticsearch',
    'auth_type' => env('ES_AUTH_TYPE', 'http'), //http or cloud
    'hosts' => explode(',', env('ES_HOSTS', 'http://localhost:9200')),
    'username' => env('ES_USERNAME', ''),
    'password' => env('ES_PASSWORD', ''),
    'cloud_id' => env('ES_CLOUD_ID', ''),
    'api_id' => env('ES_API_ID', ''),
    'api_key' => env('ES_API_KEY', ''),
    'ssl_cert' => env('ES_SSL_CA', ''),
    'ssl' => [
        'cert' => env('ES_SSL_CERT', ''),
        'cert_password' => env('ES_SSL_CERT_PASSWORD', ''),
        'key' => env('ES_SSL_KEY', ''),
        'key_password' => env('ES_SSL_KEY_PASSWORD', ''),
    ],
    'index_prefix' => env('ES_INDEX_PREFIX', false),
    'options' => [
        'bypass_map_validation' => env('ES_OPT_BYPASS_MAP_VALIDATION', false),
        'insert_chunk_size' => env('ES_OPT_INSERT_CHUNK_SIZE', 1000),
        'logging' => env('ES_OPT_LOGGING', false),
        'allow_id_sort' => env('ES_OPT_ID_SORTABLE', false),
        'ssl_verification' => env('ES_OPT_VERIFY_SSL', true),
        'retires' => env('ES_OPT_RETRIES', null),
        'meta_header' => env('ES_OPT_META_HEADERS', true),
    ],
    'error_log_index' => env('ES_ERROR_INDEX', false),
],

3. Removed redundant methods, new exceptions and code clean by @use-the-fork via #48

Full Changelog: v4.4.1...v4.5.0

v4.4.1

05 Oct 10:08

Choose a tag to compare

Bug fix

  • Dynamic indices field map check - issue: #47

Full Changelog: v4.4.0...v4.4.1

v4.4.0

02 Oct 09:30

Choose a tag to compare

This release introduces compatibility with both Laravel 10 and 11, and marks a version bump to 4.4.0.

While there are no breaking changes, the connection class has been fully rebuilt by @use-the-fork. This foundational improvement justifies the version increment and sets the stage for further enhancements.

What's Changed

  • Refract/connection by @use-the-fork in #46

Full Changelog: v4.3.0...v4.4.0

v4.3.0

23 Sep 13:07

Choose a tag to compare

This release marks a version bump within the 4.x branch due to one breaking change in rawSearch(). This branch is committed to Laravel 10 and 11 compatibility.

Breaking Change

rawSearch($bodyParams, $returnRaw = false) has now been split into rawSearch($bodyParams) and rawDsl($bodyParams) where:

  • rawSearch($bodyParams) returns an ElasticCollection of results
  • rawDsl($bodyParams) returns the result body as is from Elasticsearch. Equivalent to $returnRaw = true previously.

New features

[1] Schema field mapping call: getFieldMapping(string|array $field = '*', $raw = false)

Schema method that can be called from your model:

Product::getFieldMapping('color'); //Returns a key/value array of field/types for color
Product::getFieldMapping('color',true); //Returns the mapping for  color field as is from Elasticsearch
Product::getFieldMapping(['color','name']); //Returns maapings for  color and name
Product::getFieldMapping(); //returns all field mappings, same as getFieldMapping('*')

or via Schema: Schema::getFieldMapping($index, $field, $raw)

Schema::getFieldMapping('products','color',true); 

[2] Order By Random: orderByRandom(string $column, int $seed = 1)

Uses ES's random_score to randomise ordering

Product::where('color', 'silver')->orderByRandom('created_at', rand(1, 1000))->limit(5)->get();

The value of $seed will return the same results if unchanged. This is required for consistencey, ex: pagination

Bug fix

whereExact() keyword field validator has been fixed

PRs

  • Refract/code coverage - Coverage up to 79% by @use-the-fork in #40
  • fix(DSL): improve keyword mapping handling for nested fields by @use-the-fork in #43
  • feat(elasticsearch): enhance raw search functionality by @use-the-fork in #44

Full Changelog: v4.2.0...v4.3.0

v4.2.0

16 Sep 15:09

Choose a tag to compare

This release marks a version bump within the 4.x branch committed to Laravel 10 & 11 compatibility. There are no breaking changes from 4.1.x

This version introduces query-building methods to allow matching across multiple fields: ES docs

The current search builder works in isolation for full-text searching; this upgrade brings those features into the standard query builder that will run like a normal query. Meaning you can:
get(), first(), aggregate(), paginate() etc on full text search results. In time, this will replace the current search methods like: Book::term('Eric')->search();

Methods

searchTerm($term, $fields = ['*'], $options = []) - type: best_fields
searchTermMost($term, $fields = ['*'], $options = []) type: most_fields
searchTermCross($term, $fields = ['*'], $options = []) type: cross_fields
searchPhrase($phrase, $fields = ['*'], $options = []) type: phrase
searchPhrasePrefix($phrase, $fields = ['*'], $options = []) type: phrase_prefix
searchBoolPrefix($phrase, $fields = ['*'], $options = []) type: bool_prefix

Each method has a corresponding OR version, ex orSearchPhrase('Laravel Elasticsearch')

These methods will introduce an Elasticsearch score and will be ordered by score by default.

$fields: By default, all fields will be searched through; you can specify which as well as boost certain fields, ex:

People:searchTerm('John',['name^3','description^2','friends.name'])->get();

$options: Allows you to set any options for the multi_match clause to use, ex:
analyzer, boost, operator, minimum_should_match, fuzziness, lenient, prefix_length, max_expansions, fuzzy_rewrite, zero_terms_query.

searchFor($value) is a convenience method that will either use term or phrase depending on the word count of $value

withHighlights($fields = [], $preTag = '<em>', $postTag = '</em>', $globalOptions = [])

Option helpers

asFuzzy()

  • Will mark the previous clause as fuzzy

setMinShouldMatch(int $value)

  • will set the option {"minimum_should_match": $value} to the previous clause

setBoost(int $value)

  • will set the option {"boost": $value} to the previous clause

Examples

Product::searchTerm('remarkble')->asFuzzy()->withHighlights()->get();
Product::searchPhrasePrefix('coffee bea')->where('is_active',true)->paginate();
Product::searchPhrase('United States')->orSearchPhrase('United Kingdom')->sum('orders');

Upgrades

find($id), findOrFail($id) and findOrNew($id) now uses the ES get call directly ie: /my_index/_doc/my_id

  • With findOrNew($id): If the $id was not found, then it will return a new model instance with the $id value as provided
  • Credit @use-the-fork via #41

Full Changelog: v4.1.1...v4.2.0

v4.1.1

06 Sep 16:13

Choose a tag to compare

Bug fix

  • Bulk insert now returns _id in the error payload

Full Changelog: v4.1.0...v4.1.1