From 66774944b61e1b97c5196d624a911ae09d823d0d Mon Sep 17 00:00:00 2001 From: Rodrigo Mansueli Date: Thu, 1 Feb 2024 10:28:22 -0300 Subject: [PATCH 1/5] Update CI/CD versions --- .github/workflows/docs.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index be9c2f2..9acb67e 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -14,15 +14,15 @@ jobs: strategy: matrix: os: [ubuntu-latest] - node: ['18'] + node: ['20'] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node }} From 97a4eb6edcf456c6dbdd08982838bf5f74f4619c Mon Sep 17 00:00:00 2001 From: Rodrigo Mansueli Date: Thu, 1 Feb 2024 10:29:06 -0300 Subject: [PATCH 2/5] Update release.yml --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7b216e4..9784faa 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,15 +13,15 @@ jobs: name: Release / Node ${{ matrix.node }} strategy: matrix: - node: ['18'] + node: ['20'] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node }} From 0be8af3ab8e952d240921c7b4bfde52f78d15a9e Mon Sep 17 00:00:00 2001 From: Rodrigo Mansueli Date: Thu, 1 Feb 2024 10:29:38 -0300 Subject: [PATCH 3/5] Update tests.yml --- .github/workflows/tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4c25e07..2960728 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,15 +13,15 @@ jobs: name: Run tests strategy: matrix: - node: ['18'] + node: ['20'] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node }} From 6763d944d861a2cd7acb57bb0ca3515e24a38a86 Mon Sep 17 00:00:00 2001 From: Rodrigo Mansueli Date: Wed, 7 Feb 2024 11:34:14 -0300 Subject: [PATCH 4/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 600beb1..15cfadd 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ JS Client library to interact with Supabase Functions. ## testing -To run tests you will need Node 18+. +To run tests you will need Node 20+. You are going to need docker daemon running to execute tests. From 94e7ae681b298cc18282e174d9ca6e0b63ded8b3 Mon Sep 17 00:00:00 2001 From: Rodrigo Mansueli Nunes Date: Wed, 27 Mar 2024 17:57:38 -0300 Subject: [PATCH 5/5] fix: trigger semantic release & export type FunctionRegion --- src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index bc45b76..1ad5c1d 100644 --- a/src/index.ts +++ b/src/index.ts @@ -5,6 +5,6 @@ export { FunctionsFetchError, FunctionsHttpError, FunctionsRelayError, - FunctionsResponse, - FunctionRegion + FunctionRegion, + FunctionsResponse } from './types'