Skip to content

Tags: elastic/elasticsearch

Tags

v8.17.3

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[8.17] Adjust the versions for :modules:ingest-geoip:qa:full-cluster-…

…restart (#123648)

v8.16.5

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Update docker.elastic.co/wolfi/chainguard-base:latest Docker digest t…

…o 6387bd4 (#123386)

This PR contains the following updates:

| Package | Update | Change | |---|---|---| |
docker.elastic.co/wolfi/chainguard-base | digest | `d74b1fd` ->
`6387bd4` |

---

### Configuration

📅 **Schedule**: Branch creation - "after 1pm on tuesday" (UTC),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once
you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xMDcuMCIsInVwZGF0ZWRJblZlciI6IjM5LjEwNy4wIiwidGFyZ2V0QnJhbmNoIjoiOC4xNiIsImxhYmVscyI6WyI6RGVsaXZlcnkvUGFja2FnaW5nIiwiPm5vbi1pc3N1ZSIsIlRlYW06RGVsaXZlcnkiLCJhdXRvLW1lcmdlLXdpdGhvdXQtYXBwcm92YWwiXX0=-->

v7.17.28

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[7.17] [Gradle] Fix build finished hooks on ci when using configurati…

…on cache (#116888) (#122744)

* [Gradle] Fix build finished hooks on ci when using configuration cache (#116888)

Fixes two incompatibilities with Gradle configuration cache in our build scan build finished hook:

referencing static methods from build script
referencing gradle object from closure

(cherry picked from commit 929d398)

# Conflicts:
#	build-tools-internal/src/main/groovy/elasticsearch.build-scan.gradle

* Update elasticsearch.build-scan.gradle

fix license

* Fix license header

v9.0.0-beta1

Bump versions after 8.16.4 release

v8.16.4

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[CI] Remove Windows 2016 testing (#121941) (#121958)

(cherry picked from commit b952809)

v8.17.2

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fix synthetic source issue with deeply nested ignored source fields (#…

…121715) (#121789)

* Fix synthetic source issue with deeply nested ignored source fields

* Update docs/changelog/121715.yaml

v8.17.1

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fix ESQL async get while task is being cancelled (#119897) (#119907)

ES|QL and EQL async queries do not store the initial response in the
async index. This means that async-get should retrieve results from the
task, not the async index, when the query task is being canceled, as no
document exists there.

v8.16.3

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Include full stacktrace in gradle functional test failures (#119900) (#…

…119905)

v7.17.27

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Disable SLM history in docs tests (#118979) (#119813)

The SLM history data stream was causing issues in the docs tests because
its presence was flaky and could result in the inability to remove
its index template, which in turn resulted in failing tests.

v8.17.0

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fix issues with ReinitializingSourceProvider (#118370) (#118430)

The previous fix to ensure that each thread uses its own SearchProvider wasn't good enough.  The read from `perThreadProvider` field could be stale and therefore returning a previous source provider.  Instead the source provider should be returned from `provider` local variable.

This change also addresses another issue, sometimes current docid goes backwards compared to last seen docid and this causes issue when synthetic source provider is used, as doc values can't advance backwards. This change addresses that by returning a new source provider if backwards docid is detected.

Closes #118238