From a78c4c9fe884087b5d5121e465dd05d2e5889204 Mon Sep 17 00:00:00 2001 From: "twenty-pr[bot]" <281954394+twenty-pr[bot]@users.noreply.github.com> Date: Thu, 21 May 2026 16:10:08 +0200 Subject: [PATCH] chore: bump version to 2.8.0 (#20813) ## Summary - Moves current version to previous versions array - Sets TWENTY_CURRENT_VERSION to the new version - Updates TWENTY_NEXT_VERSIONS with the next minor version ## Checklist - [ ] Verify version constants are correct Co-authored-by: Github Action Deploy --- .../upgrade/constants/twenty-current-version.constant.ts | 2 +- .../upgrade/constants/twenty-next-versions.constant.ts | 2 +- .../upgrade/constants/twenty-previous-versions.constant.ts | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/twenty-server/src/engine/core-modules/upgrade/constants/twenty-current-version.constant.ts b/packages/twenty-server/src/engine/core-modules/upgrade/constants/twenty-current-version.constant.ts index 718fcb46dd..6681025d2b 100644 --- a/packages/twenty-server/src/engine/core-modules/upgrade/constants/twenty-current-version.constant.ts +++ b/packages/twenty-server/src/engine/core-modules/upgrade/constants/twenty-current-version.constant.ts @@ -7,4 +7,4 @@ * |___/ */ -export const TWENTY_CURRENT_VERSION = '2.7.0' as const; +export const TWENTY_CURRENT_VERSION = '2.8.0' as const; diff --git a/packages/twenty-server/src/engine/core-modules/upgrade/constants/twenty-next-versions.constant.ts b/packages/twenty-server/src/engine/core-modules/upgrade/constants/twenty-next-versions.constant.ts index 663c6078d5..fcaa570ebe 100644 --- a/packages/twenty-server/src/engine/core-modules/upgrade/constants/twenty-next-versions.constant.ts +++ b/packages/twenty-server/src/engine/core-modules/upgrade/constants/twenty-next-versions.constant.ts @@ -8,5 +8,5 @@ */ export const TWENTY_NEXT_VERSIONS = [ - '2.8.0', + '2.9.0', ] as const; diff --git a/packages/twenty-server/src/engine/core-modules/upgrade/constants/twenty-previous-versions.constant.ts b/packages/twenty-server/src/engine/core-modules/upgrade/constants/twenty-previous-versions.constant.ts index 303f2dd0fa..e5fd30cd83 100644 --- a/packages/twenty-server/src/engine/core-modules/upgrade/constants/twenty-previous-versions.constant.ts +++ b/packages/twenty-server/src/engine/core-modules/upgrade/constants/twenty-previous-versions.constant.ts @@ -18,4 +18,5 @@ export const TWENTY_PREVIOUS_VERSIONS = [ '2.4.0', '2.5.0', '2.6.0', + '2.7.0', ] as const;