From ef7b4800638990d5b21a4c29d1344b12627d2079 Mon Sep 17 00:00:00 2001 From: "twenty-pr[bot]" <281954394+twenty-pr[bot]@users.noreply.github.com> Date: Tue, 30 Jun 2026 15:33:40 +0200 Subject: [PATCH] chore: bump version to 2.19.0 (#22363) ## 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 - Bumps twenty-client-sdk, twenty-sdk, and create-twenty-app to the same version ## Checklist - [ ] Verify version constants are correct - [ ] Verify npm package versions match Review in cubic Co-authored-by: Github Action Deploy --- packages/create-twenty-app/package.json | 2 +- packages/twenty-client-sdk/package.json | 2 +- packages/twenty-sdk/package.json | 2 +- .../upgrade/constants/twenty-current-version.constant.ts | 2 +- .../upgrade/constants/twenty-next-versions.constant.ts | 2 +- .../upgrade/constants/twenty-previous-versions.constant.ts | 1 + 6 files changed, 6 insertions(+), 5 deletions(-) diff --git a/packages/create-twenty-app/package.json b/packages/create-twenty-app/package.json index 51f52dc8a4..144b251faa 100644 --- a/packages/create-twenty-app/package.json +++ b/packages/create-twenty-app/package.json @@ -1,6 +1,6 @@ { "name": "create-twenty-app", - "version": "2.18.0", + "version": "2.19.0", "description": "Command-line interface to create Twenty application", "main": "dist/cli.cjs", "bin": "dist/cli.cjs", diff --git a/packages/twenty-client-sdk/package.json b/packages/twenty-client-sdk/package.json index 2a0fa0fe65..a26f2fc713 100644 --- a/packages/twenty-client-sdk/package.json +++ b/packages/twenty-client-sdk/package.json @@ -1,6 +1,6 @@ { "name": "twenty-client-sdk", - "version": "2.18.0", + "version": "2.19.0", "sideEffects": false, "license": "AGPL-3.0", "scripts": { diff --git a/packages/twenty-sdk/package.json b/packages/twenty-sdk/package.json index e7a3690adf..63ee8e5a91 100644 --- a/packages/twenty-sdk/package.json +++ b/packages/twenty-sdk/package.json @@ -1,6 +1,6 @@ { "name": "twenty-sdk", - "version": "2.18.0", + "version": "2.19.0", "sideEffects": false, "bin": { "twenty": "dist/cli.cjs" 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 fe529416f2..cdaa5e346c 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.18.0' as const; +export const TWENTY_CURRENT_VERSION = '2.19.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 d6e3de7351..ca65f8c7e1 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.19.0', + '2.20.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 f09bcbc60d..b9da28ff18 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 @@ -29,4 +29,5 @@ export const TWENTY_PREVIOUS_VERSIONS = [ '2.15.0', '2.16.0', '2.17.0', + '2.18.0', ] as const;