From 2a92f34d06c7f5cae9dfeb4628a8c59ac84da1d0 Mon Sep 17 00:00:00 2001 From: "twenty-pr[bot]" <281954394+twenty-pr[bot]@users.noreply.github.com> Date: Tue, 19 May 2026 08:10:57 +0200 Subject: [PATCH] chore: bump version to 2.7.0 (#20693) ## 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 369818bbbd..718fcb46dd 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.6.0' as const; +export const TWENTY_CURRENT_VERSION = '2.7.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 6306b2de50..663c6078d5 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.7.0', + '2.8.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 20e7e801bd..303f2dd0fa 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 @@ -17,4 +17,5 @@ export const TWENTY_PREVIOUS_VERSIONS = [ '2.3.0', '2.4.0', '2.5.0', + '2.6.0', ] as const;