From 663cd1def79e9eb5a005d5e6443ea8c8aa2e9e9a Mon Sep 17 00:00:00 2001 From: Danesh Kuruppu Date: Wed, 19 Jun 2024 21:15:36 +0530 Subject: [PATCH 1/6] [Automated] Update native jar versions in toml files --- ballerina/Ballerina.toml | 8 ++++---- ballerina/CompilerPlugin.toml | 2 +- ballerina/Dependencies.toml | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/ballerina/Ballerina.toml b/ballerina/Ballerina.toml index 7ae4f886..fa581f8a 100644 --- a/ballerina/Ballerina.toml +++ b/ballerina/Ballerina.toml @@ -1,7 +1,7 @@ [package] org = "ballerina" name = "sql" -version = "1.13.2" +version = "1.13.3" authors = ["Ballerina"] keywords = ["database", "client", "network", "SQL", "RDBMS"] repository = "https://github.com/ballerina-platform/module-ballerina-sql" @@ -15,11 +15,11 @@ graalvmCompatible = true [[platform.java17.dependency]] groupId = "io.ballerina.stdlib" artifactId = "sql-native" -version = "1.13.2" -path = "../native/build/libs/sql-native-1.13.2.jar" +version = "1.13.3" +path = "../native/build/libs/sql-native-1.13.3-SNAPSHOT.jar" [[platform.java17.dependency]] -path = "../test-utils/build/libs/sql-test-utils-1.13.2.jar" +path = "../test-utils/build/libs/sql-test-utils-1.13.3-SNAPSHOT.jar" scope = "testOnly" [[platform.java17.dependency]] diff --git a/ballerina/CompilerPlugin.toml b/ballerina/CompilerPlugin.toml index 73e66f5c..1b508e00 100644 --- a/ballerina/CompilerPlugin.toml +++ b/ballerina/CompilerPlugin.toml @@ -3,4 +3,4 @@ id = "sql-compiler-plugin" class = "io.ballerina.stdlib.sql.compiler.SQLCompilerPlugin" [[dependency]] -path = "../compiler-plugin/build/libs/sql-compiler-plugin-1.13.2.jar" +path = "../compiler-plugin/build/libs/sql-compiler-plugin-1.13.3-SNAPSHOT.jar" diff --git a/ballerina/Dependencies.toml b/ballerina/Dependencies.toml index 6f56621d..353eb430 100644 --- a/ballerina/Dependencies.toml +++ b/ballerina/Dependencies.toml @@ -44,7 +44,7 @@ dependencies = [ [[package]] org = "ballerina" name = "crypto" -version = "2.7.0" +version = "2.7.2" scope = "testOnly" dependencies = [ {org = "ballerina", name = "jballerina.java"}, @@ -69,7 +69,7 @@ modules = [ [[package]] org = "ballerina" name = "http" -version = "2.11.0" +version = "2.11.2" scope = "testOnly" dependencies = [ {org = "ballerina", name = "auth"}, @@ -300,7 +300,7 @@ dependencies = [ [[package]] org = "ballerina" name = "sql" -version = "1.13.2" +version = "1.13.3" dependencies = [ {org = "ballerina", name = "file"}, {org = "ballerina", name = "io"}, From 76bacc1a85527fab363b58eb2c92c86722b591fa Mon Sep 17 00:00:00 2001 From: Danesh Kuruppu Date: Thu, 20 Jun 2024 09:13:45 +0530 Subject: [PATCH 2/6] [Automated] Update native jar versions in toml files --- ballerina/Ballerina.toml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/ballerina/Ballerina.toml b/ballerina/Ballerina.toml index fa581f8a..449ea4af 100644 --- a/ballerina/Ballerina.toml +++ b/ballerina/Ballerina.toml @@ -31,3 +31,15 @@ path = "./lib/HikariCP-3.3.1.jar" [[platform.java17.dependency]] path = "./lib/hsqldb-2.7.1.jar" scope = "testOnly" + +[[platform.java17.dependency]] +groupId = "org.apache.logging.log4j" +artifactId = "log4j-core" +version = "2.17.1" +path = "./lib/log4j-core-2.17.1.jar" + +[[platform.java17.dependency]] +groupId = "org.apache.logging.log4j" +artifactId = "log4j-slf4j-impl" +version = "2.17.1" +path = "./lib/log4j-slf4j-impl-2.17.1.jar" From b5845781f65643792e1b4c01b41dd282199500e0 Mon Sep 17 00:00:00 2001 From: Danesh Kuruppu Date: Thu, 20 Jun 2024 11:33:54 +0530 Subject: [PATCH 3/6] [Automated] Update native jar versions in toml files --- ballerina/Ballerina.toml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/ballerina/Ballerina.toml b/ballerina/Ballerina.toml index 449ea4af..9db6663e 100644 --- a/ballerina/Ballerina.toml +++ b/ballerina/Ballerina.toml @@ -32,14 +32,14 @@ path = "./lib/HikariCP-3.3.1.jar" path = "./lib/hsqldb-2.7.1.jar" scope = "testOnly" -[[platform.java17.dependency]] -groupId = "org.apache.logging.log4j" -artifactId = "log4j-core" -version = "2.17.1" -path = "./lib/log4j-core-2.17.1.jar" - -[[platform.java17.dependency]] -groupId = "org.apache.logging.log4j" -artifactId = "log4j-slf4j-impl" -version = "2.17.1" -path = "./lib/log4j-slf4j-impl-2.17.1.jar" +#[[platform.java17.dependency]] +#groupId = "org.apache.logging.log4j" +#artifactId = "log4j-core" +#version = "2.17.1" +#path = "./lib/log4j-core-2.17.1.jar" +# +#[[platform.java17.dependency]] +#groupId = "org.apache.logging.log4j" +#artifactId = "log4j-slf4j-impl" +#version = "2.17.1" +#path = "./lib/log4j-slf4j-impl-2.17.1.jar" From 432661acbd780ac022d98f568bed1a1a9908bbdb Mon Sep 17 00:00:00 2001 From: Danesh Kuruppu Date: Thu, 8 Aug 2024 15:30:12 +0530 Subject: [PATCH 4/6] [Automated] Update native jar versions in toml files --- ballerina/Ballerina.toml | 22 +++++----------------- ballerina/CompilerPlugin.toml | 2 +- 2 files changed, 6 insertions(+), 18 deletions(-) diff --git a/ballerina/Ballerina.toml b/ballerina/Ballerina.toml index 9db6663e..fd37f780 100644 --- a/ballerina/Ballerina.toml +++ b/ballerina/Ballerina.toml @@ -1,13 +1,13 @@ [package] org = "ballerina" name = "sql" -version = "1.13.3" +version = "1.14.0" authors = ["Ballerina"] keywords = ["database", "client", "network", "SQL", "RDBMS"] repository = "https://github.com/ballerina-platform/module-ballerina-sql" icon = "icon.png" license = ["Apache-2.0"] -distribution = "2201.9.0" +distribution = "2201.10.0" [platform.java17] graalvmCompatible = true @@ -15,11 +15,11 @@ graalvmCompatible = true [[platform.java17.dependency]] groupId = "io.ballerina.stdlib" artifactId = "sql-native" -version = "1.13.3" -path = "../native/build/libs/sql-native-1.13.3-SNAPSHOT.jar" +version = "1.14.0" +path = "../native/build/libs/sql-native-1.14.0-SNAPSHOT.jar" [[platform.java17.dependency]] -path = "../test-utils/build/libs/sql-test-utils-1.13.3-SNAPSHOT.jar" +path = "../test-utils/build/libs/sql-test-utils-1.14.0-SNAPSHOT.jar" scope = "testOnly" [[platform.java17.dependency]] @@ -31,15 +31,3 @@ path = "./lib/HikariCP-3.3.1.jar" [[platform.java17.dependency]] path = "./lib/hsqldb-2.7.1.jar" scope = "testOnly" - -#[[platform.java17.dependency]] -#groupId = "org.apache.logging.log4j" -#artifactId = "log4j-core" -#version = "2.17.1" -#path = "./lib/log4j-core-2.17.1.jar" -# -#[[platform.java17.dependency]] -#groupId = "org.apache.logging.log4j" -#artifactId = "log4j-slf4j-impl" -#version = "2.17.1" -#path = "./lib/log4j-slf4j-impl-2.17.1.jar" diff --git a/ballerina/CompilerPlugin.toml b/ballerina/CompilerPlugin.toml index 1b508e00..d03cd7ab 100644 --- a/ballerina/CompilerPlugin.toml +++ b/ballerina/CompilerPlugin.toml @@ -3,4 +3,4 @@ id = "sql-compiler-plugin" class = "io.ballerina.stdlib.sql.compiler.SQLCompilerPlugin" [[dependency]] -path = "../compiler-plugin/build/libs/sql-compiler-plugin-1.13.3-SNAPSHOT.jar" +path = "../compiler-plugin/build/libs/sql-compiler-plugin-1.14.0-SNAPSHOT.jar" From a21b0b031418ef50659bfd1ab1c8be7631741e31 Mon Sep 17 00:00:00 2001 From: Danesh Kuruppu Date: Thu, 8 Aug 2024 15:44:15 +0530 Subject: [PATCH 5/6] [Automated] Update native jar versions in toml files --- ballerina/Dependencies.toml | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/ballerina/Dependencies.toml b/ballerina/Dependencies.toml index 353eb430..ff2bbde7 100644 --- a/ballerina/Dependencies.toml +++ b/ballerina/Dependencies.toml @@ -5,12 +5,12 @@ [ballerina] dependencies-toml-version = "2" -distribution-version = "2201.9.0" +distribution-version = "2201.10.0-20240806-083400-aabac46a" [[package]] org = "ballerina" name = "auth" -version = "2.11.0" +version = "2.12.0" scope = "testOnly" dependencies = [ {org = "ballerina", name = "crypto"}, @@ -54,7 +54,7 @@ dependencies = [ [[package]] org = "ballerina" name = "file" -version = "1.9.0" +version = "1.10.0" scope = "testOnly" dependencies = [ {org = "ballerina", name = "io"}, @@ -69,7 +69,7 @@ modules = [ [[package]] org = "ballerina" name = "http" -version = "2.11.2" +version = "2.12.0" scope = "testOnly" dependencies = [ {org = "ballerina", name = "auth"}, @@ -98,7 +98,7 @@ dependencies = [ [[package]] org = "ballerina" name = "io" -version = "1.6.0" +version = "1.6.1" dependencies = [ {org = "ballerina", name = "jballerina.java"}, {org = "ballerina", name = "lang.value"} @@ -118,11 +118,12 @@ modules = [ [[package]] org = "ballerina" name = "jwt" -version = "2.11.0" +version = "3.0.0" scope = "testOnly" dependencies = [ {org = "ballerina", name = "cache"}, {org = "ballerina", name = "crypto"}, + {org = "ballerina", name = "io"}, {org = "ballerina", name = "jballerina.java"}, {org = "ballerina", name = "lang.int"}, {org = "ballerina", name = "lang.string"}, @@ -244,7 +245,7 @@ dependencies = [ [[package]] org = "ballerina" name = "log" -version = "2.9.0" +version = "2.10.0" scope = "testOnly" dependencies = [ {org = "ballerina", name = "io"}, @@ -256,18 +257,19 @@ dependencies = [ [[package]] org = "ballerina" name = "mime" -version = "2.9.0" +version = "2.10.0" scope = "testOnly" dependencies = [ {org = "ballerina", name = "io"}, {org = "ballerina", name = "jballerina.java"}, - {org = "ballerina", name = "lang.int"} + {org = "ballerina", name = "lang.int"}, + {org = "ballerina", name = "log"} ] [[package]] org = "ballerina" name = "oauth2" -version = "2.11.0" +version = "2.12.0" scope = "testOnly" dependencies = [ {org = "ballerina", name = "cache"}, @@ -281,7 +283,7 @@ dependencies = [ [[package]] org = "ballerina" name = "observe" -version = "1.2.3" +version = "1.3.0" scope = "testOnly" dependencies = [ {org = "ballerina", name = "jballerina.java"} @@ -300,7 +302,7 @@ dependencies = [ [[package]] org = "ballerina" name = "sql" -version = "1.13.3" +version = "1.14.0" dependencies = [ {org = "ballerina", name = "file"}, {org = "ballerina", name = "io"}, From 9d04327705c9b171fc58a6375fec88ed6fc7b42c Mon Sep 17 00:00:00 2001 From: Danesh Kuruppu Date: Thu, 8 Aug 2024 15:47:10 +0530 Subject: [PATCH 6/6] update the version for the update 10 release --- build-config/resources/Ballerina.toml | 2 +- gradle.properties | 28 +++++++++++++-------------- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/build-config/resources/Ballerina.toml b/build-config/resources/Ballerina.toml index cc4d787f..63cfb32d 100644 --- a/build-config/resources/Ballerina.toml +++ b/build-config/resources/Ballerina.toml @@ -7,7 +7,7 @@ keywords = ["database", "client", "network", "SQL", "RDBMS"] repository = "https://github.com/ballerina-platform/module-ballerina-sql" icon = "icon.png" license = ["Apache-2.0"] -distribution = "2201.9.0" +distribution = "2201.10.0" [platform.java17] graalvmCompatible = true diff --git a/gradle.properties b/gradle.properties index e110793e..4ac53062 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ group=io.ballerina.stdlib -version=1.13.3-SNAPSHOT +version=1.14.0-SNAPSHOT puppycrawlCheckstyleVersion=10.12.1 hikkariLibVersion=3.3.1 @@ -14,23 +14,23 @@ researchgateReleaseVersion=2.8.0 testngVersion=7.6.1 ballerinaGradlePluginVersion=2.0.1 -ballerinaLangVersion=2201.9.0 +ballerinaLangVersion=2201.10.0-20240806-083400-aabac46a # Direct Dependencies # Level 01 -stdlibIoVersion=1.6.0 +stdlibIoVersion=1.6.1 stdlibTimeVersion=2.4.0 # Level 02 -stdlibLogVersion=2.9.0 +stdlibLogVersion=2.10.0-20240807-203000-b85cfb9 stdlibOsVersion=1.8.0 # Level 03 -stdlibFileVersion=1.9.0 +stdlibFileVersion=1.10.0-20240807-205900-a4d66bb # Ballerinax Observer -observeVersion=1.2.3 -observeInternalVersion=1.2.2 +observeVersion=1.3.0-20240807-093200-e29ca7a +observeInternalVersion=1.3.0-20240807-094500-91e2d3a # Transitive Dependencies # Level 01 @@ -38,21 +38,21 @@ stdlibConstraintVersion=1.5.0 stdlibUrlVersion=2.4.0 # Level 02 -stdlibCryptoVersion=2.7.0 +stdlibCryptoVersion=2.7.2 stdlibTaskVersion=2.5.0 # Level 03 stdlibCacheVersion=3.8.0 -stdlibMimeVersion=2.9.0 +stdlibMimeVersion=2.10.0-20240807-205100-2728cdc stdlibUuidVersion=1.8.0 # Level 04 -stdlibAuthVersion=2.11.0 -stdlibJwtVersion=2.11.0 -stdlibOAuth2Version=2.11.0 +stdlibAuthVersion=2.12.0-20240807-214700-37b31bb +stdlibJwtVersion=3.0.0-20240807-214800-ea931f0 +stdlibOAuth2Version=2.12.0-20240807-220200-7f7294b # Level 05 -stdlibHttpVersion=2.11.0 +stdlibHttpVersion=2.12.0-20240808-064600-7e5bc3c # Level 06 -stdlibTransactionVersion=1.9.0 +stdlibTransactionVersion=1.10.0-20240808-113100-f651aee