Skip to content

Commit 378c46f

Browse files
committed
PROCESS: Updated dependencies to major versions.
1 parent 8020b4d commit 378c46f

File tree

3 files changed

+125
-28
lines changed

3 files changed

+125
-28
lines changed

app/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
const proxy = require('express-http-proxy');
22
const basicAuth = require('basic-auth');
33
const Ldap = require('./ldap');
4-
const fetch = require('node-fetch');
4+
const fetch = (...args) => import('node-fetch').then(({default: fetch}) => fetch(...args));
55
const createHmac = require('crypto').createHmac;
66
const session = require('express-session');
77
const bodyParser = require('body-parser');

package-lock.json

Lines changed: 121 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@
2020
"body-parser": "^1.19.0",
2121
"cors": "^2.8.5",
2222
"express": "^4.17.1",
23-
"express-http-proxy": "^1.6.0",
23+
"express-http-proxy": "^2.1.1",
2424
"express-robots-txt": "^1.0.0",
2525
"express-session": "^1.17.1",
2626
"fs": "0.0.1-security",
2727
"ldapjs": "^2.2.0",
2828
"memoizee": "^0.4.15",
2929
"morgan": "^1.9.1",
30-
"node-fetch": "^2.6.1",
31-
"yaml": "^1.10.2"
30+
"node-fetch": "^3.3.2",
31+
"yaml": "^2.6.1"
3232
},
3333
"devDependencies": {
3434
"frisby": "^2.1.3",

0 commit comments

Comments
 (0)