Skip to content

Commit 848205f

Browse files
Feat/updates for v5 (#184)
* Pin tap version Update dependabot to ignore tap major versions * Update ci workflow for fastify@5 * Sync gitignore with fastify/skeleton * Update workflows for fastify v5 * Remove unnecessary console log * Update all dependencies Migrate tap 16 to 18 * Move tap settings into .taprc config file --------- Signed-off-by: Gürgün Dayıoğlu <[email protected]> Co-authored-by: Gürgün Dayıoğlu <[email protected]>
1 parent 9ed49d4 commit 848205f

File tree

5 files changed

+17
-15
lines changed

5 files changed

+17
-15
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717

1818
jobs:
1919
test:
20-
uses: fastify/workflows/.github/workflows/plugins-ci.yml@v3
20+
uses: fastify/workflows/.github/workflows/plugins-ci.yml@v4.1.0
2121
with:
2222
lint: true
2323
license-check: true

.gitignore

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ lerna-debug.log*
1010
# Diagnostic reports (https://nodejs.org/api/report.html)
1111
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
1212

13+
# Clinic
14+
.clinic
15+
1316
# Runtime data
1417
pids
1518
*.pid
@@ -135,18 +138,15 @@ dist
135138
# macOS files
136139
.DS_Store
137140

138-
# Clinic
139-
.clinic
140-
141141
# lock files
142-
bun.lockb
143142
package-lock.json
144143
pnpm-lock.yaml
145144
yarn.lock
145+
bun.lockb
146146

147147
# editor files
148148
.vscode
149149
.idea
150150

151-
#tap files
151+
# tap files
152152
.tap/

.taprc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
disable-coverage: true
2+
files:
3+
- test/**/*.test.js

package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -33,34 +33,34 @@
3333
"scripts": {
3434
"lint": "eslint .",
3535
"test": "npm run test:unit && npm run test:typescript",
36-
"test:unit": "tap -J -R specy --no-coverage test/*test.js",
36+
"test:unit": "tap",
3737
"test:typescript": "tsd",
3838
"performance": "npm run lint && node performanceTest/test",
3939
"preversion": "npm run test && git push",
4040
"postversion": "git push && git push --tags"
4141
},
4242
"devDependencies": {
43-
"@fastify/multipart": "8.2.0",
43+
"@fastify/multipart": "8.1.0",
4444
"@fastify/pre-commit": "^2.1.0",
45-
"@h4ad/serverless-adapter": "4.2.1",
4645
"@types/aws-lambda": "8.10.136",
46+
"aws-lambda": "^1.0.7",
4747
"aws-serverless-express": "^3.4.0",
4848
"aws-serverless-fastify": "^3.0.6",
4949
"benchmark": "^2.1.4",
50-
"eslint": "^8.56.0",
50+
"eslint": "^8.57.0",
5151
"eslint-config-standard": "^17.1.0",
5252
"eslint-plugin-import": "^2.29.1",
5353
"eslint-plugin-n": "^16.6.2",
5454
"eslint-plugin-promise": "^6.1.1",
5555
"eslint-plugin-standard": "^5.0.0",
56-
"fastify": "^4.26.0",
56+
"fastify": "^4.26.2",
5757
"serverless-http": "^3.2.0",
58-
"tap": "^16.3.9",
59-
"tsd": "^0.30.4"
58+
"tap": "18.7.1",
59+
"tsd": "^0.30.7"
6060
},
6161
"overrides": {
6262
"aws-serverless-fastify": {
63-
"fastify": "^4.26.0"
63+
"fastify": "^4.26.2"
6464
}
6565
},
6666
"publishConfig": {

test/multipart.test.js

-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ test('should parse the multipart form-data successfully given utf8 encoded form
9393

9494
app.register(multipart, { attachFieldsToBody: true })
9595
app.post('/test', async (request, reply) => {
96-
console.log(request.body)
9796
t.equal(request.body.html.fieldname, 'html')
9897
t.equal(request.body.html.encoding, '7bit')
9998
t.equal(request.body.html.mimetype, 'text/plain')

0 commit comments

Comments
 (0)