Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ballerina/Dependencies.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
Expand Down Expand Up @@ -158,7 +158,7 @@ modules = [
[[package]]
org = "ballerina"
name = "observe"
version = "1.5.0"
version = "1.5.1"
dependencies = [
{org = "ballerina", name = "jballerina.java"}
]
Expand Down Expand Up @@ -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"},
Expand Down
2 changes: 1 addition & 1 deletion ballerina/extern_functions.bal
Original file line number Diff line number Diff line change
Expand Up @@ -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;