From 493ea16ba493cbc3ff41a2247bf0c3e6839368c0 Mon Sep 17 00:00:00 2001 From: praneesha Date: Wed, 20 Sep 2023 06:12:19 +0530 Subject: [PATCH 1/5] Update the word `standard library` -> `Ballerina library` Update the word `standard library` -> `Ballerina library` --- examples/programs-and-modules/programs_and_modules.bal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/programs-and-modules/programs_and_modules.bal b/examples/programs-and-modules/programs_and_modules.bal index f850ed60bd..d8c1d13036 100644 --- a/examples/programs-and-modules/programs_and_modules.bal +++ b/examples/programs-and-modules/programs_and_modules.bal @@ -1,6 +1,6 @@ // This import declaration binds the prefix `io` to the `ballerina/io` module. // The prefix by default comes form the last part of the module name. -// The `ballerina` org name is reserved for the standard library modules. +// The `ballerina` org name is reserved for the Ballerina library packages. import ballerina/io; // `main` function is the program entry point. From fb709c051b00711ee1c4dc58da9337439365faca Mon Sep 17 00:00:00 2001 From: praneesha Date: Wed, 20 Sep 2023 06:17:27 +0530 Subject: [PATCH 2/5] Update programs_and_modules.bal --- examples/programs-and-modules/programs_and_modules.bal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/programs-and-modules/programs_and_modules.bal b/examples/programs-and-modules/programs_and_modules.bal index d8c1d13036..5f86ce70b8 100644 --- a/examples/programs-and-modules/programs_and_modules.bal +++ b/examples/programs-and-modules/programs_and_modules.bal @@ -1,6 +1,6 @@ // This import declaration binds the prefix `io` to the `ballerina/io` module. // The prefix by default comes form the last part of the module name. -// The `ballerina` org name is reserved for the Ballerina library packages. +// The `ballerina` org name is reserved for the Ballerina library modules. import ballerina/io; // `main` function is the program entry point. From 439702ce9da82e620e1ba124fa1adf76623c244e Mon Sep 17 00:00:00 2001 From: praneesha Date: Wed, 20 Sep 2023 06:19:51 +0530 Subject: [PATCH 3/5] Update programs_and_modules.bal --- examples/programs-and-modules/programs_and_modules.bal | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/programs-and-modules/programs_and_modules.bal b/examples/programs-and-modules/programs_and_modules.bal index 5f86ce70b8..2eb647f8b6 100644 --- a/examples/programs-and-modules/programs_and_modules.bal +++ b/examples/programs-and-modules/programs_and_modules.bal @@ -1,11 +1,11 @@ -// This import declaration binds the prefix `io` to the `ballerina/io` module. -// The prefix by default comes form the last part of the module name. -// The `ballerina` org name is reserved for the Ballerina library modules. +// This import declaration binds the prefix `io` to the `ballerina/io` package. +// The prefix by default comes from the last part of the package name. +// The `ballerina` org name is reserved for the Ballerina library packages. import ballerina/io; // `main` function is the program entry point. -// `public` makes function visible outside the module. +// `public` makes the function visible outside the package. public function main() { - // Here `io:println` means function `println` is in the module bound to prefix `io`. + // Here `io:println` means function `println` is in the package bound to prefix `io`. io:println("Hello, World!"); } From cd9edbb5d9e14a99e6b3398686ff6098c001e976 Mon Sep 17 00:00:00 2001 From: Tharik Kanaka Date: Fri, 20 Oct 2023 09:24:56 +0530 Subject: [PATCH 4/5] Update endpoint url --- examples/sequence-diagrams/sequence_diagrams.bal | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/sequence-diagrams/sequence_diagrams.bal b/examples/sequence-diagrams/sequence_diagrams.bal index 4980684906..3da030c426 100644 --- a/examples/sequence-diagrams/sequence_diagrams.bal +++ b/examples/sequence-diagrams/sequence_diagrams.bal @@ -6,11 +6,11 @@ import ballerina/io; public function main() returns error? { // The diagram also has a lifeline for each client object parameter or variable in // the initialization section, representing the remote system to which the client object is sending messages. - http:Client cl = check new ("https://www.mocky.io"); + http:Client cl = check new ("https://run.mocky.io"); // Each remote method call on a client object is represented as a horizontal line // between the lifeline of the worker making the call and the remote system. - string payload = check cl->get("/v2/5ae082123200006b00510c3d/"); + string payload = check cl->get("/v3/7240398e-0435-4457-91b0-0c862f10563f/"); io:println(payload); return; From d225aa075bf75c1f4f357cbe14e173a02a562313 Mon Sep 17 00:00:00 2001 From: Charuka Tharindu Date: Mon, 23 Oct 2023 12:58:52 +0530 Subject: [PATCH 5/5] Fix dependency permission issue on Linux platform --- ballerina-test-automation/gradle.properties | 8 ++++---- gradle.properties | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ballerina-test-automation/gradle.properties b/ballerina-test-automation/gradle.properties index f87563642e..30830dc471 100644 --- a/ballerina-test-automation/gradle.properties +++ b/ballerina-test-automation/gradle.properties @@ -1,7 +1,7 @@ -swan-lake-latest-version=swan-lake-2201.8.1 +swan-lake-latest-version=swan-lake-2201.8.2 swan-lake-latest-spec-version=2023R1 -swan-lake-latest-version-display-text=2201.8.1 -swan-lake-latest-tool-version=1.4.1 -latest-tool-version=1.4.1 +swan-lake-latest-version-display-text=2201.8.2 +swan-lake-latest-tool-version=1.4.2 +latest-tool-version=1.4.2 1-x-channel-latest-version=1.2.13 1-x-channel-latest-spec-version=2020R1 diff --git a/gradle.properties b/gradle.properties index 3496f562f8..97e4feeee6 100644 --- a/gradle.properties +++ b/gradle.properties @@ -75,7 +75,7 @@ persistToolVersion=1.2.0-20230908-152500-2ba8c45 # Dev Tools devToolsVersion=1.2.1-20230914-153500-664cd40 -ballerinaCommandVersion=1.4.1 +ballerinaCommandVersion=1.4.2 # GraphQL Tool graphqlVersion=0.8.0-20230914-153500-87f60d6