Skip to content

Commit

Permalink
Merge branch '8.17' into backport/8.17/pr-204584
Browse files Browse the repository at this point in the history
  • Loading branch information
elasticmachine authored Dec 20, 2024
2 parents a9edfc1 + 6b9e6e2 commit b22822f
Show file tree
Hide file tree
Showing 117 changed files with 1,967 additions and 744 deletions.
12 changes: 12 additions & 0 deletions .buildkite/pipelines/pull_request/renovate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
steps:
- command: .buildkite/scripts/steps/renovate.sh
label: 'Renovate validation'
agents:
machineType: n2-highcpu-8
preemptible: true
key: renovate_validation
timeout_in_minutes: 60
retry:
automatic:
- exit_status: '-1'
limit: 3
9 changes: 9 additions & 0 deletions .buildkite/scripts/pipelines/pull_request/pipeline.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,15 @@ const getPipeline = (filename: string, removeSteps = true) => {
}

pipeline.push(getAgentImageConfig({ returnYaml: true }));

const onlyRunQuickChecks = await areChangesSkippable([/^renovate\.json$/], REQUIRED_PATHS);
if (onlyRunQuickChecks) {
pipeline.push(getPipeline('.buildkite/pipelines/pull_request/renovate.yml', false));

console.log([...new Set(pipeline)].join('\n'));
return;
}

pipeline.push(getPipeline('.buildkite/pipelines/pull_request/base.yml', false));

if (await doAnyChangesMatch([/^packages\/kbn-handlebars/])) {
Expand Down
6 changes: 6 additions & 0 deletions .buildkite/scripts/steps/renovate.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/usr/bin/env bash

set -euo pipefail

echo '--- Renovate: validation'
.buildkite/scripts/steps/checks/renovate.sh
48 changes: 47 additions & 1 deletion docs/CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
Review important information about the {kib} 8.x releases.

* <<release-notes-8.17.0>>
* <<release-notes-8.16.2>>
* <<release-notes-8.16.1>>
* <<release-notes-8.16.0>>
* <<release-notes-8.15.5>>
Expand Down Expand Up @@ -221,10 +222,55 @@ Machine Learning::
Kibana platform::
* Fixes an issue with the global search field that could open the wrong page when pressing "Enter" while results were not yet fully loaded ({kibana-pull}197750[#197750]).

[[release-notes-8.16.2]]
== {kib} 8.16.2

The 8.16.2 release includes the following enhancements and bug fixes.

[float]
[[enhancement-v8.16.2]]
=== Enhancements
In this release, we've introduced an image based on the hardened link:https://github.com/wolfi-dev/[Wolfi] image to provide additional security to our self-managed customers, and improve our supply chain security posture. Wolfi-based images require Docker version 20.10.10 or higher.

[float]
[[fixes-v8.16.2]]
=== Bug fixes
Alerting::
* Fixes Slack API connectors not displayed under Slack connector when adding new connector to rule ({kibana-pull}202315[#202315]).
Dashboards::
* Prevents resetting panel to undefined or empty last saved state ({kibana-pull}203158[#203158]).
Data ingestion and Fleet::
* Allows to create integration policy with no agent policies ({kibana-pull}201051[#201051]).
Elastic Observability solution::
* Preserves `kuery` filters when switching between Universal Profiling pages in new solution navigation ({kibana-pull}203545[#203545]).
* Fixes error when opening rule flyout ({kibana-pull}202386[#202386]).
* Handles ops genie as default connector ({kibana-pull}201923[#201923]).
Elastic Search solution::
* Adds ML as required plugin to Search Assistant ({kibana-pull}204009[#204009]).
* Fixes web crawler name inconsistencies ({kibana-pull}202738[#202738]).
Elastic Security solution::
For the Elastic Security 8.16.2 release information, refer to {security-guide}/release-notes.html[_Elastic Security Solution Release Notes_].
Kibana platform::
* Adds `search` as a term for `elasticsearch` solution_type ({kibana-pull}201688[#201688]).
* Adds a11y connector improvements ({kibana-pull}201590[#201590]).
* Fixes issue with generating short url when copying share link ({kibana-pull}201475[#201475]).
Kibana security::
* Fixes error with opening a point in time query for session deletion by now accounting for partial results ({kibana-pull}203413[#203413]).
* Adds functionality to restrict unsupported log formats ({kibana-pull}202994[#202994]).
* Adds functionality to restrict and reject CEF logs in Automatic Import and redirect to CEF integration instead ({kibana-pull}201792[#201792]).
* Removes fields with @ from the script processor ({kibana-pull}201548[#201548]).
Lens & Visualizations::
* Fixes point visibility regression in *TSVB* ({kibana-pull}202358[#202358]).
Machine Learning::
* Trained Models: Fixes spaces sync to retrieve 10000 models ({kibana-pull}202712[#202712]).
* Trained Models: Shows deployment stats for unallocated deployments ({kibana-pull}202005[#202005]).
* Trained Models: Fixes start deployment with ML autoscaling and 0 active nodes ({kibana-pull}201256[#201256]).
* Trained Models: Fixes `NaN` in a progress bar during the download task initialization ({kibana-pull}201221[#201221]).
* Single Metric Viewer embeddable: Fixes continuous job refetch when errors are encountered ({kibana-pull}199726[#199726]).

[[release-notes-8.16.1]]
== {kib} 8.16.1
˝

The 8.16.1 release includes the following bug fixes.

[float]
Expand Down
13 changes: 11 additions & 2 deletions docs/search/playground/index.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,16 @@ Refer to the following for more advanced topics:

* <<playground-context>>
* <<playground-query>>
* <<playground-troubleshooting>>
* <<playground-troubleshooting>>

.🍿 Getting started videos
***********************
Watch these video tutorials to help you get started:
* https://www.youtube.com/watch?v=zTHgJ3rhe10[Getting Started]
* https://www.youtube.com/watch?v=ZtxoASFvkno[Using Playground with local LLMs]
***********************


[float]
[[playground-how-it-works]]
Expand Down Expand Up @@ -259,4 +268,4 @@ Once you've got {x} up and running, and you've tested out the chat interface, yo

include::playground-context.asciidoc[]
include::playground-query.asciidoc[]
include::playground-troubleshooting.asciidoc[]
include::playground-troubleshooting.asciidoc[]
2 changes: 1 addition & 1 deletion docs/user/dashboard/lens.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -671,7 +671,7 @@ For area, line, and bar charts, press Shift, then click the series in the legend
.*How do I visualize saved searches?*
[%collapsible]
====
Visualizing saved searches in unsupported.
Visualizing saved Discover sessions is unsupported.
====

[discrete]
Expand Down
Loading

0 comments on commit b22822f

Please sign in to comment.