Skip to content

build(deps): bump laravel/scout from 10.24.0 to 11.6.1 - #342

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

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

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 2, 2026

Copy link
Copy Markdown
Contributor

Bumps laravel/scout from 10.24.0 to 11.6.1.

Release notes

Sourced from laravel/scout's releases.

v11.6.1

Full Changelog: laravel/scout@v11.6.0...v11.6.1

v11.6.0

v11.5.0

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.6.1 - 2026-08-25

Full Changelog: laravel/scout@v11.6.0...v11.6.1

v11.6.0 - 2026-08-25

v11.5.0 - 2026-08-04

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

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file php Pull requests that update Php code labels Sep 2, 2026
Bumps [laravel/scout](https://github.com/laravel/scout) from 10.24.0 to 11.6.1.
- [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.6.1)

---
updated-dependencies:
- dependency-name: laravel/scout
  dependency-version: 11.6.1
  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.6.1 branch from acc9928 to 501dc71 Compare September 9, 2026 08:57
@dependabot @github

dependabot Bot commented on behalf of github Sep 16, 2026

Copy link
Copy Markdown
Contributor Author

Superseded by #350.

@dependabot dependabot Bot closed this Sep 16, 2026
@dependabot
dependabot Bot deleted the dependabot/composer/laravel/scout-11.6.1 branch September 16, 2026 08:53
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