From 8dca5b9072df85f01c659c54373d97ba3a73dd33 Mon Sep 17 00:00:00 2001 From: Cristian Barlutiu Date: Fri, 22 Mar 2024 09:36:37 +0100 Subject: [PATCH 1/3] upgrade for fastify 5 --- .github/workflows/ci.yml | 2 +- .taprc | 5 ++--- package.json | 14 +++++++------- 3 files changed, 10 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index babd56d..ffdef16 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,6 +17,6 @@ on: jobs: test: - uses: fastify/workflows/.github/workflows/plugins-ci.yml@v3 + uses: fastify/workflows/.github/workflows/plugins-ci.yml@v4.1.1 with: license-check: true diff --git a/.taprc b/.taprc index 30a802b..4e0cdc0 100644 --- a/.taprc +++ b/.taprc @@ -1,4 +1,3 @@ +disable-coverage: true files: - - test/**/*.test.js - -coverage: false \ No newline at end of file + - test/**/*.test.js \ No newline at end of file diff --git a/package.json b/package.json index 83693ac..f0f14b7 100644 --- a/package.json +++ b/package.json @@ -36,15 +36,15 @@ "node": ">=14" }, "devDependencies": { - "@types/node": "^20.1.0", - "busboy": "^1.0.0", + "@types/node": "^20.11.30", + "busboy": "^1.6.0", "photofinish": "^1.8.0", "snazzy": "^9.0.0", - "standard": "^17.0.0", - "tap": "^16.3.8", - "tinybench": "^2.5.1", - "tsd": "^0.30.0", - "typescript": "^5.0.2" + "standard": "^17.1.0", + "tap": "^18.7.1", + "tinybench": "^2.6.0", + "tsd": "^0.30.7", + "typescript": "^5.4.3" }, "keywords": [ "uploads", From c3e556f410902f7692d19b73e9ed0e453e23ec4a Mon Sep 17 00:00:00 2001 From: Cristian Barlutiu Date: Fri, 22 Mar 2024 11:15:50 +0100 Subject: [PATCH 2/3] Fixed typo --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ffdef16..444baa7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,6 +17,6 @@ on: jobs: test: - uses: fastify/workflows/.github/workflows/plugins-ci.yml@v4.1.1 + uses: fastify/workflows/.github/workflows/plugins-ci.yml@v4.1.0 with: license-check: true From d7fad9d7fc7da4f3ab4cb817b29d917d97f2e09d Mon Sep 17 00:00:00 2001 From: Cristian Barlutiu Date: Fri, 22 Mar 2024 11:30:41 +0100 Subject: [PATCH 3/3] removed engine field --- package.json | 3 --- 1 file changed, 3 deletions(-) diff --git a/package.json b/package.json index f0f14b7..848aa2a 100644 --- a/package.json +++ b/package.json @@ -32,9 +32,6 @@ "test:coverage": "nyc npm run test", "test": "npm run test:mocha" }, - "engines": { - "node": ">=14" - }, "devDependencies": { "@types/node": "^20.11.30", "busboy": "^1.6.0",