mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 17:08:34 +00:00
bumping version to v2.24.0
This commit is contained in:
parent
b88d500e16
commit
c3e5b8331b
4 changed files with 5 additions and 5 deletions
2
.version
2
.version
|
|
@ -1 +1 @@
|
|||
2.23.0
|
||||
2.24.0
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
2.23.0
|
||||
2.24.0
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
2.23.0
|
||||
2.24.0
|
||||
|
|
|
|||
|
|
@ -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');
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue