From 1ecaaf6c480b04411069892b892a3f3a6f3d3880 Mon Sep 17 00:00:00 2001 From: Krishnananthalingam Tharmigan <63336800+TharmiganK@users.noreply.github.com> Date: Fri, 4 Aug 2023 08:33:42 +0530 Subject: [PATCH 1/6] Change the GraalVM check default branch --- .github/workflows/build-with-bal-test-graalvm.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-with-bal-test-graalvm.yml b/.github/workflows/build-with-bal-test-graalvm.yml index 09d2c971b9..33c8a83c74 100644 --- a/.github/workflows/build-with-bal-test-graalvm.yml +++ b/.github/workflows/build-with-bal-test-graalvm.yml @@ -6,7 +6,7 @@ on: lang_tag: description: Branch/Release Tag of the Ballerina Lang required: true - default: java_17_migration + default: master lang_version: description: Ballerina Lang Version (If given ballerina lang buid will be skipped) required: false From 0c4072ed425db92d636cd1ca096a6982342423ed Mon Sep 17 00:00:00 2001 From: Krishnananthalingam Tharmigan <63336800+TharmiganK@users.noreply.github.com> Date: Fri, 4 Aug 2023 09:06:32 +0530 Subject: [PATCH 2/6] Fix standard library branch --- .github/workflows/build-with-bal-test-graalvm.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-with-bal-test-graalvm.yml b/.github/workflows/build-with-bal-test-graalvm.yml index 33c8a83c74..2f38f3c0ec 100644 --- a/.github/workflows/build-with-bal-test-graalvm.yml +++ b/.github/workflows/build-with-bal-test-graalvm.yml @@ -36,7 +36,7 @@ jobs: call_stdlib_workflow: name: Run StdLib Workflow if: ${{ github.event_name != 'schedule' || (github.event_name == 'schedule' && github.repository_owner == 'ballerina-platform') }} - uses: ballerina-platform/ballerina-standard-library/.github/workflows/build-with-bal-test-graalvm-template.yml@java_17_migration + uses: ballerina-platform/ballerina-standard-library/.github/workflows/build-with-bal-test-graalvm-template.yml@main with: lang_tag: ${{ inputs.lang_tag }} lang_version: ${{ inputs.lang_version }} From 8cf3617112956d3965289f67f4cf1b45c25e5496 Mon Sep 17 00:00:00 2001 From: TharmiganK Date: Fri, 4 Aug 2023 15:14:56 +0530 Subject: [PATCH 3/6] [Automated] Update the native jar versions --- ballerina/Dependencies.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ballerina/Dependencies.toml b/ballerina/Dependencies.toml index 4bd439723b..0dc3dbdb62 100644 --- a/ballerina/Dependencies.toml +++ b/ballerina/Dependencies.toml @@ -5,7 +5,7 @@ [ballerina] dependencies-toml-version = "2" -distribution-version = "2201.8.0-20230716-001200-4e224cd5" +distribution-version = "2201.8.0-20230726-145300-b2bdf796" [[package]] org = "ballerina" @@ -240,7 +240,7 @@ modules = [ [[package]] org = "ballerina" name = "log" -version = "2.8.0" +version = "2.8.1" dependencies = [ {org = "ballerina", name = "io"}, {org = "ballerina", name = "jballerina.java"}, From 0ebd1bf28b527bb43a6b23b06fcad1007e4362bf Mon Sep 17 00:00:00 2001 From: TharmiganK Date: Fri, 4 Aug 2023 15:18:51 +0530 Subject: [PATCH 4/6] Fix gradle explicit dependency issue --- ballerina-tests/build.gradle | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ballerina-tests/build.gradle b/ballerina-tests/build.gradle index b00df5fe42..a139510dc0 100644 --- a/ballerina-tests/build.gradle +++ b/ballerina-tests/build.gradle @@ -196,6 +196,8 @@ task ballerinaTest { dependsOn(":${packageName}-${packageOrg}-${moduleName}:jar") dependsOn(":${packageName}-${packageOrg}-${moduleName}:processResources") dependsOn(publishTestCommonPackageToLocal) + dependsOn(compileTestJava) + dependsOn(processTestResources) finalizedBy(commitTomlFiles) doLast { From 7aef0255ecaa62d4c5071e481a8011991d1cc01a Mon Sep 17 00:00:00 2001 From: TharmiganK Date: Fri, 4 Aug 2023 15:25:31 +0530 Subject: [PATCH 5/6] [Automated] Update the native jar versions --- ballerina-tests/http-advanced-tests/Ballerina.toml | 6 +++--- ballerina-tests/http-advanced-tests/Dependencies.toml | 10 +++++----- ballerina-tests/http-client-tests/Ballerina.toml | 6 +++--- ballerina-tests/http-client-tests/Dependencies.toml | 10 +++++----- ballerina-tests/http-dispatching-tests/Ballerina.toml | 6 +++--- .../http-dispatching-tests/Dependencies.toml | 10 +++++----- ballerina-tests/http-interceptor-tests/Ballerina.toml | 6 +++--- .../http-interceptor-tests/Dependencies.toml | 10 +++++----- ballerina-tests/http-misc-tests/Ballerina.toml | 6 +++--- ballerina-tests/http-misc-tests/Dependencies.toml | 10 +++++----- ballerina-tests/http-resiliency-tests/Ballerina.toml | 6 +++--- .../http-resiliency-tests/Dependencies.toml | 10 +++++----- ballerina-tests/http-security-tests/Ballerina.toml | 6 +++--- ballerina-tests/http-service-tests/Ballerina.toml | 6 +++--- ballerina-tests/http-test-common/Ballerina.toml | 2 +- ballerina-tests/http-test-common/Dependencies.toml | 4 ++-- ballerina-tests/http2-tests/Ballerina.toml | 6 +++--- ballerina-tests/http2-tests/Dependencies.toml | 10 +++++----- 18 files changed, 65 insertions(+), 65 deletions(-) diff --git a/ballerina-tests/http-advanced-tests/Ballerina.toml b/ballerina-tests/http-advanced-tests/Ballerina.toml index 90f4686eb5..152dafe76a 100644 --- a/ballerina-tests/http-advanced-tests/Ballerina.toml +++ b/ballerina-tests/http-advanced-tests/Ballerina.toml @@ -1,17 +1,17 @@ [package] org = "ballerina" name = "http_advanced_tests" -version = "2.9.1" +version = "2.10.0" [[dependency]] org = "ballerina" name = "http_test_common" repository = "local" -version = "2.9.1" +version = "2.10.0" [platform.java17] graalvmCompatible = true [[platform.java17.dependency]] scope = "testOnly" -path = "../../test-utils/build/libs/http-test-utils-2.9.1-SNAPSHOT.jar" +path = "../../test-utils/build/libs/http-test-utils-2.10.0-SNAPSHOT.jar" diff --git a/ballerina-tests/http-advanced-tests/Dependencies.toml b/ballerina-tests/http-advanced-tests/Dependencies.toml index c12065bdee..ff25fec1a3 100644 --- a/ballerina-tests/http-advanced-tests/Dependencies.toml +++ b/ballerina-tests/http-advanced-tests/Dependencies.toml @@ -5,7 +5,7 @@ [ballerina] dependencies-toml-version = "2" -distribution-version = "2201.7.0" +distribution-version = "2201.8.0-20230726-145300-b2bdf796" [[package]] org = "ballerina" @@ -72,7 +72,7 @@ modules = [ [[package]] org = "ballerina" name = "http" -version = "2.9.1" +version = "2.10.0" scope = "testOnly" dependencies = [ {org = "ballerina", name = "auth"}, @@ -105,7 +105,7 @@ modules = [ [[package]] org = "ballerina" name = "http_advanced_tests" -version = "2.9.1" +version = "2.10.0" dependencies = [ {org = "ballerina", name = "crypto"}, {org = "ballerina", name = "file"}, @@ -125,7 +125,7 @@ modules = [ [[package]] org = "ballerina" name = "http_test_common" -version = "2.9.1" +version = "2.10.0" scope = "testOnly" dependencies = [ {org = "ballerina", name = "lang.string"}, @@ -273,7 +273,7 @@ dependencies = [ [[package]] org = "ballerina" name = "log" -version = "2.8.0" +version = "2.8.1" scope = "testOnly" dependencies = [ {org = "ballerina", name = "io"}, diff --git a/ballerina-tests/http-client-tests/Ballerina.toml b/ballerina-tests/http-client-tests/Ballerina.toml index 5d0737573b..e98c7bb45a 100644 --- a/ballerina-tests/http-client-tests/Ballerina.toml +++ b/ballerina-tests/http-client-tests/Ballerina.toml @@ -1,17 +1,17 @@ [package] org = "ballerina" name = "http_client_tests" -version = "2.9.1" +version = "2.10.0" [[dependency]] org = "ballerina" name = "http_test_common" repository = "local" -version = "2.9.1" +version = "2.10.0" [platform.java17] graalvmCompatible = true [[platform.java17.dependency]] scope = "testOnly" -path = "../../test-utils/build/libs/http-test-utils-2.9.1-SNAPSHOT.jar" +path = "../../test-utils/build/libs/http-test-utils-2.10.0-SNAPSHOT.jar" diff --git a/ballerina-tests/http-client-tests/Dependencies.toml b/ballerina-tests/http-client-tests/Dependencies.toml index b374b640ac..309115cfce 100644 --- a/ballerina-tests/http-client-tests/Dependencies.toml +++ b/ballerina-tests/http-client-tests/Dependencies.toml @@ -5,7 +5,7 @@ [ballerina] dependencies-toml-version = "2" -distribution-version = "2201.7.0" +distribution-version = "2201.8.0-20230726-145300-b2bdf796" [[package]] org = "ballerina" @@ -69,7 +69,7 @@ dependencies = [ [[package]] org = "ballerina" name = "http" -version = "2.9.1" +version = "2.10.0" scope = "testOnly" dependencies = [ {org = "ballerina", name = "auth"}, @@ -102,7 +102,7 @@ modules = [ [[package]] org = "ballerina" name = "http_client_tests" -version = "2.9.1" +version = "2.10.0" dependencies = [ {org = "ballerina", name = "constraint"}, {org = "ballerina", name = "http"}, @@ -121,7 +121,7 @@ modules = [ [[package]] org = "ballerina" name = "http_test_common" -version = "2.9.1" +version = "2.10.0" scope = "testOnly" dependencies = [ {org = "ballerina", name = "lang.string"}, @@ -269,7 +269,7 @@ dependencies = [ [[package]] org = "ballerina" name = "log" -version = "2.8.0" +version = "2.8.1" scope = "testOnly" dependencies = [ {org = "ballerina", name = "io"}, diff --git a/ballerina-tests/http-dispatching-tests/Ballerina.toml b/ballerina-tests/http-dispatching-tests/Ballerina.toml index 2b98d27019..656b99b033 100644 --- a/ballerina-tests/http-dispatching-tests/Ballerina.toml +++ b/ballerina-tests/http-dispatching-tests/Ballerina.toml @@ -1,17 +1,17 @@ [package] org = "ballerina" name = "http_dispatching_tests" -version = "2.9.1" +version = "2.10.0" [[dependency]] org = "ballerina" name = "http_test_common" repository = "local" -version = "2.9.1" +version = "2.10.0" [platform.java17] graalvmCompatible = true [[platform.java17.dependency]] scope = "testOnly" -path = "../../test-utils/build/libs/http-test-utils-2.9.1-SNAPSHOT.jar" +path = "../../test-utils/build/libs/http-test-utils-2.10.0-SNAPSHOT.jar" diff --git a/ballerina-tests/http-dispatching-tests/Dependencies.toml b/ballerina-tests/http-dispatching-tests/Dependencies.toml index 0a757f8a0a..1fc4d3a1a9 100644 --- a/ballerina-tests/http-dispatching-tests/Dependencies.toml +++ b/ballerina-tests/http-dispatching-tests/Dependencies.toml @@ -5,7 +5,7 @@ [ballerina] dependencies-toml-version = "2" -distribution-version = "2201.7.0" +distribution-version = "2201.8.0-20230726-145300-b2bdf796" [[package]] org = "ballerina" @@ -69,7 +69,7 @@ dependencies = [ [[package]] org = "ballerina" name = "http" -version = "2.9.1" +version = "2.10.0" scope = "testOnly" dependencies = [ {org = "ballerina", name = "auth"}, @@ -102,7 +102,7 @@ modules = [ [[package]] org = "ballerina" name = "http_dispatching_tests" -version = "2.9.1" +version = "2.10.0" dependencies = [ {org = "ballerina", name = "constraint"}, {org = "ballerina", name = "http"}, @@ -124,7 +124,7 @@ modules = [ [[package]] org = "ballerina" name = "http_test_common" -version = "2.9.1" +version = "2.10.0" scope = "testOnly" dependencies = [ {org = "ballerina", name = "lang.string"}, @@ -308,7 +308,7 @@ modules = [ [[package]] org = "ballerina" name = "log" -version = "2.8.0" +version = "2.8.1" scope = "testOnly" dependencies = [ {org = "ballerina", name = "io"}, diff --git a/ballerina-tests/http-interceptor-tests/Ballerina.toml b/ballerina-tests/http-interceptor-tests/Ballerina.toml index e66ee261e1..c21d1cf298 100644 --- a/ballerina-tests/http-interceptor-tests/Ballerina.toml +++ b/ballerina-tests/http-interceptor-tests/Ballerina.toml @@ -1,17 +1,17 @@ [package] org = "ballerina" name = "http_interceptor_tests" -version = "2.9.1" +version = "2.10.0" [[dependency]] org = "ballerina" name = "http_test_common" repository = "local" -version = "2.9.1" +version = "2.10.0" [platform.java17] graalvmCompatible = true [[platform.java17.dependency]] scope = "testOnly" -path = "../../test-utils/build/libs/http-test-utils-2.9.1-SNAPSHOT.jar" +path = "../../test-utils/build/libs/http-test-utils-2.10.0-SNAPSHOT.jar" diff --git a/ballerina-tests/http-interceptor-tests/Dependencies.toml b/ballerina-tests/http-interceptor-tests/Dependencies.toml index 2a112ea70c..649d0e657a 100644 --- a/ballerina-tests/http-interceptor-tests/Dependencies.toml +++ b/ballerina-tests/http-interceptor-tests/Dependencies.toml @@ -5,7 +5,7 @@ [ballerina] dependencies-toml-version = "2" -distribution-version = "2201.7.0" +distribution-version = "2201.8.0-20230726-145300-b2bdf796" [[package]] org = "ballerina" @@ -66,7 +66,7 @@ dependencies = [ [[package]] org = "ballerina" name = "http" -version = "2.9.1" +version = "2.10.0" scope = "testOnly" dependencies = [ {org = "ballerina", name = "auth"}, @@ -99,7 +99,7 @@ modules = [ [[package]] org = "ballerina" name = "http_interceptor_tests" -version = "2.9.1" +version = "2.10.0" dependencies = [ {org = "ballerina", name = "http"}, {org = "ballerina", name = "http_test_common"}, @@ -115,7 +115,7 @@ modules = [ [[package]] org = "ballerina" name = "http_test_common" -version = "2.9.1" +version = "2.10.0" scope = "testOnly" dependencies = [ {org = "ballerina", name = "lang.string"}, @@ -263,7 +263,7 @@ dependencies = [ [[package]] org = "ballerina" name = "log" -version = "2.8.0" +version = "2.8.1" scope = "testOnly" dependencies = [ {org = "ballerina", name = "io"}, diff --git a/ballerina-tests/http-misc-tests/Ballerina.toml b/ballerina-tests/http-misc-tests/Ballerina.toml index ee7fd99272..5f169e3497 100644 --- a/ballerina-tests/http-misc-tests/Ballerina.toml +++ b/ballerina-tests/http-misc-tests/Ballerina.toml @@ -1,17 +1,17 @@ [package] org = "ballerina" name = "http_misc_tests" -version = "2.9.1" +version = "2.10.0" [[dependency]] org = "ballerina" name = "http_test_common" repository = "local" -version = "2.9.1" +version = "2.10.0" [platform.java17] graalvmCompatible = true [[platform.java17.dependency]] scope = "testOnly" -path = "../../test-utils/build/libs/http-test-utils-2.9.1-SNAPSHOT.jar" +path = "../../test-utils/build/libs/http-test-utils-2.10.0-SNAPSHOT.jar" diff --git a/ballerina-tests/http-misc-tests/Dependencies.toml b/ballerina-tests/http-misc-tests/Dependencies.toml index 4c37502e4b..691fdef39b 100644 --- a/ballerina-tests/http-misc-tests/Dependencies.toml +++ b/ballerina-tests/http-misc-tests/Dependencies.toml @@ -5,7 +5,7 @@ [ballerina] dependencies-toml-version = "2" -distribution-version = "2201.7.0" +distribution-version = "2201.8.0-20230726-145300-b2bdf796" [[package]] org = "ballerina" @@ -66,7 +66,7 @@ dependencies = [ [[package]] org = "ballerina" name = "http" -version = "2.9.1" +version = "2.10.0" scope = "testOnly" dependencies = [ {org = "ballerina", name = "auth"}, @@ -99,7 +99,7 @@ modules = [ [[package]] org = "ballerina" name = "http_misc_tests" -version = "2.9.1" +version = "2.10.0" dependencies = [ {org = "ballerina", name = "http"}, {org = "ballerina", name = "http_test_common"}, @@ -118,7 +118,7 @@ modules = [ [[package]] org = "ballerina" name = "http_test_common" -version = "2.9.1" +version = "2.10.0" scope = "testOnly" dependencies = [ {org = "ballerina", name = "lang.string"}, @@ -269,7 +269,7 @@ dependencies = [ [[package]] org = "ballerina" name = "log" -version = "2.8.0" +version = "2.8.1" scope = "testOnly" dependencies = [ {org = "ballerina", name = "io"}, diff --git a/ballerina-tests/http-resiliency-tests/Ballerina.toml b/ballerina-tests/http-resiliency-tests/Ballerina.toml index 93555efaa5..283094002e 100644 --- a/ballerina-tests/http-resiliency-tests/Ballerina.toml +++ b/ballerina-tests/http-resiliency-tests/Ballerina.toml @@ -1,17 +1,17 @@ [package] org = "ballerina" name = "http_resiliency_tests" -version = "2.9.1" +version = "2.10.0" [[dependency]] org = "ballerina" name = "http_test_common" repository = "local" -version = "2.9.1" +version = "2.10.0" [platform.java17] graalvmCompatible = true [[platform.java17.dependency]] scope = "testOnly" -path = "../../test-utils/build/libs/http-test-utils-2.9.1-SNAPSHOT.jar" +path = "../../test-utils/build/libs/http-test-utils-2.10.0-SNAPSHOT.jar" diff --git a/ballerina-tests/http-resiliency-tests/Dependencies.toml b/ballerina-tests/http-resiliency-tests/Dependencies.toml index 979fead165..3c7bb2cfdd 100644 --- a/ballerina-tests/http-resiliency-tests/Dependencies.toml +++ b/ballerina-tests/http-resiliency-tests/Dependencies.toml @@ -5,7 +5,7 @@ [ballerina] dependencies-toml-version = "2" -distribution-version = "2201.7.0" +distribution-version = "2201.8.0-20230726-145300-b2bdf796" [[package]] org = "ballerina" @@ -66,7 +66,7 @@ dependencies = [ [[package]] org = "ballerina" name = "http" -version = "2.9.1" +version = "2.10.0" scope = "testOnly" dependencies = [ {org = "ballerina", name = "auth"}, @@ -99,7 +99,7 @@ modules = [ [[package]] org = "ballerina" name = "http_resiliency_tests" -version = "2.9.1" +version = "2.10.0" dependencies = [ {org = "ballerina", name = "http"}, {org = "ballerina", name = "http_test_common"}, @@ -116,7 +116,7 @@ modules = [ [[package]] org = "ballerina" name = "http_test_common" -version = "2.9.1" +version = "2.10.0" scope = "testOnly" dependencies = [ {org = "ballerina", name = "lang.string"}, @@ -264,7 +264,7 @@ dependencies = [ [[package]] org = "ballerina" name = "log" -version = "2.8.0" +version = "2.8.1" scope = "testOnly" dependencies = [ {org = "ballerina", name = "io"}, diff --git a/ballerina-tests/http-security-tests/Ballerina.toml b/ballerina-tests/http-security-tests/Ballerina.toml index 4a7a395c3f..194e321669 100644 --- a/ballerina-tests/http-security-tests/Ballerina.toml +++ b/ballerina-tests/http-security-tests/Ballerina.toml @@ -1,17 +1,17 @@ [package] org = "ballerina" name = "http_security_tests" -version = "2.9.1" +version = "2.10.0" [[dependency]] org = "ballerina" name = "http_test_common" repository = "local" -version = "2.9.1" +version = "2.10.0" [platform.java17] graalvmCompatible = true [[platform.java17.dependency]] scope = "testOnly" -path = "../../test-utils/build/libs/http-test-utils-2.9.1-SNAPSHOT.jar" +path = "../../test-utils/build/libs/http-test-utils-2.10.0-SNAPSHOT.jar" diff --git a/ballerina-tests/http-service-tests/Ballerina.toml b/ballerina-tests/http-service-tests/Ballerina.toml index 1d8865f142..a726ddf86e 100644 --- a/ballerina-tests/http-service-tests/Ballerina.toml +++ b/ballerina-tests/http-service-tests/Ballerina.toml @@ -1,17 +1,17 @@ [package] org = "ballerina" name = "http_service_tests" -version = "2.9.1" +version = "2.10.0" [[dependency]] org = "ballerina" name = "http_test_common" repository = "local" -version = "2.9.1" +version = "2.10.0" [platform.java17] graalvmCompatible = true [[platform.java17.dependency]] scope = "testOnly" -path = "../../test-utils/build/libs/http-test-utils-2.9.1-SNAPSHOT.jar" +path = "../../test-utils/build/libs/http-test-utils-2.10.0-SNAPSHOT.jar" diff --git a/ballerina-tests/http-test-common/Ballerina.toml b/ballerina-tests/http-test-common/Ballerina.toml index 61f5655787..9474c9470b 100644 --- a/ballerina-tests/http-test-common/Ballerina.toml +++ b/ballerina-tests/http-test-common/Ballerina.toml @@ -1,4 +1,4 @@ [package] org = "ballerina" name = "http_test_common" -version = "2.9.1" +version = "2.10.0" diff --git a/ballerina-tests/http-test-common/Dependencies.toml b/ballerina-tests/http-test-common/Dependencies.toml index d7a7f3f3b5..4996a8c1a1 100644 --- a/ballerina-tests/http-test-common/Dependencies.toml +++ b/ballerina-tests/http-test-common/Dependencies.toml @@ -5,12 +5,12 @@ [ballerina] dependencies-toml-version = "2" -distribution-version = "2201.7.0" +distribution-version = "2201.8.0-20230726-145300-b2bdf796" [[package]] org = "ballerina" name = "http_test_common" -version = "2.9.1" +version = "2.10.0" dependencies = [ {org = "ballerina", name = "lang.string"}, {org = "ballerina", name = "mime"}, diff --git a/ballerina-tests/http2-tests/Ballerina.toml b/ballerina-tests/http2-tests/Ballerina.toml index b72866d07f..7351a729ef 100644 --- a/ballerina-tests/http2-tests/Ballerina.toml +++ b/ballerina-tests/http2-tests/Ballerina.toml @@ -1,17 +1,17 @@ [package] org = "ballerina" name = "http2_tests" -version = "2.9.1" +version = "2.10.0" [[dependency]] org = "ballerina" name = "http_test_common" repository = "local" -version = "2.9.1" +version = "2.10.0" [platform.java17] graalvmCompatible = true [[platform.java17.dependency]] scope = "testOnly" -path = "../../test-utils/build/libs/http-test-utils-2.9.1-SNAPSHOT.jar" +path = "../../test-utils/build/libs/http-test-utils-2.10.0-SNAPSHOT.jar" diff --git a/ballerina-tests/http2-tests/Dependencies.toml b/ballerina-tests/http2-tests/Dependencies.toml index 98294a85eb..46d353be43 100644 --- a/ballerina-tests/http2-tests/Dependencies.toml +++ b/ballerina-tests/http2-tests/Dependencies.toml @@ -5,7 +5,7 @@ [ballerina] dependencies-toml-version = "2" -distribution-version = "2201.7.0" +distribution-version = "2201.8.0-20230726-145300-b2bdf796" [[package]] org = "ballerina" @@ -69,7 +69,7 @@ modules = [ [[package]] org = "ballerina" name = "http" -version = "2.9.1" +version = "2.10.0" scope = "testOnly" dependencies = [ {org = "ballerina", name = "auth"}, @@ -102,7 +102,7 @@ modules = [ [[package]] org = "ballerina" name = "http2_tests" -version = "2.9.1" +version = "2.10.0" dependencies = [ {org = "ballerina", name = "file"}, {org = "ballerina", name = "http"}, @@ -121,7 +121,7 @@ modules = [ [[package]] org = "ballerina" name = "http_test_common" -version = "2.9.1" +version = "2.10.0" scope = "testOnly" dependencies = [ {org = "ballerina", name = "lang.string"}, @@ -269,7 +269,7 @@ dependencies = [ [[package]] org = "ballerina" name = "log" -version = "2.8.0" +version = "2.8.1" scope = "testOnly" dependencies = [ {org = "ballerina", name = "io"}, From 23260685c495608ec55c3213a0643b5becdf92be Mon Sep 17 00:00:00 2001 From: TharmiganK Date: Fri, 4 Aug 2023 15:29:41 +0530 Subject: [PATCH 6/6] [Automated] Update the native jar versions --- ballerina-tests/http-security-tests/Dependencies.toml | 10 +++++----- ballerina-tests/http-service-tests/Dependencies.toml | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/ballerina-tests/http-security-tests/Dependencies.toml b/ballerina-tests/http-security-tests/Dependencies.toml index c8be40b1b9..b8eb39e669 100644 --- a/ballerina-tests/http-security-tests/Dependencies.toml +++ b/ballerina-tests/http-security-tests/Dependencies.toml @@ -5,7 +5,7 @@ [ballerina] dependencies-toml-version = "2" -distribution-version = "2201.7.0" +distribution-version = "2201.8.0-20230726-145300-b2bdf796" [[package]] org = "ballerina" @@ -69,7 +69,7 @@ dependencies = [ [[package]] org = "ballerina" name = "http" -version = "2.9.1" +version = "2.10.0" scope = "testOnly" dependencies = [ {org = "ballerina", name = "auth"}, @@ -102,7 +102,7 @@ modules = [ [[package]] org = "ballerina" name = "http_security_tests" -version = "2.9.1" +version = "2.10.0" dependencies = [ {org = "ballerina", name = "auth"}, {org = "ballerina", name = "http"}, @@ -120,7 +120,7 @@ modules = [ [[package]] org = "ballerina" name = "http_test_common" -version = "2.9.1" +version = "2.10.0" scope = "testOnly" dependencies = [ {org = "ballerina", name = "lang.string"}, @@ -265,7 +265,7 @@ dependencies = [ [[package]] org = "ballerina" name = "log" -version = "2.8.0" +version = "2.8.1" scope = "testOnly" dependencies = [ {org = "ballerina", name = "io"}, diff --git a/ballerina-tests/http-service-tests/Dependencies.toml b/ballerina-tests/http-service-tests/Dependencies.toml index 2dd11a93f8..e8742e264b 100644 --- a/ballerina-tests/http-service-tests/Dependencies.toml +++ b/ballerina-tests/http-service-tests/Dependencies.toml @@ -5,7 +5,7 @@ [ballerina] dependencies-toml-version = "2" -distribution-version = "2201.7.0" +distribution-version = "2201.8.0-20230726-145300-b2bdf796" [[package]] org = "ballerina" @@ -69,7 +69,7 @@ modules = [ [[package]] org = "ballerina" name = "http" -version = "2.9.1" +version = "2.10.0" scope = "testOnly" dependencies = [ {org = "ballerina", name = "auth"}, @@ -102,7 +102,7 @@ modules = [ [[package]] org = "ballerina" name = "http_service_tests" -version = "2.9.1" +version = "2.10.0" dependencies = [ {org = "ballerina", name = "file"}, {org = "ballerina", name = "http"}, @@ -121,7 +121,7 @@ modules = [ [[package]] org = "ballerina" name = "http_test_common" -version = "2.9.1" +version = "2.10.0" scope = "testOnly" dependencies = [ {org = "ballerina", name = "lang.string"}, @@ -269,7 +269,7 @@ dependencies = [ [[package]] org = "ballerina" name = "log" -version = "2.8.0" +version = "2.8.1" scope = "testOnly" dependencies = [ {org = "ballerina", name = "io"},