From 432c77d3b4d8309e04af418261e0c41835357dad Mon Sep 17 00:00:00 2001 From: Steven John Lange Date: Sat, 17 Jun 2023 20:30:37 +0200 Subject: [PATCH 1/6] test current couchdb versions --- .github/actions/install-deps/action.yml | 4 ++-- .github/workflows/ci.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/actions/install-deps/action.yml b/.github/actions/install-deps/action.yml index bf45cf7b65..9b4fa28600 100644 --- a/.github/actions/install-deps/action.yml +++ b/.github/actions/install-deps/action.yml @@ -2,7 +2,7 @@ name: Install dependencies inputs: node-version: { required: true } - couchdb-version: { required: false, default: '3.1' } + couchdb-version: { required: false, default: '3.3' } runs: using: composite @@ -22,6 +22,6 @@ runs: - run: npm install shell: bash - - uses: iamssen/couchdb-github-action@master + - uses: SourceR85/couchdb-github-action@2023-06-17 with: couchdb-version: ${{ inputs.couchdb-version }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9c0c351c4e..4280f42c0d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,7 +38,7 @@ jobs: strategy: fail-fast: false matrix: - couchdb: ['2.3', '3.1'] + couchdb: ['2.3', '3.1', '3.2', '3.3'] node: [14, 16] cmd: - npm test @@ -83,7 +83,7 @@ jobs: strategy: fail-fast: false matrix: - couchdb: ['2.3','3.1'] + couchdb: ['2.3', '3.1', '3.2', '3.3'] client: ['selenium:firefox', 'selenium:chrome'] cmd: - npm test From e31c6ba12623612b928b0a44892f3806c5ad3475 Mon Sep 17 00:00:00 2001 From: Steven Date: Sun, 18 Jun 2023 04:59:02 +0200 Subject: [PATCH 2/6] Update action.yml iamssen/couchdb-github-action got updated. --- .github/actions/install-deps/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/install-deps/action.yml b/.github/actions/install-deps/action.yml index 9b4fa28600..904a5b75a1 100644 --- a/.github/actions/install-deps/action.yml +++ b/.github/actions/install-deps/action.yml @@ -22,6 +22,6 @@ runs: - run: npm install shell: bash - - uses: SourceR85/couchdb-github-action@2023-06-17 + - uses: iamssen/couchdb-github-action@master with: couchdb-version: ${{ inputs.couchdb-version }} From 4f8f8dea642b0ceb5d2ba9c3b13a47f96b4c4617 Mon Sep 17 00:00:00 2001 From: Steven-John Lange Date: Thu, 22 Feb 2024 16:51:02 +0100 Subject: [PATCH 3/6] add description field to couchdb-version install action --- .github/actions/install-deps/action.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/actions/install-deps/action.yml b/.github/actions/install-deps/action.yml index 9eaa3d0456..9956e3cbd6 100644 --- a/.github/actions/install-deps/action.yml +++ b/.github/actions/install-deps/action.yml @@ -2,7 +2,10 @@ name: Install dependencies inputs: node-version: { required: true } - couchdb-version: { required: false, default: '3.3' } + couchdb-version: + description: CouchDB version to install + required: false + default: '3.1' runs: using: composite From 42e81e6dc37da8f847a30536261a871e8bbfcc4c Mon Sep 17 00:00:00 2001 From: Steven-John Lange Date: Thu, 22 Feb 2024 16:52:48 +0100 Subject: [PATCH 4/6] Revert "add description field to couchdb-version install action" This reverts commit 4f8f8dea642b0ceb5d2ba9c3b13a47f96b4c4617. --- .github/actions/install-deps/action.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/actions/install-deps/action.yml b/.github/actions/install-deps/action.yml index 9956e3cbd6..9eaa3d0456 100644 --- a/.github/actions/install-deps/action.yml +++ b/.github/actions/install-deps/action.yml @@ -2,10 +2,7 @@ name: Install dependencies inputs: node-version: { required: true } - couchdb-version: - description: CouchDB version to install - required: false - default: '3.1' + couchdb-version: { required: false, default: '3.3' } runs: using: composite From 29ce14ed75b061bff3cd0b27ebdf911f5670e491 Mon Sep 17 00:00:00 2001 From: Steven John Lange Date: Sun, 24 Mar 2024 19:11:48 +0100 Subject: [PATCH 5/6] update default for couchdb-version to '3.3' --- .github/actions/install-couchdb/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/install-couchdb/action.yml b/.github/actions/install-couchdb/action.yml index 42721a640a..5ff0617d78 100644 --- a/.github/actions/install-couchdb/action.yml +++ b/.github/actions/install-couchdb/action.yml @@ -5,7 +5,7 @@ inputs: couchdb-version: description: the version of CouchDB to install required: false - default: '3.1' + default: '3.3' runs: using: composite From 7985f592a2a38b5772bafa8343d08284c8b3547a Mon Sep 17 00:00:00 2001 From: Steven John Lange Date: Mon, 23 Dec 2024 00:58:31 +0100 Subject: [PATCH 6/6] chore: add CouchDB v3.4 --- .github/actions/install-couchdb/action.yml | 2 +- .github/workflows/ci.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/install-couchdb/action.yml b/.github/actions/install-couchdb/action.yml index 5ff0617d78..639ab782c5 100644 --- a/.github/actions/install-couchdb/action.yml +++ b/.github/actions/install-couchdb/action.yml @@ -5,7 +5,7 @@ inputs: couchdb-version: description: the version of CouchDB to install required: false - default: '3.3' + default: '3.4' runs: using: composite diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3273909190..d048fc2515 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -68,7 +68,7 @@ jobs: strategy: fail-fast: false matrix: - couchdb: ['2.3', '3.1', '3.2', '3.3'] + couchdb: ['2.3', '3.1', '3.2', '3.3', '3.4'] node: [18, 20] cmd: - npm test @@ -112,7 +112,7 @@ jobs: strategy: fail-fast: false matrix: - couchdb: ['2.3', '3.1', '3.2', '3.3'] + couchdb: ['2.3', '3.1', '3.2', '3.3', '3.4'] client: ['firefox', 'chromium', 'webkit'] cmd: - npm test