Skip to content

Commit 04f49c6

Browse files
authored
Merge branch 'main' into project-tags-searrch
2 parents 23f7434 + 5157a2a commit 04f49c6

File tree

218 files changed

+6396
-1554
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

218 files changed

+6396
-1554
lines changed

.editorconfig

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -231,3 +231,6 @@ indent_size = 3
231231

232232
[*.{csv,sql}-spec]
233233
trim_trailing_whitespace = false
234+
235+
[*.cef.txt]
236+
insert_final_newline = false

distribution/docker/src/docker/dockerfiles/cloud_ess_fips/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
# Extract Elasticsearch artifact
2626
################################################################################
2727
28-
FROM docker.elastic.co/wolfi/chainguard-base-fips:latest@sha256:25ce132ade7e8299e7e65dba60ab34ea312f46bce64d1ad8ad11369df4e05a46 AS builder
28+
FROM docker.elastic.co/wolfi/chainguard-base-fips:latest@sha256:cbdc142a5f87839bf25c86fe25f0904cc3333fdc8a134d38ab47cd11e18ffb1f AS builder
2929
3030
# Install required packages to extract the Elasticsearch distribution
3131
RUN <%= retry.loop(package_manager, "export DEBIAN_FRONTEND=noninteractive && ${package_manager} update && ${package_manager} update && ${package_manager} add --no-cache curl") %>
@@ -104,7 +104,7 @@ WORKDIR /usr/share/elasticsearch/config
104104
# Add entrypoint
105105
################################################################################
106106

107-
FROM docker.elastic.co/wolfi/chainguard-base-fips:latest@sha256:25ce132ade7e8299e7e65dba60ab34ea312f46bce64d1ad8ad11369df4e05a46
107+
FROM docker.elastic.co/wolfi/chainguard-base-fips:latest@sha256:cbdc142a5f87839bf25c86fe25f0904cc3333fdc8a134d38ab47cd11e18ffb1f
108108

109109
RUN <%= retry.loop(package_manager,
110110
"export DEBIAN_FRONTEND=noninteractive && \n" +

distribution/docker/src/docker/dockerfiles/wolfi/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
# Extract Elasticsearch artifact
2626
################################################################################
2727
28-
FROM docker.elastic.co/wolfi/chainguard-base:latest@sha256:1038c51d3e88154a59aea6476f19030ceca257cddcae66abe1d047de7a5ce578 AS builder
28+
FROM docker.elastic.co/wolfi/chainguard-base:latest@sha256:2b179e1fe69c672bd0844147c6ebb039adb44ddaa3f9b4695f4915a9447da438 AS builder
2929
3030
# Install required packages to extract the Elasticsearch distribution
3131
RUN <%= retry.loop(package_manager, "export DEBIAN_FRONTEND=noninteractive && ${package_manager} update && ${package_manager} update && ${package_manager} add --no-cache curl") %>
@@ -80,7 +80,7 @@ RUN sed -i -e 's/ES_DISTRIBUTION_TYPE=tar/ES_DISTRIBUTION_TYPE=docker/' bin/elas
8080
# Add entrypoint
8181
################################################################################
8282

83-
FROM docker.elastic.co/wolfi/chainguard-base:latest@sha256:1038c51d3e88154a59aea6476f19030ceca257cddcae66abe1d047de7a5ce578
83+
FROM docker.elastic.co/wolfi/chainguard-base:latest@sha256:2b179e1fe69c672bd0844147c6ebb039adb44ddaa3f9b4695f4915a9447da438
8484

8585
RUN <%= retry.loop(package_manager,
8686
"export DEBIAN_FRONTEND=noninteractive && \n" +

docs/changelog/138139.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,21 @@ summary: Support window function in time-series aggregations
33
area: ES|QL
44
type: enhancement
55
issues: []
6+
highlight:
7+
title: Evaluate time series aggregation functions over sliding windows
8+
body: |-
9+
Time series aggregations in ES|QL can be optionally calculated over a sliding time window. Using a window
10+
larger than the time bucket interval reduces jitter in dashboards, by taking a larger number of data points into
11+
account.
12+
13+
Windows can be specified in all supported time series aggregations, as a second argument. For instance, the
14+
following ES|QL query calculates the average rate of requests per host every minute, using a 10-minute window:
15+
16+
TS metrics
17+
| WHERE TRANGE(1h)
18+
| STATS avg(rate(requests, 10m)) BY TBUCKET(1m), host
19+
20+
Acceptable window values are currently limited to multiples of the time bucket value (e.g. `BUCKET` or `TBUCKET`),
21+
as specified in the BY-clause. If no window is provided, it's implicitly set to the time bucket value,
22+
matching existing behavior.
23+
notable: true

docs/changelog/138367.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 138367
2+
summary: Improve no-op check in PUT `_mapping` API
3+
area: Indices APIs
4+
type: enhancement
5+
issues: []

docs/changelog/138583.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 138583
2+
summary: "Fix: Correctly pickup MRT value for `msearch`'s search requests"
3+
area: CCS
4+
type: bug
5+
issues: []

docs/changelog/139023.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 139023
2+
summary: Add comma delimiter validation to index name expressions in roles and API keys
3+
area: Security
4+
type: bug
5+
issues: []

docs/changelog/139175.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
pr: 139175
2+
summary: "ESQL: Prevent circular alias references in `DeduplicateAggs`"
3+
area: ES|QL
4+
type: bug
5+
issues:
6+
- 138346
7+
- 139541

docs/changelog/139245.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
pr: 139245
2+
summary: "[Security Solution] Add additional privileges to Kibana System role for\
3+
\ `.endpoint-scripts-file*` indexes"
4+
area: Authorization
5+
type: enhancement
6+
issues: []

docs/changelog/139337.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
pr: 139337
2+
summary: Consistently prevent using exclusion prefix on its own
3+
area: Security
4+
type: bug
5+
issues:
6+
- 45504

0 commit comments

Comments
 (0)