Skip to content

Commit

Permalink
meta: upgrade all dev dependencies (transloadit#3903)
Browse files Browse the repository at this point in the history
  • Loading branch information
aduh95 committed Aug 16, 2022
1 parent d7ce8bd commit 91fd0da
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 21 deletions.
38 changes: 19 additions & 19 deletions package.json
Expand Up @@ -30,39 +30,39 @@
"dependencies": {
"atob": "2.1.2",
"aws-sdk": "^2.1038.0",
"body-parser": "1.19.0",
"chalk": "2.4.2",
"common-tags": "1.8.0",
"body-parser": "1.20.0",
"chalk": "4.1.2",
"common-tags": "1.8.2",
"connect-redis": "6.1.3",
"cookie-parser": "1.4.6",
"cors": "^2.8.5",
"escape-goat": "3.0.0",
"escape-string-regexp": "2.0.0",
"express": "4.17.1",
"escape-string-regexp": "4.0.0",
"express": "4.18.1",
"express-interceptor": "1.2.0",
"express-prom-bundle": "6.3.0",
"express-prom-bundle": "6.5.0",
"express-request-id": "1.4.1",
"express-session": "1.17.1",
"express-session": "1.17.3",
"form-data": "^3.0.0",
"got": "11",
"grant": "4.7.0",
"helmet": "^4.6.0",
"ipaddr.js": "^2.0.1",
"jsonwebtoken": "8.5.1",
"lodash.merge": "^4.6.2",
"mime-types": "2.1.25",
"mime-types": "2.1.35",
"moment": "^2.29.2",
"moment-timezone": "^0.5.31",
"morgan": "1.10.0",
"ms": "2.1.2",
"node-schedule": "1.3.2",
"prom-client": "12.0.0",
"ms": "2.1.3",
"node-schedule": "2.1.0",
"prom-client": "14.0.1",
"redis": "4.2.0",
"semver": "6.3.0",
"semver": "7.3.7",
"serialize-error": "^2.1.0",
"serialize-javascript": "^6.0.0",
"tus-js-client": "^3.0.0",
"validator": "^12.1.0",
"validator": "^13.0.0",
"ws": "8.8.1"
},
"devDependencies": {
Expand All @@ -77,15 +77,15 @@
"@types/morgan": "1.7.37",
"@types/ms": "0.7.31",
"@types/node": "^18.0.3",
"@types/react": "^17.0.13",
"@types/request": "2.48.4",
"@types/react": "^18.0.0",
"@types/request": "2.48.8",
"@types/webpack": "^5.28.0",
"@types/ws": "6.0.4",
"@types/ws": "8.5.3",
"into-stream": "^6.0.0",
"jest": "^27.0.6",
"jest": "^28.0.0",
"nock": "^13.1.3",
"supertest": "3.4.2",
"typescript": "~4.4"
"supertest": "6.2.4",
"typescript": "~4.7"
},
"files": [
"bin/",
Expand Down
4 changes: 2 additions & 2 deletions test/__tests__/companion.js
Expand Up @@ -236,7 +236,7 @@ it('respects allowLocalUrls, localhost', async () => {
res = await runUrlGetTest('http://localhost/')
expect(res.statusCode).toBe(400)
expect(res.body).toEqual({ error: 'Invalid request body' })
}, 1000)
})

it('respects allowLocalUrls, valid hostname that resolves to localhost', async () => {
let res = await runUrlMetaTest(`http://${fakeLocalhost}/`)
Expand All @@ -246,4 +246,4 @@ it('respects allowLocalUrls, valid hostname that resolves to localhost', async (
res = await runUrlGetTest(`http://${fakeLocalhost}/`)
expect(res.statusCode).toBe(500)
expect(res.body).toEqual({ message: 'failed to fetch URL metadata' })
}, 1000)
})

0 comments on commit 91fd0da

Please sign in to comment.