From be9f9087ffbdec951a2833342800da271feb8953 Mon Sep 17 00:00:00 2001 From: Luca Del Puppo Date: Wed, 13 May 2026 08:14:46 +0200 Subject: [PATCH 1/3] build(deps): update dependencies and fix pretest command --- package.json | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/package.json b/package.json index ab69400..a087e8f 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "posttest": "tsd", "test:security": "node ./sqlmap/sqlmap.js", "test:typescript": "tsd", - "pretest:security": "napa https://github.com/sqlmapproject/sqlmap && node ./sqlmap/db-init.js", + "pretest:security": "git clone --depth=1 https://github.com/sqlmapproject/sqlmap node_modules/sqlmap && node ./sqlmap/db-init.js", "lint": "standard", "benchmark": "node benchmark/index.js" }, @@ -24,15 +24,14 @@ }, "homepage": "https://github.com/nearform/sql#readme", "devDependencies": { - "@fastify/postgres": "^5.2.0", - "async": "^3.2.0", + "@fastify/postgres": "^6.0.2", + "async": "^3.2.6", "benchmark": "^2.1.4", - "fastify": "^4.0.1", - "jsonfile": "^6.1.0", - "napa": "^3.0.0", - "pg": "^8.6.0", + "fastify": "^5.8.5", + "jsonfile": "^6.2.1", + "pg": "^8.20.0", "sql-template-strings": "^2.2.2", - "standard": "^17.0.0", + "standard": "^17.1.2", "tsd": "^0.33.0" }, "standard": { From 8391c1c28ad04a8ce6bc4054fba7b994859c41fb Mon Sep 17 00:00:00 2001 From: Luca Del Puppo Date: Wed, 13 May 2026 08:14:58 +0200 Subject: [PATCH 2/3] build(deps): update postgres version to use matrix variable --- .github/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aea5ef4..3142c4e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,9 +17,15 @@ jobs: - 24 os: - ubuntu-latest + postgres-version: + - 14 + - 15 + - 16 + - 17 + - 18 services: postgres: - image: postgres:9-alpine + image: postgres:${{ matrix.postgres-version }}-alpine env: POSTGRES_PASSWORD: postgres POSTGRES_USER: postgres From b48a1b4035034cb90323d904e62b69c99f93f34c Mon Sep 17 00:00:00 2001 From: Luca Del Puppo Date: Wed, 13 May 2026 19:36:46 +0200 Subject: [PATCH 3/3] build(ci): add job name for clarity in CI workflow --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3142c4e..da86ab8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,6 +23,7 @@ jobs: - 16 - 17 - 18 + name: "Node ${{ matrix.node-version }} - PostgreSQL ${{ matrix.postgres-version }}" services: postgres: image: postgres:${{ matrix.postgres-version }}-alpine