From e2b869ed1817b94b5184982c929fa45615393731 Mon Sep 17 00:00:00 2001 From: Hasitha Abeykoon Date: Wed, 30 Nov 2022 10:14:32 +0530 Subject: [PATCH 1/2] Update Ballerina Lang version --- .github/workflows/ci.yml | 8 ++++---- .github/workflows/daily-build.yml | 8 ++++---- .github/workflows/dev-stg-release.yml | 6 +++--- .github/workflows/pull-request.yml | 6 +++--- .github/workflows/release.yml | 4 ++-- pom.xml | 2 +- redis/Package.md | 2 +- 7 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0ab584ad..dd47e5b7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -73,17 +73,17 @@ jobs: - name: Maven Build run: mvn clean install - name: Ballerina Download - run: sudo wget https://dist.ballerina.io/downloads/2201.2.1/ballerina-2201.2.1-swan-lake.zip + run: sudo wget https://dist.ballerina.io/downloads/2201.2.3/ballerina-2201.2.3-swan-lake.zip - name: Use Ballerina zip version run: sudo apt-get install -y unzip - - run: sudo unzip ballerina-2201.2.1-swan-lake.zip + - run: sudo unzip ballerina-2201.2.3-swan-lake.zip env: JAVA_HOME: /usr/lib/jvm/default-jvm JAVA_OPTS: -DBALLERINA_DEV_COMPILE_BALLERINA_ORG=true - name: Ballerina Build - run: /home/runner/work/module-ballerinax-redis/module-ballerinax-redis/ballerina-2201.2.1-swan-lake/bin/bal pack redis + run: /home/runner/work/module-ballerinax-redis/module-ballerinax-redis/ballerina-2201.2.3-swan-lake/bin/bal pack redis - name: Ballerina Test - run: /home/runner/work/module-ballerinax-redis/module-ballerinax-redis/ballerina-2201.2.1-swan-lake/bin/bal test --code-coverage redis + run: /home/runner/work/module-ballerinax-redis/module-ballerinax-redis/ballerina-2201.2.3-swan-lake/bin/bal test --code-coverage redis # Read the ballerina test results - name: Read Ballerina Test Results diff --git a/.github/workflows/daily-build.yml b/.github/workflows/daily-build.yml index 931ae8da..352c94f6 100644 --- a/.github/workflows/daily-build.yml +++ b/.github/workflows/daily-build.yml @@ -76,17 +76,17 @@ jobs: - name: Maven Build run: mvn clean install - name: Ballerina Download - run: sudo wget https://dist.ballerina.io/downloads/2201.2.1/ballerina-2201.2.1-swan-lake.zip + run: sudo wget https://dist.ballerina.io/downloads/2201.2.3/ballerina-2201.2.3-swan-lake.zip - name: Use Ballerina zip version run: sudo apt-get install -y unzip - - run: sudo unzip ballerina-2201.2.1-swan-lake.zip + - run: sudo unzip ballerina-2201.2.3-swan-lake.zip env: JAVA_HOME: /usr/lib/jvm/default-jvm JAVA_OPTS: -DBALLERINA_DEV_COMPILE_BALLERINA_ORG=true - name: Ballerina Build - run: /home/runner/work/module-ballerinax-redis/module-ballerinax-redis/ballerina-2201.2.1-swan-lake/bin/bal pack redis + run: /home/runner/work/module-ballerinax-redis/module-ballerinax-redis/ballerina-2201.2.3-swan-lake/bin/bal pack redis - name: Ballerina Test - run: /home/runner/work/module-ballerinax-redis/module-ballerinax-redis/ballerina-2201.2.1-swan-lake/bin/bal test --code-coverage redis + run: /home/runner/work/module-ballerinax-redis/module-ballerinax-redis/ballerina-2201.2.3-swan-lake/bin/bal test --code-coverage redis # Read the ballerina test results - name: Read Ballerina Test Results diff --git a/.github/workflows/dev-stg-release.yml b/.github/workflows/dev-stg-release.yml index d1f3e8cb..345462d6 100644 --- a/.github/workflows/dev-stg-release.yml +++ b/.github/workflows/dev-stg-release.yml @@ -84,7 +84,7 @@ jobs: - name: Maven Build run: mvn clean install - name: Ballerina Build - uses: ballerina-platform/ballerina-action@2201.2.1 + uses: ballerina-platform/ballerina-action@2201.2.3 with: args: pack redis @@ -94,7 +94,7 @@ jobs: - name: Push to Staging if: github.event.inputs.bal_central_environment == 'STAGE' - uses: ballerina-platform/ballerina-action@2201.2.1 + uses: ballerina-platform/ballerina-action@2201.2.3 with: args: push @@ -105,7 +105,7 @@ jobs: - name: Push to Dev if: github.event.inputs.bal_central_environment == 'DEV' - uses: ballerina-platform/ballerina-action@2201.2.1 + uses: ballerina-platform/ballerina-action@2201.2.3 with: args: push diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 9f44674d..31b6bbd2 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -50,12 +50,12 @@ jobs: - name: Maven Build run: mvn clean install - name: Ballerina Download - run: sudo wget https://dist.ballerina.io/downloads/2201.2.1/ballerina-2201.2.1-swan-lake.zip + run: sudo wget https://dist.ballerina.io/downloads/2201.2.3/ballerina-2201.2.3-swan-lake.zip - name: Use Ballerina zip version run: sudo apt-get install -y unzip - - run: sudo unzip ballerina-2201.2.1-swan-lake.zip + - run: sudo unzip ballerina-2201.2.3-swan-lake.zip env: JAVA_HOME: /usr/lib/jvm/default-jvm JAVA_OPTS: -DBALLERINA_DEV_COMPILE_BALLERINA_ORG=true - name: Ballerina Build - run: /home/runner/work/module-ballerinax-redis/module-ballerinax-redis/ballerina-2201.2.1-swan-lake/bin/bal build redis + run: /home/runner/work/module-ballerinax-redis/module-ballerinax-redis/ballerina-2201.2.3-swan-lake/bin/bal build redis diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3f292c62..4c2b3d1d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -77,7 +77,7 @@ jobs: - name: Maven Build run: mvn clean install - name: Ballerina Build - uses: ballerina-platform/ballerina-action@2201.2.1 + uses: ballerina-platform/ballerina-action@2201.2.3 with: args: pack redis @@ -85,7 +85,7 @@ jobs: JAVA_HOME: /usr/lib/jvm/default-jvm JAVA_OPTS: -DBALLERINA_DEV_COMPILE_BALLERINA_ORG=true - name: Ballerina Push - uses: ballerina-platform/ballerina-action@2201.2.1 + uses: ballerina-platform/ballerina-action@2201.2.3 with: args: push diff --git a/pom.xml b/pom.xml index 23f7601e..8da171f2 100644 --- a/pom.xml +++ b/pom.xml @@ -313,7 +313,7 @@ my-scm-server - 2201.2.1 + 2201.2.3 2.2.4 UTF-8 2.17 diff --git a/redis/Package.md b/redis/Package.md index acd40a11..45fa4a67 100644 --- a/redis/Package.md +++ b/redis/Package.md @@ -9,7 +9,7 @@ This package provides the capability to access Redis and it provides the functio ### Compatibility | | Version | |---------------------|--------------------| -| Ballerina Language | Swan Lake 2201.2.1 | +| Ballerina Language | Swan Lake 2201.2.3 | ## Report issues To report bugs, request new features, start new discussions, view project boards, etc., go to the [Ballerina Extended Library repository](https://github.com/ballerina-platform/ballerina-extended-library) From 543405c04bd8382d6969ee863e98851a7e3e8349 Mon Sep 17 00:00:00 2001 From: Hasitha Abeykoon Date: Wed, 30 Nov 2022 10:16:39 +0530 Subject: [PATCH 2/2] Update Dependecies.toml with Bal 2201.2.3 --- redis/Dependencies.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redis/Dependencies.toml b/redis/Dependencies.toml index 5e020b0e..c5ee7e8f 100644 --- a/redis/Dependencies.toml +++ b/redis/Dependencies.toml @@ -63,7 +63,7 @@ modules = [ [[package]] org = "ballerina" name = "observe" -version = "1.0.5" +version = "1.0.6" scope = "testOnly" dependencies = [ {org = "ballerina", name = "jballerina.java"}