diff --git a/transaction-ballerina/Dependencies.toml b/transaction-ballerina/Dependencies.toml index aba8882..6f2c3f2 100644 --- a/transaction-ballerina/Dependencies.toml +++ b/transaction-ballerina/Dependencies.toml @@ -5,7 +5,7 @@ [ballerina] dependencies-toml-version = "2" -distribution-version = "2201.11.0-20241218-101200-109f6cc7" +distribution-version = "2201.11.0-20250127-101700-a4b67fe5" [[package]] org = "ballerina" diff --git a/transaction-negative-tests/Ballerina.toml b/transaction-negative-tests/Ballerina.toml index 2207f44..a87c1fd 100644 --- a/transaction-negative-tests/Ballerina.toml +++ b/transaction-negative-tests/Ballerina.toml @@ -20,7 +20,7 @@ artifactId = "transaction" version = "1.11.0-SNAPSHOT" [[platform.java21.dependency]] -path = "./lib/io-native-1.7.0-20241218-111600-1da6a3f.jar" +path = "./lib/io-native-1.7.0-20250127-170200-0d36f73.jar" groupId = "io.ballerina.stdlib" artifactId = "io-native" -version = "1.7.0-20241218-111600-1da6a3f" +version = "1.7.0-20250127-170200-0d36f73" diff --git a/transaction-negative-tests/build.gradle b/transaction-negative-tests/build.gradle index 1c05d7c..9da8148 100644 --- a/transaction-negative-tests/build.gradle +++ b/transaction-negative-tests/build.gradle @@ -126,8 +126,10 @@ task ballerinaNegativeTests { environment "JAVA_OPTS", "-DBALLERINA_DEV_COMPILE_BALLERINA_ORG=true" if (Os.isFamily(Os.FAMILY_WINDOWS)) { commandLine 'cmd', '/c', "$distributionBinPath/bal.bat test ${graalvmFlag} ${testParams}" + commandLine 'cmd', '/c', "git diff --quiet -- Ballerina.toml Dependencies.toml || git commit -m \"[Automated] Update the native jar versions\" Ballerina.toml Dependencies.toml" } else { commandLine 'sh', '-c', "$distributionBinPath/bal test ${graalvmFlag} ${testParams}" + commandLine 'sh', '-c', "git diff --quiet -- Ballerina.toml Dependencies.toml || git commit -m '[Automated] Update the native jar versions' Ballerina.toml Dependencies.toml" } } }