From 94748b70429b5664f7c122af0be771695cf08d50 Mon Sep 17 00:00:00 2001 From: "twenty-pr[bot]" <281954394+twenty-pr[bot]@users.noreply.github.com> Date: Thu, 14 May 2026 17:02:38 +0200 Subject: [PATCH] chore: bump version to 2.6.0 (#20585) ## 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 | 4 +++- .../upgrade/constants/twenty-previous-versions.constant.ts | 1 + 3 files changed, 5 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 0b20269715..369818bbbd 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.5.0' as const; +export const TWENTY_CURRENT_VERSION = '2.6.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 89b69079cf..6306b2de50 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 @@ -7,4 +7,6 @@ * |___/ */ -export const TWENTY_NEXT_VERSIONS = ['2.6.0'] as const; +export const TWENTY_NEXT_VERSIONS = [ + '2.7.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 68c45245c6..20e7e801bd 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 @@ -16,4 +16,5 @@ export const TWENTY_PREVIOUS_VERSIONS = [ '2.2.0', '2.3.0', '2.4.0', + '2.5.0', ] as const;