From b8b2c43fe53090116bc78a29c830bb552e6bdb92 Mon Sep 17 00:00:00 2001 From: ayeshLK Date: Wed, 10 Apr 2024 10:30:34 +0530 Subject: [PATCH 1/5] [Automated] Update the native jar versions --- ballerina-tests/Ballerina.toml | 4 ++-- ballerina-tests/Dependencies.toml | 21 +++++++++++---------- 2 files changed, 13 insertions(+), 12 deletions(-) diff --git a/ballerina-tests/Ballerina.toml b/ballerina-tests/Ballerina.toml index 5672b49e..0bde17b3 100644 --- a/ballerina-tests/Ballerina.toml +++ b/ballerina-tests/Ballerina.toml @@ -1,10 +1,10 @@ [package] org = "ballerina" name = "websub_tests" -version = "2.10.1" +version = "2.11.0" [platform.java17] graalvmCompatible = true [[platform.java17.dependency]] -path = "../native/build/libs/websub-native-2.10.1-SNAPSHOT.jar" +path = "../native/build/libs/websub-native-2.11.0-SNAPSHOT.jar" diff --git a/ballerina-tests/Dependencies.toml b/ballerina-tests/Dependencies.toml index c54731a7..d52ca302 100644 --- a/ballerina-tests/Dependencies.toml +++ b/ballerina-tests/Dependencies.toml @@ -5,12 +5,12 @@ [ballerina] dependencies-toml-version = "2" -distribution-version = "2201.8.0" +distribution-version = "2201.9.0-20240405-165800-4b163f78" [[package]] org = "ballerina" name = "auth" -version = "2.10.0" +version = "2.11.0" scope = "testOnly" dependencies = [ {org = "ballerina", name = "crypto"}, @@ -23,7 +23,7 @@ dependencies = [ [[package]] org = "ballerina" name = "cache" -version = "3.7.1" +version = "3.8.0" scope = "testOnly" dependencies = [ {org = "ballerina", name = "constraint"}, @@ -35,7 +35,7 @@ dependencies = [ [[package]] org = "ballerina" name = "constraint" -version = "1.4.0" +version = "1.5.0" scope = "testOnly" dependencies = [ {org = "ballerina", name = "jballerina.java"} @@ -44,7 +44,7 @@ dependencies = [ [[package]] org = "ballerina" name = "crypto" -version = "2.5.0" +version = "2.7.0" scope = "testOnly" dependencies = [ {org = "ballerina", name = "jballerina.java"}, @@ -111,7 +111,7 @@ scope = "testOnly" [[package]] org = "ballerina" name = "jwt" -version = "2.10.0" +version = "2.11.0" scope = "testOnly" dependencies = [ {org = "ballerina", name = "cache"}, @@ -241,7 +241,7 @@ dependencies = [ [[package]] org = "ballerina" name = "oauth2" -version = "2.10.0" +version = "2.11.0" scope = "testOnly" dependencies = [ {org = "ballerina", name = "cache"}, @@ -255,7 +255,7 @@ dependencies = [ [[package]] org = "ballerina" name = "observe" -version = "1.2.2" +version = "1.2.3" scope = "testOnly" dependencies = [ {org = "ballerina", name = "jballerina.java"} @@ -288,6 +288,7 @@ version = "0.0.0" scope = "testOnly" dependencies = [ {org = "ballerina", name = "jballerina.java"}, + {org = "ballerina", name = "lang.array"}, {org = "ballerina", name = "lang.error"} ] modules = [ @@ -315,7 +316,7 @@ dependencies = [ [[package]] org = "ballerina" name = "websub" -version = "2.10.1" +version = "2.11.0" scope = "testOnly" dependencies = [ {org = "ballerina", name = "crypto"}, @@ -336,7 +337,7 @@ modules = [ [[package]] org = "ballerina" name = "websub_tests" -version = "2.10.1" +version = "2.11.0" dependencies = [ {org = "ballerina", name = "test"}, {org = "ballerina", name = "websub"} From d4726d1f66b35497187934d0c0d189a4dc720a33 Mon Sep 17 00:00:00 2001 From: ayeshLK Date: Wed, 10 Apr 2024 10:31:51 +0530 Subject: [PATCH 2/5] [Automated] Update the native jar versions --- ballerina/Ballerina.toml | 6 +++--- ballerina/CompilerPlugin.toml | 2 +- ballerina/Dependencies.toml | 21 +++++++++++---------- 3 files changed, 15 insertions(+), 14 deletions(-) diff --git a/ballerina/Ballerina.toml b/ballerina/Ballerina.toml index 8a680a1b..57894cf0 100644 --- a/ballerina/Ballerina.toml +++ b/ballerina/Ballerina.toml @@ -1,7 +1,7 @@ [package] org = "ballerina" name = "websub" -version = "2.10.1" +version = "2.11.0" authors = ["Ballerina"] keywords = ["websub", "subscriber", "service", "listener"] repository = "https://github.com/ballerina-platform/module-ballerina-websub" @@ -15,5 +15,5 @@ graalvmCompatible = true [[platform.java17.dependency]] groupId = "io.ballerina.stdlib" artifactId = "websub-native" -version = "2.10.1" -path = "../native/build/libs/websub-native-2.10.1-SNAPSHOT.jar" +version = "2.11.0" +path = "../native/build/libs/websub-native-2.11.0-SNAPSHOT.jar" diff --git a/ballerina/CompilerPlugin.toml b/ballerina/CompilerPlugin.toml index bf70174e..67867190 100644 --- a/ballerina/CompilerPlugin.toml +++ b/ballerina/CompilerPlugin.toml @@ -3,4 +3,4 @@ id = "websub-compiler-plugin" class = "io.ballerina.stdlib.websub.WebSubCompilerPlugin" [[dependency]] -path = "../compiler-plugin/build/libs/websub-compiler-plugin-2.10.1-SNAPSHOT.jar" +path = "../compiler-plugin/build/libs/websub-compiler-plugin-2.11.0-SNAPSHOT.jar" diff --git a/ballerina/Dependencies.toml b/ballerina/Dependencies.toml index c37c3170..a5ecd842 100644 --- a/ballerina/Dependencies.toml +++ b/ballerina/Dependencies.toml @@ -5,12 +5,12 @@ [ballerina] dependencies-toml-version = "2" -distribution-version = "2201.8.0" +distribution-version = "2201.9.0-20240405-165800-4b163f78" [[package]] org = "ballerina" name = "auth" -version = "2.10.0" +version = "2.11.0" dependencies = [ {org = "ballerina", name = "crypto"}, {org = "ballerina", name = "jballerina.java"}, @@ -22,7 +22,7 @@ dependencies = [ [[package]] org = "ballerina" name = "cache" -version = "3.7.1" +version = "3.8.0" dependencies = [ {org = "ballerina", name = "constraint"}, {org = "ballerina", name = "jballerina.java"}, @@ -33,7 +33,7 @@ dependencies = [ [[package]] org = "ballerina" name = "constraint" -version = "1.4.0" +version = "1.5.0" dependencies = [ {org = "ballerina", name = "jballerina.java"} ] @@ -41,7 +41,7 @@ dependencies = [ [[package]] org = "ballerina" name = "crypto" -version = "2.5.0" +version = "2.7.0" dependencies = [ {org = "ballerina", name = "jballerina.java"}, {org = "ballerina", name = "time"} @@ -113,7 +113,7 @@ modules = [ [[package]] org = "ballerina" name = "jwt" -version = "2.10.0" +version = "2.11.0" dependencies = [ {org = "ballerina", name = "cache"}, {org = "ballerina", name = "crypto"}, @@ -246,7 +246,7 @@ modules = [ [[package]] org = "ballerina" name = "oauth2" -version = "2.10.0" +version = "2.11.0" dependencies = [ {org = "ballerina", name = "cache"}, {org = "ballerina", name = "crypto"}, @@ -259,7 +259,7 @@ dependencies = [ [[package]] org = "ballerina" name = "observe" -version = "1.2.2" +version = "1.2.3" dependencies = [ {org = "ballerina", name = "jballerina.java"} ] @@ -289,6 +289,7 @@ version = "0.0.0" scope = "testOnly" dependencies = [ {org = "ballerina", name = "jballerina.java"}, + {org = "ballerina", name = "lang.array"}, {org = "ballerina", name = "lang.error"} ] modules = [ @@ -320,7 +321,7 @@ modules = [ [[package]] org = "ballerina" name = "uuid" -version = "1.7.0" +version = "1.8.0" scope = "testOnly" dependencies = [ {org = "ballerina", name = "crypto"}, @@ -335,7 +336,7 @@ modules = [ [[package]] org = "ballerina" name = "websub" -version = "2.10.1" +version = "2.11.0" dependencies = [ {org = "ballerina", name = "crypto"}, {org = "ballerina", name = "http"}, From d6499ab0c9415127224da7731a50a7b6d15ee52a Mon Sep 17 00:00:00 2001 From: ayeshLK Date: Wed, 10 Apr 2024 10:33:08 +0530 Subject: [PATCH 3/5] Update dependency versions --- gradle.properties | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/gradle.properties b/gradle.properties index 04540e76..92e6e7ff 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,7 +1,7 @@ org.gradle.caching=true group=io.ballerina.stdlib -version=2.10.1-SNAPSHOT -ballerinaLangVersion=2201.8.0 +version=2.11.0-SNAPSHOT +ballerinaLangVersion=2201.9.0-20240405-165800-4b163f78 puppycrawlCheckstyleVersion=10.12.0 testngVersion=7.6.1 ballerinaGradlePluginVersion=2.0.1 @@ -12,30 +12,30 @@ stdlibIoVersion=1.6.0 stdlibRandomVersion=1.5.0 stdlibTimeVersion=2.4.0 stdlibUrlVersion=2.4.0 -stdlibCryptoVersion=2.5.0 +stdlibCryptoVersion=2.7.0-20240328-114200-c8cc19f stdlibLogVersion=2.9.0 stdlibMimeVersion=2.9.0 -stdlibUuidVersion=1.7.0 +stdlibUuidVersion=1.8.0-20240409-104400-2aaa58d stdlibHttpVersion=2.10.0 # Transitive Dependencies # Level 01 -stdlibConstraintVersion=1.4.0 +stdlibConstraintVersion=1.5.0 # Level 02 stdlibOsVersion=1.8.0 stdlibTaskVersion=2.5.0 # Level 03 -stdlibCacheVersion=3.7.0 +stdlibCacheVersion=3.8.0-20240409-101100-e2d7f4e stdlibFileVersion=1.9.0 # Level 03 -stdlibAuthVersion=2.10.0 -stdlibJwtVersion=2.10.0 -stdlibOAuth2Version=2.10.0 +stdlibAuthVersion=2.11.0-20240409-124200-655c2d4 +stdlibJwtVersion=2.11.0-20240409-134000-9b5bf2e +stdlibOAuth2Version=2.11.0-20240409-124200-15a9919 # Ballerinax Observe -observeVersion=1.2.0 -observeInternalVersion=1.2.0 +observeVersion=1.2.3-20240408-194900-a0e331f +observeInternalVersion=1.2.2-20240408-195500-1436319 From 15da62ef0b55af0a3d4d0ba6e58d4652a2a24ad8 Mon Sep 17 00:00:00 2001 From: ayeshLK Date: Wed, 10 Apr 2024 11:02:38 +0530 Subject: [PATCH 4/5] [Automated] Update the native jar versions --- ballerina/Ballerina.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ballerina/Ballerina.toml b/ballerina/Ballerina.toml index 57894cf0..b76c632f 100644 --- a/ballerina/Ballerina.toml +++ b/ballerina/Ballerina.toml @@ -7,7 +7,7 @@ keywords = ["websub", "subscriber", "service", "listener"] repository = "https://github.com/ballerina-platform/module-ballerina-websub" icon = "icon.png" license = ["Apache-2.0"] -distribution = "2201.8.0" +distribution = "2201.9.0" [platform.java17] graalvmCompatible = true From 298f5d1b41214fc2d4900796169f3e5855eddcf6 Mon Sep 17 00:00:00 2001 From: ayeshLK Date: Wed, 10 Apr 2024 11:02:45 +0530 Subject: [PATCH 5/5] Update distribution version --- build-config/resources/Ballerina.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-config/resources/Ballerina.toml b/build-config/resources/Ballerina.toml index e304128f..ffe4be00 100644 --- a/build-config/resources/Ballerina.toml +++ b/build-config/resources/Ballerina.toml @@ -7,7 +7,7 @@ keywords = ["websub", "subscriber", "service", "listener"] repository = "https://github.com/ballerina-platform/module-ballerina-websub" icon = "icon.png" license = ["Apache-2.0"] -distribution = "2201.8.0" +distribution = "2201.9.0" [platform.java17] graalvmCompatible = true