Skip to content

build(deps): bump laravel/scout from 10.24.0 to 11.4.0#314

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/composer/laravel/scout-11.4.0
Open

build(deps): bump laravel/scout from 10.24.0 to 11.4.0#314
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/composer/laravel/scout-11.4.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 22, 2026

Copy link
Copy Markdown
Contributor

Bumps laravel/scout from 10.24.0 to 11.4.0.

Release notes

Sourced from laravel/scout's releases.

v11.4.0

v11.3.0

v11.2.0

v11.1.0

v11.0.0

v10.25.0

Changelog

Sourced from laravel/scout's changelog.

v11.4.0 - 2026-07-21

v11.3.0 - 2026-06-16

v11.2.0 - 2026-05-13

v11.1.0 - 2026-03-18

v11.0.0 - 2026-03-10

Upgrade guide

Sourced from laravel/scout's upgrade guide.

Upgrade Guide

Upgrading To 11.0 From 10.x

Builder wheres Property and Custom Engines

In previous Scout releases, the wheres property on the Builder instance was a simple key / value associative array. In Scout 11.x, the wheres property is now an array of arrays, with each entry containing field, operator, and value keys. This change was made to support comparison operators such as >, <, >=, <=, and != via the where method:

User::search('*')->where('age', '>', 30)->get();

If you are directly accessing the wheres property within a custom engine, you should update your code to handle the new format:

- foreach ($builder->wheres as $field => $value) {
-     // ...
- }
+ foreach ($builder->wheres as $where) {
+     $field = $where['field'];
+     $operator = $where['operator'];
+     $value = $where['value'];
+
+     // ...
+ }

Algolia Engine filters

PR: laravel/scout#839

In previous Scout releases, the Algolia engine utilized numericFilters to power where conditions. However, numericFilters does not support simple string matching. In Scout 11.x, filters is now used instead of numericFilters.

Meilisearch Engine scout:delete-all-indexes Command

In previous releases, the Meilisearch engine’s scout:delete-all-indexes command would drop all indexes from the Meilisearch server. In Scout 11.x, the command now only drops indexes with the application's currently configured Scout prefix. Typically, this corresponds to the SCOUT_PREFIX environment variable and / or the scout.prefix configuration value.

Upgrading To 10.0 From 9.x

Minimum Versions

The following dependency versions have been updated:

  • The minimum PHP version is now v8.0
  • The minimum Laravel version is now v9.0

The getScoutKeyName Method

PR: laravel/scout#509

... (truncated)

Commits
  • 1f091e5 Update Scout.php
  • 5b90ded [11.x] Add ability to adjust scout:queue-import order via --order=desc op...
  • 4ad9e8f Mark Scout jobs as failed on timeout by default (#1002)
  • c8f58fa Bump actions/checkout from 6.0.3 to 7.0.0 in the github-actions group (#1000)
  • 49f25d4 Bump shivammathur/setup-php in the github-actions group (#999)
  • b6f4481 Update CHANGELOG
  • 7d0903e Update Scout.php
  • 78f792b Bump actions/checkout from 6.0.2 to 6.0.3 in the github-actions group (#997)
  • 763b25b Add opt-in unique indexing jobs to prevent Scout reindexing already queued mo...
  • 53e115a Enable Dependabot auto-merge (#995)
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file php Pull requests that update Php code labels Jul 22, 2026
Bumps [laravel/scout](https://github.com/laravel/scout) from 10.24.0 to 11.4.0.
- [Release notes](https://github.com/laravel/scout/releases)
- [Changelog](https://github.com/laravel/scout/blob/11.x/CHANGELOG.md)
- [Upgrade guide](https://github.com/laravel/scout/blob/11.x/UPGRADE.md)
- [Commits](laravel/scout@v10.24.0...v11.4.0)

---
updated-dependencies:
- dependency-name: laravel/scout
  dependency-version: 11.4.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/composer/laravel/scout-11.4.0 branch from f6a5b8b to dcfc9d0 Compare July 22, 2026 08:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file php Pull requests that update Php code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants