bumping version to v2.24.0

This commit is contained in:
arpitnath 2023-11-07 11:16:28 +05:30
parent b88d500e16
commit c3e5b8331b
4 changed files with 5 additions and 5 deletions

View file

@ -1 +1 @@
2.23.0
2.24.0

View file

@ -1 +1 @@
2.23.0
2.24.0

View file

@ -1 +1 @@
2.23.0
2.24.0

View file

@ -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');
}