diff --git a/.version b/.version index e9763f6bfe..ad2261920c 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -2.23.0 +2.24.0 diff --git a/frontend/.version b/frontend/.version index e9763f6bfe..ad2261920c 100644 --- a/frontend/.version +++ b/frontend/.version @@ -1 +1 @@ -2.23.0 +2.24.0 diff --git a/server/.version b/server/.version index e9763f6bfe..ad2261920c 100644 --- a/server/.version +++ b/server/.version @@ -1 +1 @@ -2.23.0 +2.24.0 diff --git a/server/src/helpers/utils.helper.ts b/server/src/helpers/utils.helper.ts index 62337e9960..471b88c52a 100644 --- a/server/src/helpers/utils.helper.ts +++ b/server/src/helpers/utils.helper.ts @@ -226,12 +226,12 @@ export function extractMajorVersion(version) { * Checks if a given Tooljet version is compatible with normalized app definition schemas. * * This function uses the 'semver' library to compare the provided version with a minimum version requirement - * for normalized app definition schemas (2.22.1). It returns true if the version is greater than or equal to + * for normalized app definition schemas (2.24.1). It returns true if the version is greater than or equal to * the required version, indicating compatibility. * * @param {string} version - The Tooljet version to check. * @returns {boolean} - True if the version is compatible, false otherwise. */ export function isTooljetVersionWithNormalizedAppDefinitionSchem(version) { - return semver.satisfies(semver.coerce(version), '>= 2.23.0'); + return semver.satisfies(semver.coerce(version), '>= 2.24.0'); }