From eba8fdc2fbd06434881fbe84affd0e0997ecf53a Mon Sep 17 00:00:00 2001 From: Nico Rehwaldt Date: Wed, 27 Mar 2024 18:34:36 +0100 Subject: [PATCH] feat: mark 7.21 as the latest stable Camunda 7 version --- client/src/util/Engines.js | 2 +- client/src/util/__tests__/EnginesSpec.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/util/Engines.js b/client/src/util/Engines.js index 0459238c47..414d6c6210 100644 --- a/client/src/util/Engines.js +++ b/client/src/util/Engines.js @@ -17,7 +17,7 @@ export const ENGINE_PROFILES = [ { executionPlatform: ENGINES.PLATFORM, executionPlatformVersions: [ '7.21.0', '7.20.0', '7.19.0', '7.18.0', '7.17.0', '7.16.0', '7.15.0' ], - latestStable: '7.20.0' + latestStable: '7.21.0' }, { executionPlatform: ENGINES.CLOUD, diff --git a/client/src/util/__tests__/EnginesSpec.js b/client/src/util/__tests__/EnginesSpec.js index 95de43124e..2978c61d10 100644 --- a/client/src/util/__tests__/EnginesSpec.js +++ b/client/src/util/__tests__/EnginesSpec.js @@ -27,7 +27,7 @@ describe('util/Engines', function() { }; } - it('Platform', verifyLatestStable(ENGINES.PLATFORM, '7.20.0')); + it('Platform', verifyLatestStable(ENGINES.PLATFORM, '7.21.0')); it('Cloud', verifyLatestStable(ENGINES.CLOUD, '8.5.0'));