Skip to content

Commit

Permalink
fix: update client version in JsonSchemaVersionsFallback (#38390)
Browse files Browse the repository at this point in the history
Updated the client version from 1 to 2 in the JsonSchemaVersionsFallback class to align with the latest schema changes.
With introduction fo HTML column type in appsmith table, we don't want, apps exported from a newer version to be importable in the older version.
  • Loading branch information
rahulbarwal committed Dec 27, 2024
1 parent 0255bce commit b3aaaea
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
@Component
public class JsonSchemaVersionsFallback {
private static final Integer serverVersion = 11;
public static final Integer clientVersion = 1;
public static final Integer clientVersion = 2;

public Integer getServerVersion() {
return serverVersion;
Expand Down

0 comments on commit b3aaaea

Please sign in to comment.