Skip to content

build(deps): bump elasticsearch/elasticsearch from 8.19.0 to 9.3.0#2199

Open
dependabot[bot] wants to merge 1 commit into1.xfrom
dependabot/composer/elasticsearch/elasticsearch-9.3.0
Open

build(deps): bump elasticsearch/elasticsearch from 8.19.0 to 9.3.0#2199
dependabot[bot] wants to merge 1 commit into1.xfrom
dependabot/composer/elasticsearch/elasticsearch-9.3.0

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 5, 2026

Bumps elasticsearch/elasticsearch from 8.19.0 to 9.3.0.

Release notes

Sourced from elasticsearch/elasticsearch's releases.

Release 9.3.0

New packDenseVector helper function #1499

The packDenseVector function can be used to pack dense vectors for efficient bulk ingesting.

Example usage:

use Elastic\Elasticsearch\Helper\Vectors;
$params = ['body' => []];
// ...
$params['body'][] = ['index' => ['_index' => $index]];
$params['body'][] = [
'docid' => $doc['docid'],
'title' => $doc['title'],
'text' => $doc['text'],
'emb' => Vectors::packDenseVector($doc['emb']),
];
// ...
$response = $client->bulk($params);

Packed dense vectors can provide significant bulk ingest performance improvements.

Cat.circuitBreaker (new API)

Esql.getView (new experimental API)

Esql.putView (new experimental API)

Esql.deleteView (new experimental API)

Indices.getSample (new experimental API)

Indices.getSampleConfiguration (new experimental API)

Indices.getAllSampleConfiguration (new experimental API)

... (truncated)

Changelog

Sourced from elasticsearch/elasticsearch's changelog.

Release 9.3.0

  • Updated the APIs to Elasticsearch 9.3.0

Release 9.2.0

  • Updated the APIs to Elasticsearch 9.2.0
  • Added the ES|QL query builder #1462

Release 9.1.0

  • Updated the APIs to Elasticsearch 9.1.0

Release 9.0.0

  • Use of PHP 8.1+: Starting from 9.0.0 the elasticsearch-php client requires PHP 8.1+.
  • Compatibility with Elasticsearch 9.0: All changes and additions to Elasticsearch APIs for its 9.0 release are reflected in this release.
  • Serverless client merged in: the elastic/elasticsearch-serverless client is being deprecated, and its functionality has been merged back into this client. This should have zero impact on the way the client works by default. If an endpoint is available in serverless, the PHP function will contains a @group serverless phpdoc attribute. If you try to use an endpoint that is not available in serverless you will get a 410 HTTP error with a message as follows: "this endpoint exists but is not available when running in serverless mode". The 9.0.0 client can recognize that it is communicating with a serverless instance if you are using a URL managed by Elastic (e.g. *.elastic.cloud). If you are using a proxy, the client will be able to recognize that the host is serverless from the first response. Alternatively, you can explicitly indicate that the host is serverless using the Client::setServerless(true) function (false by default).
  • New transport library with PSR-18 cURL client as default: we've removed the Guzzle dependency from the client. By default, the built-in cURL-based HTTP client will be used if no other PSR-18 compatible clients are detected. See release 9.0.0 of elastic-transport-php.

Release 8.17.1

  • Fix and improvements for PHPStan (rule level 5) #1442 (thanks @​AJenbo)

Release 8.17.0

  • Updated the APIs to Elasticsearch 8.17.0

Release 8.16.0

Release 8.15.0

Updated the APIs to Elasticsearch 8.15.0 and added the support of OpenTelemetry. Read the elastic-transport-php README for more information about OpenTelemetry support.

Release 8.14.0

This release introduces 3 new APIs and 10 EXPERIMENTAL APIs.

  • Specific changes per endpoints
    • Ccr.deleteAutoFollowPattern
      • Added the master_timeout parameter (time), explicit operation timeout for connection to master node.
    • Ccr.follow

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [elasticsearch/elasticsearch](https://github.com/elastic/elasticsearch-php) from 8.19.0 to 9.3.0.
- [Release notes](https://github.com/elastic/elasticsearch-php/releases)
- [Changelog](https://github.com/elastic/elasticsearch-php/blob/main/CHANGELOG.md)
- [Commits](elastic/elasticsearch-php@v8.19.0...v9.3.0)

---
updated-dependencies:
- dependency-name: elasticsearch/elasticsearch
  dependency-version: 9.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file php Pull requests that update php code labels Feb 5, 2026
@dependabot dependabot bot requested a review from norberttech as a code owner February 5, 2026 04:32
@dependabot dependabot bot added dependencies Pull requests that update a dependency file php Pull requests that update php code labels Feb 5, 2026
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 size: XS

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants