Skip to content

Commit

Permalink
Merge branch '8.16' into backport/8.16/pr-202738
Browse files Browse the repository at this point in the history
  • Loading branch information
elasticmachine authored Jan 2, 2025
2 parents bd1d722 + 483a5ef commit dd62fb9
Show file tree
Hide file tree
Showing 165 changed files with 2,649 additions and 1,505 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
11 changes: 11 additions & 0 deletions .buildkite/scripts/steps/es_snapshots/promote.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,14 @@ if [[ "$BUILDKITE_BRANCH" == "main" ]]; then
echo "--- Trigger agent packer cache pipeline"
ts-node .buildkite/scripts/steps/trigger_pipeline.ts kibana-agent-packer-cache main
fi

cat << EOF | buildkite-agent pipeline upload
steps:
- label: "Update cache for ES $BUILDKITE_BRANCH snapshot"
trigger: kibana-vm-images
async: true
build:
env:
IMAGES_CONFIG: "kibana/images.yml"
RETRY: "1"
EOF
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,4 @@ if [[ "$BUILDKITE_BRANCH" == "8.x" ]]; then
exit 0;
fi

if [[ "$BUILDKITE_BRANCH" == "8.16" ]]; then
BUMP_KIBANA_DOC_NAME="$(vault_get kibana-bump-sh kibana-doc-name)"
BUMP_KIBANA_DOC_TOKEN="$(vault_get kibana-bump-sh kibana-token)"
deploy_to_bump "$(pwd)/oas_docs/output/kibana.yaml" $BUMP_KIBANA_DOC_NAME $BUMP_KIBANA_DOC_TOKEN v8;
exit 0;
fi

echo "No branches found to push to; stopping here."
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
2 changes: 1 addition & 1 deletion .github/workflows/alert-failed-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout kibana-operations
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
repository: 'elastic/kibana-operations'
ref: main
Expand Down
56 changes: 0 additions & 56 deletions .github/workflows/codeql.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/label-failed-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout kibana-operations
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
repository: 'elastic/kibana-operations'
ref: main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/launchdarkly-code-references.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
if: github.event.repository.fork == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 11 # This value must be set if the lookback configuration option is not disabled for find-code-references. Read more: https://github.com/launchdarkly/ld-find-code-refs#searching-for-unused-flags-extinctions
- name: LaunchDarkly Code References
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/on-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
)
steps:
- name: Checkout Actions
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
repository: 'elastic/kibana-github-actions'
ref: main
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/skip-failed-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Actions
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
repository: 'elastic/kibana-github-actions'
ref: main
Expand All @@ -30,7 +30,7 @@ jobs:
token: ${{secrets.KIBANAMACHINE_TOKEN}}

- name: Checkout kibana-operations
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
repository: 'elastic/kibana-operations'
ref: main
Expand Down
2 changes: 1 addition & 1 deletion NOTICE.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Kibana source code with Kibana X-Pack source code
Copyright 2012-2024 Elasticsearch B.V.
Copyright 2012-2025 Elasticsearch B.V.

---
Adapted from remote-web-worker, which was available under a "MIT" license.
Expand Down
46 changes: 46 additions & 0 deletions docs/CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

Review important information about the {kib} 8.x releases.

* <<release-notes-8.16.2>>
* <<release-notes-8.16.1>>
* <<release-notes-8.16.0>>
* <<release-notes-8.15.5>>
Expand Down Expand Up @@ -81,6 +82,51 @@ Review important information about the {kib} 8.x releases.

include::upgrade-notes.asciidoc[]

[[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
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[]
Loading

0 comments on commit dd62fb9

Please sign in to comment.