From 5917c08f0f0aa84ba79b508aa8a3148e23b904d8 Mon Sep 17 00:00:00 2001 From: elasticmachine Date: Thu, 21 Sep 2023 08:09:31 +0000 Subject: [PATCH 1/2] [Release] update version --- version/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version/version.go b/version/version.go index f5e27f8096b..5d002bb2e4f 100644 --- a/version/version.go +++ b/version/version.go @@ -4,5 +4,5 @@ package version -const defaultBeatVersion = "8.10.2" +const defaultBeatVersion = "8.10.3" const Agent = defaultBeatVersion From 70f327f2b733984b84154365382c3077dc31cefd Mon Sep 17 00:00:00 2001 From: Craig MacKenzie Date: Thu, 21 Sep 2023 15:44:20 -0400 Subject: [PATCH 2/2] Use previous stack version in tests until latest is ready. --- .buildkite/scripts/steps/integration_tests.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.buildkite/scripts/steps/integration_tests.sh b/.buildkite/scripts/steps/integration_tests.sh index ea28f1f503d..995f5018a14 100755 --- a/.buildkite/scripts/steps/integration_tests.sh +++ b/.buildkite/scripts/steps/integration_tests.sh @@ -8,7 +8,8 @@ DEV=true EXTERNAL=true SNAPSHOT=true PLATFORMS=linux/amd64,linux/arm64 PACKAGES= # Run integration tests set +e -TEST_INTEG_CLEAN_ON_EXIT=true SNAPSHOT=true mage integration:test +# Use 8.10.2-SNAPSHOT until the first 8.10.3-SNAPSHOT is produced. +AGENT_STACK_VERSION="8.10.2-SNAPSHOT" TEST_INTEG_CLEAN_ON_EXIT=true SNAPSHOT=true mage integration:test TESTS_EXIT_STATUS=$? set -e