From 76e16a4cfb6e5009b5369c10097a4208dcdf7ef4 Mon Sep 17 00:00:00 2001 From: lnash94 Date: Thu, 8 Aug 2024 16:17:24 +0530 Subject: [PATCH 1/9] Update versions for u10 --- ballerina/Ballerina.toml | 2 +- gradle.properties | 30 +++++++++++++++--------------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/ballerina/Ballerina.toml b/ballerina/Ballerina.toml index faf0a630..a14c9ebb 100644 --- a/ballerina/Ballerina.toml +++ b/ballerina/Ballerina.toml @@ -7,7 +7,7 @@ keywords = ["database", "client", "network", "SQL", "RDBMS", "SQLServer", "MSSQL repository = "https://github.com/ballerina-platform/module-ballerinax-mssql" 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 663cb1f1..3ca82f20 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ group=io.ballerina.stdlib -version=1.12.1-SNAPSHOT +version=1.13.0-SNAPSHOT puppycrawlCheckstyleVersion=10.12.0 msSQLDriverVersion=10.2.0.jre17 @@ -11,25 +11,25 @@ researchgateReleaseVersion=2.8.0 testngVersion=7.6.1 ballerinaGradlePluginVersion=2.0.1 -ballerinaLangVersion=2201.9.0 +ballerinaLangVersion=2201.10.0-20240806-083400-aabac46a -stdlibSqlVersion=1.13.0 +stdlibSqlVersion=1.13.2 # 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 @@ -37,24 +37,24 @@ 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 # Ballerina library stdlibMssqlDriverVersion=1.6.0 From bcc39d5005eba64f6cff7189638edb35d607c5fb Mon Sep 17 00:00:00 2001 From: lnash94 Date: Thu, 8 Aug 2024 17:04:47 +0530 Subject: [PATCH 2/9] [Automated] Update the native jar versions --- ballerina/Ballerina.toml | 12 ++++++------ ballerina/CompilerPlugin.toml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/ballerina/Ballerina.toml b/ballerina/Ballerina.toml index a14c9ebb..6825f1f5 100644 --- a/ballerina/Ballerina.toml +++ b/ballerina/Ballerina.toml @@ -1,13 +1,13 @@ [package] org = "ballerinax" name = "mssql" -version = "1.12.0" +version = "1.13.0" authors = ["Ballerina"] keywords = ["database", "client", "network", "SQL", "RDBMS", "SQLServer", "MSSQL"] repository = "https://github.com/ballerina-platform/module-ballerinax-mssql" icon = "icon.png" license = ["Apache-2.0"] -distribution = "2201.10.0" +distribution = "2201.9.0" [platform.java17] graalvmCompatible = true @@ -15,11 +15,11 @@ graalvmCompatible = true [[platform.java17.dependency]] groupId = "io.ballerina.stdlib" artifactId = "mssql-native" -version = "1.12.0" -path = "../native/build/libs/mssql-native-1.12.0.jar" +version = "1.13.0" +path = "../native/build/libs/mssql-native-1.13.0-SNAPSHOT.jar" [[platform.java17.dependency]] groupId = "io.ballerina.stdlib" artifactId = "sql-native" -version = "1.13.0" -path = "./lib/sql-native-1.13.0.jar" +version = "1.13.2" +path = "./lib/sql-native-1.13.2.jar" diff --git a/ballerina/CompilerPlugin.toml b/ballerina/CompilerPlugin.toml index 504c20e2..52c387ae 100644 --- a/ballerina/CompilerPlugin.toml +++ b/ballerina/CompilerPlugin.toml @@ -3,4 +3,4 @@ id = "mssql-compiler-plugin" class = "io.ballerina.stdlib.mssql.compiler.MSSQLCompilerPlugin" [[dependency]] -path = "../compiler-plugin/build/libs/mssql-compiler-plugin-1.12.0.jar" +path = "../compiler-plugin/build/libs/mssql-compiler-plugin-1.13.0-SNAPSHOT.jar" From 9f423edda4aa8a4b45e71ece41634e20c601b76e Mon Sep 17 00:00:00 2001 From: lnash94 Date: Thu, 8 Aug 2024 17:05:34 +0530 Subject: [PATCH 3/9] [Automated] Update the native jar versions --- ballerina/Dependencies.toml | 30 ++++++++++++++++-------------- gradle.properties | 2 +- 2 files changed, 17 insertions(+), 15 deletions(-) diff --git a/ballerina/Dependencies.toml b/ballerina/Dependencies.toml index cbbeba6d..c2d522da 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"}, @@ -44,7 +44,7 @@ dependencies = [ [[package]] org = "ballerina" name = "crypto" -version = "2.7.0" +version = "2.7.2" dependencies = [ {org = "ballerina", name = "jballerina.java"}, {org = "ballerina", name = "time"} @@ -56,7 +56,7 @@ modules = [ [[package]] org = "ballerina" name = "file" -version = "1.9.0" +version = "1.10.0" scope = "testOnly" dependencies = [ {org = "ballerina", name = "io"}, @@ -71,7 +71,7 @@ modules = [ [[package]] org = "ballerina" name = "http" -version = "2.11.0" +version = "2.12.0" scope = "testOnly" dependencies = [ {org = "ballerina", name = "auth"}, @@ -100,7 +100,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"} @@ -117,11 +117,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"}, @@ -237,7 +238,7 @@ dependencies = [ [[package]] org = "ballerina" name = "log" -version = "2.9.0" +version = "2.10.0" scope = "testOnly" dependencies = [ {org = "ballerina", name = "io"}, @@ -249,18 +250,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"}, @@ -274,7 +276,7 @@ dependencies = [ [[package]] org = "ballerina" name = "observe" -version = "1.2.3" +version = "1.3.0" scope = "testOnly" dependencies = [ {org = "ballerina", name = "jballerina.java"} @@ -293,7 +295,7 @@ dependencies = [ [[package]] org = "ballerina" name = "sql" -version = "1.13.0" +version = "1.13.2" dependencies = [ {org = "ballerina", name = "io"}, {org = "ballerina", name = "jballerina.java"}, @@ -385,7 +387,7 @@ modules = [ [[package]] org = "ballerinax" name = "mssql" -version = "1.12.0" +version = "1.13.0" dependencies = [ {org = "ballerina", name = "crypto"}, {org = "ballerina", name = "file"}, diff --git a/gradle.properties b/gradle.properties index 3ca82f20..d2b28491 100644 --- a/gradle.properties +++ b/gradle.properties @@ -21,7 +21,7 @@ stdlibIoVersion=1.6.1 stdlibTimeVersion=2.4.0 # Level 02 -stdlibLogVersion=2.10.0-20240807-203000-b85cfb9 +stdlibLogVersion=2.10.0-20240807-203000-b85cfb9 stdlibOsVersion=1.8.0 # Level 03 From 156d2cb26bde9a505c54abdca4d0b9ea714e6659 Mon Sep 17 00:00:00 2001 From: lnash94 Date: Thu, 8 Aug 2024 17:40:24 +0530 Subject: [PATCH 4/9] [Automated] Update the native jar versions --- ballerina/Ballerina.toml | 4 ++-- ballerina/Dependencies.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ballerina/Ballerina.toml b/ballerina/Ballerina.toml index 6825f1f5..2566aa45 100644 --- a/ballerina/Ballerina.toml +++ b/ballerina/Ballerina.toml @@ -21,5 +21,5 @@ path = "../native/build/libs/mssql-native-1.13.0-SNAPSHOT.jar" [[platform.java17.dependency]] groupId = "io.ballerina.stdlib" artifactId = "sql-native" -version = "1.13.2" -path = "./lib/sql-native-1.13.2.jar" +version = "1.14.0" +path = "./lib/sql-native-1.14.0-20240808-165400-c6639dd.jar" diff --git a/ballerina/Dependencies.toml b/ballerina/Dependencies.toml index c2d522da..fcd5477e 100644 --- a/ballerina/Dependencies.toml +++ b/ballerina/Dependencies.toml @@ -295,7 +295,7 @@ dependencies = [ [[package]] org = "ballerina" name = "sql" -version = "1.13.2" +version = "1.14.0" dependencies = [ {org = "ballerina", name = "io"}, {org = "ballerina", name = "jballerina.java"}, From db998bd1f40bbe6c666875d0ea9ec99b1e0d9dbb Mon Sep 17 00:00:00 2001 From: lnash94 Date: Thu, 8 Aug 2024 17:46:20 +0530 Subject: [PATCH 5/9] [Automated] Update the native jar versions --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index d2b28491..afee3e7c 100644 --- a/gradle.properties +++ b/gradle.properties @@ -13,7 +13,7 @@ ballerinaGradlePluginVersion=2.0.1 ballerinaLangVersion=2201.10.0-20240806-083400-aabac46a -stdlibSqlVersion=1.13.2 +stdlibSqlVersion=1.14.0-20240808-165400-c6639dd # Direct Dependencies # Level 01 From 50eb77b9c39416e1f90dcdd64ba290c4d282e425 Mon Sep 17 00:00:00 2001 From: lnash94 Date: Thu, 8 Aug 2024 18:42:26 +0530 Subject: [PATCH 6/9] [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 2566aa45..f96776d7 100644 --- a/ballerina/Ballerina.toml +++ b/ballerina/Ballerina.toml @@ -7,7 +7,7 @@ keywords = ["database", "client", "network", "SQL", "RDBMS", "SQLServer", "MSSQL repository = "https://github.com/ballerina-platform/module-ballerinax-mssql" icon = "icon.png" license = ["Apache-2.0"] -distribution = "2201.9.0" +distribution = "2201.10.0" [platform.java17] graalvmCompatible = true From 22469ef4b76ff44e78e0a982961b3ae8c7938d0a Mon Sep 17 00:00:00 2001 From: lnash94 Date: Thu, 8 Aug 2024 18:42:42 +0530 Subject: [PATCH 7/9] [Automated] Update the native jar versions --- ballerina/Dependencies.toml | 415 -------------------------- build-config/resources/Ballerina.toml | 2 +- gradle.properties | 2 +- 3 files changed, 2 insertions(+), 417 deletions(-) diff --git a/ballerina/Dependencies.toml b/ballerina/Dependencies.toml index fcd5477e..e69de29b 100644 --- a/ballerina/Dependencies.toml +++ b/ballerina/Dependencies.toml @@ -1,415 +0,0 @@ -# AUTO-GENERATED FILE. DO NOT MODIFY. - -# This file is auto-generated by Ballerina for managing dependency versions. -# It should not be modified by hand. - -[ballerina] -dependencies-toml-version = "2" -distribution-version = "2201.10.0-20240806-083400-aabac46a" - -[[package]] -org = "ballerina" -name = "auth" -version = "2.12.0" -scope = "testOnly" -dependencies = [ - {org = "ballerina", name = "crypto"}, - {org = "ballerina", name = "jballerina.java"}, - {org = "ballerina", name = "lang.array"}, - {org = "ballerina", name = "lang.string"}, - {org = "ballerina", name = "log"} -] - -[[package]] -org = "ballerina" -name = "cache" -version = "3.8.0" -scope = "testOnly" -dependencies = [ - {org = "ballerina", name = "constraint"}, - {org = "ballerina", name = "jballerina.java"}, - {org = "ballerina", name = "task"}, - {org = "ballerina", name = "time"} -] - -[[package]] -org = "ballerina" -name = "constraint" -version = "1.5.0" -scope = "testOnly" -dependencies = [ - {org = "ballerina", name = "jballerina.java"} -] - -[[package]] -org = "ballerina" -name = "crypto" -version = "2.7.2" -dependencies = [ - {org = "ballerina", name = "jballerina.java"}, - {org = "ballerina", name = "time"} -] -modules = [ - {org = "ballerina", packageName = "crypto", moduleName = "crypto"} -] - -[[package]] -org = "ballerina" -name = "file" -version = "1.10.0" -scope = "testOnly" -dependencies = [ - {org = "ballerina", name = "io"}, - {org = "ballerina", name = "jballerina.java"}, - {org = "ballerina", name = "os"}, - {org = "ballerina", name = "time"} -] -modules = [ - {org = "ballerina", packageName = "file", moduleName = "file"} -] - -[[package]] -org = "ballerina" -name = "http" -version = "2.12.0" -scope = "testOnly" -dependencies = [ - {org = "ballerina", name = "auth"}, - {org = "ballerina", name = "cache"}, - {org = "ballerina", name = "constraint"}, - {org = "ballerina", name = "crypto"}, - {org = "ballerina", name = "file"}, - {org = "ballerina", name = "io"}, - {org = "ballerina", name = "jballerina.java"}, - {org = "ballerina", name = "jwt"}, - {org = "ballerina", name = "lang.array"}, - {org = "ballerina", name = "lang.decimal"}, - {org = "ballerina", name = "lang.int"}, - {org = "ballerina", name = "lang.regexp"}, - {org = "ballerina", name = "lang.runtime"}, - {org = "ballerina", name = "lang.string"}, - {org = "ballerina", name = "lang.value"}, - {org = "ballerina", name = "log"}, - {org = "ballerina", name = "mime"}, - {org = "ballerina", name = "oauth2"}, - {org = "ballerina", name = "observe"}, - {org = "ballerina", name = "time"}, - {org = "ballerina", name = "url"} -] - -[[package]] -org = "ballerina" -name = "io" -version = "1.6.1" -dependencies = [ - {org = "ballerina", name = "jballerina.java"}, - {org = "ballerina", name = "lang.value"} -] - -[[package]] -org = "ballerina" -name = "jballerina.java" -version = "0.0.0" -modules = [ - {org = "ballerina", packageName = "jballerina.java", moduleName = "jballerina.java"} -] - -[[package]] -org = "ballerina" -name = "jwt" -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"}, - {org = "ballerina", name = "log"}, - {org = "ballerina", name = "time"} -] - -[[package]] -org = "ballerina" -name = "lang.__internal" -version = "0.0.0" -scope = "testOnly" -dependencies = [ - {org = "ballerina", name = "jballerina.java"}, - {org = "ballerina", name = "lang.object"} -] - -[[package]] -org = "ballerina" -name = "lang.array" -version = "0.0.0" -scope = "testOnly" -dependencies = [ - {org = "ballerina", name = "jballerina.java"}, - {org = "ballerina", name = "lang.__internal"} -] - -[[package]] -org = "ballerina" -name = "lang.decimal" -version = "0.0.0" -scope = "testOnly" -dependencies = [ - {org = "ballerina", name = "jballerina.java"} -] - -[[package]] -org = "ballerina" -name = "lang.error" -version = "0.0.0" -scope = "testOnly" -dependencies = [ - {org = "ballerina", name = "jballerina.java"} -] - -[[package]] -org = "ballerina" -name = "lang.int" -version = "0.0.0" -scope = "testOnly" -dependencies = [ - {org = "ballerina", name = "jballerina.java"}, - {org = "ballerina", name = "lang.__internal"}, - {org = "ballerina", name = "lang.object"} -] - -[[package]] -org = "ballerina" -name = "lang.object" -version = "0.0.0" - -[[package]] -org = "ballerina" -name = "lang.regexp" -version = "0.0.0" -scope = "testOnly" -dependencies = [ - {org = "ballerina", name = "jballerina.java"} -] - -[[package]] -org = "ballerina" -name = "lang.runtime" -version = "0.0.0" -scope = "testOnly" -dependencies = [ - {org = "ballerina", name = "jballerina.java"} -] -modules = [ - {org = "ballerina", packageName = "lang.runtime", moduleName = "lang.runtime"} -] - -[[package]] -org = "ballerina" -name = "lang.string" -version = "0.0.0" -scope = "testOnly" -dependencies = [ - {org = "ballerina", name = "jballerina.java"}, - {org = "ballerina", name = "lang.regexp"} -] -modules = [ - {org = "ballerina", packageName = "lang.string", moduleName = "lang.string"} -] - -[[package]] -org = "ballerina" -name = "lang.transaction" -version = "0.0.0" -scope = "testOnly" -dependencies = [ - {org = "ballerina", name = "jballerina.java"} -] - -[[package]] -org = "ballerina" -name = "lang.value" -version = "0.0.0" -dependencies = [ - {org = "ballerina", name = "jballerina.java"} -] - -[[package]] -org = "ballerina" -name = "log" -version = "2.10.0" -scope = "testOnly" -dependencies = [ - {org = "ballerina", name = "io"}, - {org = "ballerina", name = "jballerina.java"}, - {org = "ballerina", name = "lang.value"}, - {org = "ballerina", name = "observe"} -] - -[[package]] -org = "ballerina" -name = "mime" -version = "2.10.0" -scope = "testOnly" -dependencies = [ - {org = "ballerina", name = "io"}, - {org = "ballerina", name = "jballerina.java"}, - {org = "ballerina", name = "lang.int"}, - {org = "ballerina", name = "log"} -] - -[[package]] -org = "ballerina" -name = "oauth2" -version = "2.12.0" -scope = "testOnly" -dependencies = [ - {org = "ballerina", name = "cache"}, - {org = "ballerina", name = "crypto"}, - {org = "ballerina", name = "jballerina.java"}, - {org = "ballerina", name = "log"}, - {org = "ballerina", name = "time"}, - {org = "ballerina", name = "url"} -] - -[[package]] -org = "ballerina" -name = "observe" -version = "1.3.0" -scope = "testOnly" -dependencies = [ - {org = "ballerina", name = "jballerina.java"} -] - -[[package]] -org = "ballerina" -name = "os" -version = "1.8.0" -scope = "testOnly" -dependencies = [ - {org = "ballerina", name = "io"}, - {org = "ballerina", name = "jballerina.java"} -] - -[[package]] -org = "ballerina" -name = "sql" -version = "1.14.0" -dependencies = [ - {org = "ballerina", name = "io"}, - {org = "ballerina", name = "jballerina.java"}, - {org = "ballerina", name = "lang.object"}, - {org = "ballerina", name = "time"} -] -modules = [ - {org = "ballerina", packageName = "sql", moduleName = "sql"} -] - -[[package]] -org = "ballerina" -name = "task" -version = "2.5.0" -scope = "testOnly" -dependencies = [ - {org = "ballerina", name = "jballerina.java"}, - {org = "ballerina", name = "time"} -] - -[[package]] -org = "ballerina" -name = "test" -version = "0.0.0" -scope = "testOnly" -dependencies = [ - {org = "ballerina", name = "jballerina.java"}, - {org = "ballerina", name = "lang.array"}, - {org = "ballerina", name = "lang.error"} -] -modules = [ - {org = "ballerina", packageName = "test", moduleName = "test"} -] - -[[package]] -org = "ballerina" -name = "time" -version = "2.4.0" -dependencies = [ - {org = "ballerina", name = "jballerina.java"} -] -modules = [ - {org = "ballerina", packageName = "time", moduleName = "time"} -] - -[[package]] -org = "ballerina" -name = "url" -version = "2.4.0" -scope = "testOnly" -dependencies = [ - {org = "ballerina", name = "jballerina.java"} -] - -[[package]] -org = "ballerina" -name = "uuid" -version = "1.8.0" -scope = "testOnly" -dependencies = [ - {org = "ballerina", name = "crypto"}, - {org = "ballerina", name = "jballerina.java"}, - {org = "ballerina", name = "lang.int"}, - {org = "ballerina", name = "time"} -] - -[[package]] -org = "ballerinai" -name = "transaction" -version = "0.0.0" -scope = "testOnly" -dependencies = [ - {org = "ballerina", name = "cache"}, - {org = "ballerina", name = "http"}, - {org = "ballerina", name = "io"}, - {org = "ballerina", name = "jballerina.java"}, - {org = "ballerina", name = "lang.runtime"}, - {org = "ballerina", name = "lang.transaction"}, - {org = "ballerina", name = "lang.value"}, - {org = "ballerina", name = "log"}, - {org = "ballerina", name = "task"}, - {org = "ballerina", name = "time"}, - {org = "ballerina", name = "uuid"} -] -modules = [ - {org = "ballerinai", packageName = "transaction", moduleName = "transaction"} -] - -[[package]] -org = "ballerinax" -name = "mssql" -version = "1.13.0" -dependencies = [ - {org = "ballerina", name = "crypto"}, - {org = "ballerina", name = "file"}, - {org = "ballerina", name = "jballerina.java"}, - {org = "ballerina", name = "lang.runtime"}, - {org = "ballerina", name = "lang.string"}, - {org = "ballerina", name = "sql"}, - {org = "ballerina", name = "test"}, - {org = "ballerina", name = "time"}, - {org = "ballerinai", name = "transaction"}, - {org = "ballerinax", name = "mssql.driver"} -] -modules = [ - {org = "ballerinax", packageName = "mssql", moduleName = "mssql"} -] - -[[package]] -org = "ballerinax" -name = "mssql.driver" -version = "1.6.0" -scope = "testOnly" -modules = [ - {org = "ballerinax", packageName = "mssql.driver", moduleName = "mssql.driver"} -] - diff --git a/build-config/resources/Ballerina.toml b/build-config/resources/Ballerina.toml index 4c51bf2a..f91732bd 100644 --- a/build-config/resources/Ballerina.toml +++ b/build-config/resources/Ballerina.toml @@ -7,7 +7,7 @@ keywords = ["database", "client", "network", "SQL", "RDBMS", "SQLServer", "MSSQL repository = "https://github.com/ballerina-platform/module-ballerinax-mssql" 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 afee3e7c..013bbf84 100644 --- a/gradle.properties +++ b/gradle.properties @@ -47,7 +47,7 @@ stdlibUuidVersion=1.8.0 # Level 04 stdlibAuthVersion=2.12.0-20240807-214700-37b31bb -stdlibJwtVersion=3.0.0-20240807-214800-ea931f0 +stdlibJwtVersion=2.13.0-20240809-095500-b9d03ed stdlibOAuth2Version=2.12.0-20240807-220200-7f7294b # Level 05 From 7128a4b1c5f08ce277fafe383f164aef7d39e822 Mon Sep 17 00:00:00 2001 From: lnash94 Date: Fri, 9 Aug 2024 15:20:03 +0530 Subject: [PATCH 8/9] [Automated] Update the native jar versions --- ballerina/Ballerina.toml | 2 +- ballerina/Dependencies.toml | 415 ++++++++++++++++++++++++++++++++++++ 2 files changed, 416 insertions(+), 1 deletion(-) diff --git a/ballerina/Ballerina.toml b/ballerina/Ballerina.toml index f96776d7..044b3b75 100644 --- a/ballerina/Ballerina.toml +++ b/ballerina/Ballerina.toml @@ -22,4 +22,4 @@ path = "../native/build/libs/mssql-native-1.13.0-SNAPSHOT.jar" groupId = "io.ballerina.stdlib" artifactId = "sql-native" version = "1.14.0" -path = "./lib/sql-native-1.14.0-20240808-165400-c6639dd.jar" +path = "./lib/sql-native-1.14.0-20240809-142900-0689c89.jar" diff --git a/ballerina/Dependencies.toml b/ballerina/Dependencies.toml index e69de29b..aa4e4cb4 100644 --- a/ballerina/Dependencies.toml +++ b/ballerina/Dependencies.toml @@ -0,0 +1,415 @@ +# AUTO-GENERATED FILE. DO NOT MODIFY. + +# This file is auto-generated by Ballerina for managing dependency versions. +# It should not be modified by hand. + +[ballerina] +dependencies-toml-version = "2" +distribution-version = "2201.10.0-20240806-083400-aabac46a" + +[[package]] +org = "ballerina" +name = "auth" +version = "2.12.0" +scope = "testOnly" +dependencies = [ + {org = "ballerina", name = "crypto"}, + {org = "ballerina", name = "jballerina.java"}, + {org = "ballerina", name = "lang.array"}, + {org = "ballerina", name = "lang.string"}, + {org = "ballerina", name = "log"} +] + +[[package]] +org = "ballerina" +name = "cache" +version = "3.8.0" +scope = "testOnly" +dependencies = [ + {org = "ballerina", name = "constraint"}, + {org = "ballerina", name = "jballerina.java"}, + {org = "ballerina", name = "task"}, + {org = "ballerina", name = "time"} +] + +[[package]] +org = "ballerina" +name = "constraint" +version = "1.5.0" +scope = "testOnly" +dependencies = [ + {org = "ballerina", name = "jballerina.java"} +] + +[[package]] +org = "ballerina" +name = "crypto" +version = "2.7.2" +dependencies = [ + {org = "ballerina", name = "jballerina.java"}, + {org = "ballerina", name = "time"} +] +modules = [ + {org = "ballerina", packageName = "crypto", moduleName = "crypto"} +] + +[[package]] +org = "ballerina" +name = "file" +version = "1.10.0" +scope = "testOnly" +dependencies = [ + {org = "ballerina", name = "io"}, + {org = "ballerina", name = "jballerina.java"}, + {org = "ballerina", name = "os"}, + {org = "ballerina", name = "time"} +] +modules = [ + {org = "ballerina", packageName = "file", moduleName = "file"} +] + +[[package]] +org = "ballerina" +name = "http" +version = "2.12.0" +scope = "testOnly" +dependencies = [ + {org = "ballerina", name = "auth"}, + {org = "ballerina", name = "cache"}, + {org = "ballerina", name = "constraint"}, + {org = "ballerina", name = "crypto"}, + {org = "ballerina", name = "file"}, + {org = "ballerina", name = "io"}, + {org = "ballerina", name = "jballerina.java"}, + {org = "ballerina", name = "jwt"}, + {org = "ballerina", name = "lang.array"}, + {org = "ballerina", name = "lang.decimal"}, + {org = "ballerina", name = "lang.int"}, + {org = "ballerina", name = "lang.regexp"}, + {org = "ballerina", name = "lang.runtime"}, + {org = "ballerina", name = "lang.string"}, + {org = "ballerina", name = "lang.value"}, + {org = "ballerina", name = "log"}, + {org = "ballerina", name = "mime"}, + {org = "ballerina", name = "oauth2"}, + {org = "ballerina", name = "observe"}, + {org = "ballerina", name = "time"}, + {org = "ballerina", name = "url"} +] + +[[package]] +org = "ballerina" +name = "io" +version = "1.6.1" +dependencies = [ + {org = "ballerina", name = "jballerina.java"}, + {org = "ballerina", name = "lang.value"} +] + +[[package]] +org = "ballerina" +name = "jballerina.java" +version = "0.0.0" +modules = [ + {org = "ballerina", packageName = "jballerina.java", moduleName = "jballerina.java"} +] + +[[package]] +org = "ballerina" +name = "jwt" +version = "2.13.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"}, + {org = "ballerina", name = "log"}, + {org = "ballerina", name = "time"} +] + +[[package]] +org = "ballerina" +name = "lang.__internal" +version = "0.0.0" +scope = "testOnly" +dependencies = [ + {org = "ballerina", name = "jballerina.java"}, + {org = "ballerina", name = "lang.object"} +] + +[[package]] +org = "ballerina" +name = "lang.array" +version = "0.0.0" +scope = "testOnly" +dependencies = [ + {org = "ballerina", name = "jballerina.java"}, + {org = "ballerina", name = "lang.__internal"} +] + +[[package]] +org = "ballerina" +name = "lang.decimal" +version = "0.0.0" +scope = "testOnly" +dependencies = [ + {org = "ballerina", name = "jballerina.java"} +] + +[[package]] +org = "ballerina" +name = "lang.error" +version = "0.0.0" +scope = "testOnly" +dependencies = [ + {org = "ballerina", name = "jballerina.java"} +] + +[[package]] +org = "ballerina" +name = "lang.int" +version = "0.0.0" +scope = "testOnly" +dependencies = [ + {org = "ballerina", name = "jballerina.java"}, + {org = "ballerina", name = "lang.__internal"}, + {org = "ballerina", name = "lang.object"} +] + +[[package]] +org = "ballerina" +name = "lang.object" +version = "0.0.0" + +[[package]] +org = "ballerina" +name = "lang.regexp" +version = "0.0.0" +scope = "testOnly" +dependencies = [ + {org = "ballerina", name = "jballerina.java"} +] + +[[package]] +org = "ballerina" +name = "lang.runtime" +version = "0.0.0" +scope = "testOnly" +dependencies = [ + {org = "ballerina", name = "jballerina.java"} +] +modules = [ + {org = "ballerina", packageName = "lang.runtime", moduleName = "lang.runtime"} +] + +[[package]] +org = "ballerina" +name = "lang.string" +version = "0.0.0" +scope = "testOnly" +dependencies = [ + {org = "ballerina", name = "jballerina.java"}, + {org = "ballerina", name = "lang.regexp"} +] +modules = [ + {org = "ballerina", packageName = "lang.string", moduleName = "lang.string"} +] + +[[package]] +org = "ballerina" +name = "lang.transaction" +version = "0.0.0" +scope = "testOnly" +dependencies = [ + {org = "ballerina", name = "jballerina.java"} +] + +[[package]] +org = "ballerina" +name = "lang.value" +version = "0.0.0" +dependencies = [ + {org = "ballerina", name = "jballerina.java"} +] + +[[package]] +org = "ballerina" +name = "log" +version = "2.10.0" +scope = "testOnly" +dependencies = [ + {org = "ballerina", name = "io"}, + {org = "ballerina", name = "jballerina.java"}, + {org = "ballerina", name = "lang.value"}, + {org = "ballerina", name = "observe"} +] + +[[package]] +org = "ballerina" +name = "mime" +version = "2.10.0" +scope = "testOnly" +dependencies = [ + {org = "ballerina", name = "io"}, + {org = "ballerina", name = "jballerina.java"}, + {org = "ballerina", name = "lang.int"}, + {org = "ballerina", name = "log"} +] + +[[package]] +org = "ballerina" +name = "oauth2" +version = "2.12.0" +scope = "testOnly" +dependencies = [ + {org = "ballerina", name = "cache"}, + {org = "ballerina", name = "crypto"}, + {org = "ballerina", name = "jballerina.java"}, + {org = "ballerina", name = "log"}, + {org = "ballerina", name = "time"}, + {org = "ballerina", name = "url"} +] + +[[package]] +org = "ballerina" +name = "observe" +version = "1.3.0" +scope = "testOnly" +dependencies = [ + {org = "ballerina", name = "jballerina.java"} +] + +[[package]] +org = "ballerina" +name = "os" +version = "1.8.0" +scope = "testOnly" +dependencies = [ + {org = "ballerina", name = "io"}, + {org = "ballerina", name = "jballerina.java"} +] + +[[package]] +org = "ballerina" +name = "sql" +version = "1.14.0" +dependencies = [ + {org = "ballerina", name = "io"}, + {org = "ballerina", name = "jballerina.java"}, + {org = "ballerina", name = "lang.object"}, + {org = "ballerina", name = "time"} +] +modules = [ + {org = "ballerina", packageName = "sql", moduleName = "sql"} +] + +[[package]] +org = "ballerina" +name = "task" +version = "2.5.0" +scope = "testOnly" +dependencies = [ + {org = "ballerina", name = "jballerina.java"}, + {org = "ballerina", name = "time"} +] + +[[package]] +org = "ballerina" +name = "test" +version = "0.0.0" +scope = "testOnly" +dependencies = [ + {org = "ballerina", name = "jballerina.java"}, + {org = "ballerina", name = "lang.array"}, + {org = "ballerina", name = "lang.error"} +] +modules = [ + {org = "ballerina", packageName = "test", moduleName = "test"} +] + +[[package]] +org = "ballerina" +name = "time" +version = "2.4.0" +dependencies = [ + {org = "ballerina", name = "jballerina.java"} +] +modules = [ + {org = "ballerina", packageName = "time", moduleName = "time"} +] + +[[package]] +org = "ballerina" +name = "url" +version = "2.4.0" +scope = "testOnly" +dependencies = [ + {org = "ballerina", name = "jballerina.java"} +] + +[[package]] +org = "ballerina" +name = "uuid" +version = "1.8.0" +scope = "testOnly" +dependencies = [ + {org = "ballerina", name = "crypto"}, + {org = "ballerina", name = "jballerina.java"}, + {org = "ballerina", name = "lang.int"}, + {org = "ballerina", name = "time"} +] + +[[package]] +org = "ballerinai" +name = "transaction" +version = "0.0.0" +scope = "testOnly" +dependencies = [ + {org = "ballerina", name = "cache"}, + {org = "ballerina", name = "http"}, + {org = "ballerina", name = "io"}, + {org = "ballerina", name = "jballerina.java"}, + {org = "ballerina", name = "lang.runtime"}, + {org = "ballerina", name = "lang.transaction"}, + {org = "ballerina", name = "lang.value"}, + {org = "ballerina", name = "log"}, + {org = "ballerina", name = "task"}, + {org = "ballerina", name = "time"}, + {org = "ballerina", name = "uuid"} +] +modules = [ + {org = "ballerinai", packageName = "transaction", moduleName = "transaction"} +] + +[[package]] +org = "ballerinax" +name = "mssql" +version = "1.13.0" +dependencies = [ + {org = "ballerina", name = "crypto"}, + {org = "ballerina", name = "file"}, + {org = "ballerina", name = "jballerina.java"}, + {org = "ballerina", name = "lang.runtime"}, + {org = "ballerina", name = "lang.string"}, + {org = "ballerina", name = "sql"}, + {org = "ballerina", name = "test"}, + {org = "ballerina", name = "time"}, + {org = "ballerinai", name = "transaction"}, + {org = "ballerinax", name = "mssql.driver"} +] +modules = [ + {org = "ballerinax", packageName = "mssql", moduleName = "mssql"} +] + +[[package]] +org = "ballerinax" +name = "mssql.driver" +version = "1.6.0" +scope = "testOnly" +modules = [ + {org = "ballerinax", packageName = "mssql.driver", moduleName = "mssql.driver"} +] + From a7bba4c22a2663f4539b03d61b4e124fbf9d028e Mon Sep 17 00:00:00 2001 From: lnash94 Date: Fri, 9 Aug 2024 15:20:47 +0530 Subject: [PATCH 9/9] Update the jwt, sql, http, transaction versions --- gradle.properties | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gradle.properties b/gradle.properties index 013bbf84..facaee44 100644 --- a/gradle.properties +++ b/gradle.properties @@ -13,7 +13,7 @@ ballerinaGradlePluginVersion=2.0.1 ballerinaLangVersion=2201.10.0-20240806-083400-aabac46a -stdlibSqlVersion=1.14.0-20240808-165400-c6639dd +stdlibSqlVersion=1.14.0-20240809-142900-0689c89 # Direct Dependencies # Level 01 @@ -51,10 +51,10 @@ stdlibJwtVersion=2.13.0-20240809-095500-b9d03ed stdlibOAuth2Version=2.12.0-20240807-220200-7f7294b # Level 05 -stdlibHttpVersion=2.12.0-20240808-064600-7e5bc3c +stdlibHttpVersion=2.12.0-20240809-111500-91b1ccd # Level 06 -stdlibTransactionVersion=1.10.0-20240808-113100-f651aee +stdlibTransactionVersion=1.10.0-20240809-131000-44ec1bf # Ballerina library stdlibMssqlDriverVersion=1.6.0