From 74441bb59154b7fb3e44d7d493dfc07a2f92254f Mon Sep 17 00:00:00 2001 From: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> Date: Mon, 28 Feb 2022 16:15:10 -0500 Subject: [PATCH] [APM] Update APM package version to 8.1.0 (#126477) (#126513) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit 6634e149ab2bf1af5f8c4bbfc94b1f03c5102528) Co-authored-by: CauĂȘ Marcondes <55978943+cauemarcondes@users.noreply.github.com> --- x-pack/plugins/apm/common/fleet.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugins/apm/common/fleet.ts b/x-pack/plugins/apm/common/fleet.ts index 367528f79b222..183192e6bd1da 100644 --- a/x-pack/plugins/apm/common/fleet.ts +++ b/x-pack/plugins/apm/common/fleet.ts @@ -8,7 +8,7 @@ import semverParse from 'semver/functions/parse'; export const POLICY_ELASTIC_AGENT_ON_CLOUD = 'policy-elastic-agent-on-cloud'; -export const SUPPORTED_APM_PACKAGE_VERSION = '8.0.0'; +export const SUPPORTED_APM_PACKAGE_VERSION = '8.1.0'; export function isPrereleaseVersion(version: string) { return semverParse(version)?.prerelease?.length ?? 0 > 0;