From acc9bbc6820f5e92b9ef4d56e7cebb9a88969cb7 Mon Sep 17 00:00:00 2001 From: "elastic-observability-automation[bot]" <180520183+elastic-observability-automation[bot]@users.noreply.github.com> Date: Fri, 24 Oct 2025 15:07:46 +0000 Subject: [PATCH 1/5] chore: Update elastic stack version to 8.19.6 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- .github/workflows/microbenchmark.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/microbenchmark.yml b/.github/workflows/microbenchmark.yml index 4ced86695..6775ec874 100644 --- a/.github/workflows/microbenchmark.yml +++ b/.github/workflows/microbenchmark.yml @@ -5,7 +5,7 @@ on: inputs: stack_version: description: 'Stack Version' - default: '8.19.5' + default: '8.19.6' required: false push: branches: @@ -26,7 +26,7 @@ jobs: - name: Run buildkite pipeline uses: elastic/oblt-actions/buildkite/run@v1 env: - STACK_VERSION: ${{ inputs.stack_version || '8.19.5' }} + STACK_VERSION: ${{ inputs.stack_version || '8.19.6' }} with: token: ${{ secrets.BUILDKITE_TOKEN }} pipeline: apm-agent-microbenchmark From b67e740b04fb2b34375f498a50749aff0b0c11dc Mon Sep 17 00:00:00 2001 From: "elastic-observability-automation[bot]" <180520183+elastic-observability-automation[bot]@users.noreply.github.com> Date: Fri, 24 Oct 2025 15:07:50 +0000 Subject: [PATCH 2/5] chore: Update elastic stack version to 8.19.6 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d9ecb5577..1a95f8371 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -66,7 +66,7 @@ jobs: matrix: stack-version: - '8.0.0-SNAPSHOT' - - '8.19.5' + - '8.19.6' scope: - '@elastic/apm-rum' - '@elastic/apm-rum-core' @@ -125,4 +125,4 @@ jobs: uses: ./.github/workflows/run-test with: goal: 'coverage' - stack-version: '8.19.5' + stack-version: '8.19.6' From 41fc4acec8b1ea3f28b997b0459aafacdb4d7171 Mon Sep 17 00:00:00 2001 From: David Luna Date: Mon, 27 Oct 2025 12:35:48 +0100 Subject: [PATCH 3/5] chore: bump stack version scripts --- .ci/scripts/load-testing.sh | 2 +- .ci/scripts/pull_and_build.sh | 2 +- .ci/scripts/test.sh | 2 +- dev-utils/docker-compose.yml | 6 +++--- packages/rum-core/test/run-apm-server.sh | 2 +- packages/rum/test/run-apm-server.sh | 4 ++-- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.ci/scripts/load-testing.sh b/.ci/scripts/load-testing.sh index 23a8a51f7..6e64da130 100755 --- a/.ci/scripts/load-testing.sh +++ b/.ci/scripts/load-testing.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -STACK_VERSION=${1:-8.19.5} +STACK_VERSION=${1:-8.19.6} USER_ID="$(id -u):$(id -g)" # The migration of this to Node.js 18 will wait. To update playwright (and browsers) # to make it work in Node.js 18 and latest version in ubuntu (or another OS) diff --git a/.ci/scripts/pull_and_build.sh b/.ci/scripts/pull_and_build.sh index fa9f3c2f1..3ff7f9c03 100755 --- a/.ci/scripts/pull_and_build.sh +++ b/.ci/scripts/pull_and_build.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash export NODEJS_VERSION=$(cat .nvmrc) -export STACK_VERSION=${STACK_VERSION:-8.19.5} +export STACK_VERSION=${STACK_VERSION:-8.19.6} STACK_VERSION=${STACK_VERSION} \ docker --log-level INFO compose -f ./dev-utils/docker-compose.yml pull --quiet --ignore-pull-failures diff --git a/.ci/scripts/test.sh b/.ci/scripts/test.sh index 3a32967a8..b20ff2c88 100755 --- a/.ci/scripts/test.sh +++ b/.ci/scripts/test.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash set -xo pipefail -STACK_VERSION=${STACK_VERSION:-"8.19.5"} +STACK_VERSION=${STACK_VERSION:-"8.19.6"} APM_SERVER_PORT=${APM_SERVER_PORT:-"8200"} APM_SERVER_URL=${APM_SERVER_URL:-"http://apm-server:8200"} KIBANA_URL=${KIBANA_URL:-"http://kibana:5601"} diff --git a/dev-utils/docker-compose.yml b/dev-utils/docker-compose.yml index 515185d61..a669a9eb6 100644 --- a/dev-utils/docker-compose.yml +++ b/dev-utils/docker-compose.yml @@ -1,7 +1,7 @@ services: elasticsearch: container_name: elasticsearch - image: docker.elastic.co/elasticsearch/elasticsearch:${STACK_VERSION:-8.19.5} + image: docker.elastic.co/elasticsearch/elasticsearch:${STACK_VERSION:-8.19.6} environment: - cluster.name=docker-cluster - bootstrap.memory_lock=true @@ -46,7 +46,7 @@ services: fleet-server: container_name: apm-server - image: docker.elastic.co/beats/elastic-agent:${STACK_VERSION:-8.19.5} + image: docker.elastic.co/beats/elastic-agent:${STACK_VERSION:-8.19.6} entrypoint: "/bin/bash" command: - "-l" @@ -81,7 +81,7 @@ services: kibana: container_name: kibana - image: docker.elastic.co/kibana/kibana:${STACK_VERSION:-8.19.5} + image: docker.elastic.co/kibana/kibana:${STACK_VERSION:-8.19.6} environment: ELASTICSEARCH_HOSTS: http://elasticsearch:9200 ELASTICSEARCH_USERNAME: "${KIBANA_ES_USER:-kibana_system_user}" diff --git a/packages/rum-core/test/run-apm-server.sh b/packages/rum-core/test/run-apm-server.sh index 4fd1e8fde..065ec0e00 100644 --- a/packages/rum-core/test/run-apm-server.sh +++ b/packages/rum-core/test/run-apm-server.sh @@ -1 +1 @@ -ELASTICSEARCH_PORT=9201 STACK_VERSION=8.19.5 APM_SERVER_PORT=8001 docker compose up apm-server kibana +ELASTICSEARCH_PORT=9201 STACK_VERSION=8.19.6 APM_SERVER_PORT=8001 docker compose up apm-server kibana diff --git a/packages/rum/test/run-apm-server.sh b/packages/rum/test/run-apm-server.sh index a26a7842e..b1b90e401 100644 --- a/packages/rum/test/run-apm-server.sh +++ b/packages/rum/test/run-apm-server.sh @@ -1,3 +1,3 @@ #docker run -p 127.0.0.1:8200:8201 elastic/apm-server:6.2.4 /bin/sh -c "apm-server -e -E output.elasticsearch.password=$(ELASTICSEARCH_PASSWORD) -E output.elasticsearch.username=$(ELASTICSEARCH_USERNAME) -E output.elasticsearch.hosts=['$(ELASTICSEARCH_SERVICE_HOST):$(ELASTICSEARCH_SERVICE_PORT)'] -E apm-server.expvar.enabled=true -E apm-server.frontend.enabled=true -E apm-server.frontend.rate_limit=100000 -E apm-server.host=0.0.0.0:8200 -E apm-server.read_timeout=1m -E apm-server.shutdown_timeout=2m -E apm-server.write_timeout=1m" -STACK_VERSION=8.19.5 APM_SERVER_PORT=8001 docker compose up apm-server -#STACK_VERSION=8.19.5 docker compose -f ./test/docker compose.yml start apm-server +STACK_VERSION=8.19.6 APM_SERVER_PORT=8001 docker compose up apm-server +#STACK_VERSION=8.19.6 docker compose -f ./test/docker compose.yml start apm-server From bd7e38c89b091762bd77dcd9dbd3b0507e977855 Mon Sep 17 00:00:00 2001 From: "elastic-observability-automation[bot]" <180520183+elastic-observability-automation[bot]@users.noreply.github.com> Date: Mon, 27 Oct 2025 15:08:09 +0000 Subject: [PATCH 4/5] chore: Update elastic stack version to 8.19.6 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cff408e44..3172be6ff 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -66,7 +66,7 @@ jobs: matrix: stack-version: - '8.2.0-SNAPSHOT' - - '8.19.5' + - '8.19.6' scope: - '@elastic/apm-rum' - '@elastic/apm-rum-core' @@ -118,4 +118,4 @@ jobs: uses: ./.github/workflows/run-test with: goal: 'coverage' - stack-version: '8.19.5' + stack-version: '8.19.6' From 6c63fe771616bdbb15a8c1977759e2788cd61720 Mon Sep 17 00:00:00 2001 From: "elastic-observability-automation[bot]" <180520183+elastic-observability-automation[bot]@users.noreply.github.com> Date: Mon, 27 Oct 2025 15:08:14 +0000 Subject: [PATCH 5/5] chore: Update elastic stack version to 8.19.6 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- .github/workflows/microbenchmark.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/microbenchmark.yml b/.github/workflows/microbenchmark.yml index 4ced86695..6775ec874 100644 --- a/.github/workflows/microbenchmark.yml +++ b/.github/workflows/microbenchmark.yml @@ -5,7 +5,7 @@ on: inputs: stack_version: description: 'Stack Version' - default: '8.19.5' + default: '8.19.6' required: false push: branches: @@ -26,7 +26,7 @@ jobs: - name: Run buildkite pipeline uses: elastic/oblt-actions/buildkite/run@v1 env: - STACK_VERSION: ${{ inputs.stack_version || '8.19.5' }} + STACK_VERSION: ${{ inputs.stack_version || '8.19.6' }} with: token: ${{ secrets.BUILDKITE_TOKEN }} pipeline: apm-agent-microbenchmark