From 7536c332aac85a3be8014c5a06d447e216330bef Mon Sep 17 00:00:00 2001 From: Davi Carvalho Date: Tue, 8 Sep 2026 01:29:53 -0300 Subject: [PATCH 1/3] chore: allow @adonisjs/redis v11 in peer dependencies --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4480d9b..64326c0 100644 --- a/package.json +++ b/package.json @@ -93,7 +93,7 @@ "@adonisjs/assembler": "^8.0.0-next.26 || ^8.0.0", "@adonisjs/core": "^7.0.0-next.16 || ^7.0.0", "@adonisjs/lucid": "^22.0.0-next.0 || ^22.0.0", - "@adonisjs/redis": "^10.0.0-next.2 || ^10.0.0", + "@adonisjs/redis": "^10.0.0-next.2 || ^10.0.0 || ^11.0.0", "@aws-sdk/client-dynamodb": "^3.955.0", "@aws-sdk/util-dynamodb": "^3.955.0", "@japa/api-client": "^3.1.0", From b1448df7b1063c0883c13bf52e9e0cb613a7c049 Mon Sep 17 00:00:00 2001 From: Davi de Carvalho Date: Tue, 8 Sep 2026 04:19:19 -0300 Subject: [PATCH 2/3] ci: test against @adonisjs/redis v10 and v11 --- .github/workflows/checks.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index a0d2ea8..39c37c6 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -19,6 +19,7 @@ jobs: matrix: node-version: [latest] db: [sqlite, postgres, mysql] + redis-version: [10, 11] services: redis: image: redis @@ -83,6 +84,8 @@ jobs: node-version: ${{ matrix.node-version }} - name: Install run: npm install + - name: Install @adonisjs/redis v${{ matrix.redis-version }} + run: npm install --no-save @adonisjs/redis@${{ matrix.redis-version }} - name: Install Playwright Browsers run: npx playwright install --with-deps - name: Run tests From b8591cd53343ead59ca634581bd3f852b5fe9088 Mon Sep 17 00:00:00 2001 From: Davi de Carvalho Date: Tue, 8 Sep 2026 04:35:18 -0300 Subject: [PATCH 3/3] ci: do not cancel sibling matrix legs on failure --- .github/workflows/checks.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 39c37c6..e66742b 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -16,6 +16,7 @@ jobs: test_linux: runs-on: ubuntu-latest strategy: + fail-fast: false matrix: node-version: [latest] db: [sqlite, postgres, mysql]