Skip to content

build(deps): bump laravel/scout from 10.24.0 to 11.3.0#303

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

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

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps laravel/scout from 10.24.0 to 11.3.0.

Release notes

Sourced from laravel/scout's releases.

v11.3.0

v11.2.0

v11.1.0

v11.0.0

v10.25.0

Changelog

Sourced from laravel/scout's changelog.

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
  • 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)
  • d984d76 Dependabot configuration only for default branch
  • d384631 Add Dependabot cooldown of 5 days (#991)
  • 935079d Merge pull request #989 from laravel/dependabot/github_actions/github-actions...
  • f087aca Bump shivammathur/setup-php in the github-actions group
  • 1c700d2 Merge pull request #985 from laravel/pin-github-actions
  • d4b4718 Update CHANGELOG
  • 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 16, 2026
@dependabot
dependabot Bot force-pushed the dependabot/composer/laravel/scout-11.3.0 branch 10 times, most recently from 5c68128 to c79da72 Compare July 16, 2026 10:47
Bumps [laravel/scout](https://github.com/laravel/scout) from 10.24.0 to 11.3.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.3.0)

---
updated-dependencies:
- dependency-name: laravel/scout
  dependency-version: 11.3.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.3.0 branch from c79da72 to 2666aba Compare July 16, 2026 10:49
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