From e71c29a8125aa5dda1831815f3454b1fc169cbaf Mon Sep 17 00:00:00 2001 From: gayaldassanayake Date: Mon, 16 Feb 2026 10:04:03 +0530 Subject: [PATCH 1/2] [Automated] Update the toml files --- ballerina/Dependencies.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ballerina/Dependencies.toml b/ballerina/Dependencies.toml index cbf1767..424417a 100644 --- a/ballerina/Dependencies.toml +++ b/ballerina/Dependencies.toml @@ -30,7 +30,7 @@ modules = [ [[package]] org = "ballerina" name = "data.jsondata" -version = "1.1.0" +version = "1.1.3" dependencies = [ {org = "ballerina", name = "jballerina.java"}, {org = "ballerina", name = "lang.object"} @@ -158,7 +158,7 @@ modules = [ [[package]] org = "ballerina" name = "observe" -version = "1.5.0" +version = "1.5.1" dependencies = [ {org = "ballerina", name = "jballerina.java"} ] @@ -277,7 +277,7 @@ dependencies = [ [[package]] org = "ballerinax" name = "java.jdbc" -version = "1.14.0" +version = "1.14.1" scope = "testOnly" dependencies = [ {org = "ballerina", name = "io"}, From e6fdbd6b7a21c14111c4c7981f1fb73b1b7a3c97 Mon Sep 17 00:00:00 2001 From: gayaldassanayake Date: Thu, 19 Feb 2026 12:55:04 +0530 Subject: [PATCH 2/2] Mark islive as isolated --- ballerina/extern_functions.bal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ballerina/extern_functions.bal b/ballerina/extern_functions.bal index 30fc09d..e75cfb4 100644 --- a/ballerina/extern_functions.bal +++ b/ballerina/extern_functions.bal @@ -70,6 +70,6 @@ public isolated function externImmediateStop(Listener cdcListener) returns Error # + cdc - The CDC listener instance to be checked # + return - Returns `true` if the listener is considered live, `false` otherwise, # or an error if the liveness check fail -public function isLive(Listener cdc) returns boolean|Error = @java:Method { +public isolated function isLive(Listener cdc) returns boolean|Error = @java:Method { 'class: "io.ballerina.lib.cdc.Listener" } external;