Skip to content

Commit 0efa36a

Browse files
authored
Merge branch 'master' into master
2 parents edaf032 + 1cc3211 commit 0efa36a

34 files changed

+2338
-1178
lines changed

.prettierrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
semi: true
22
trailingComma: "es5"
33
singleQuote: true
4+
arrowParens: "avoid"

package-lock.json

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

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,42 +20,42 @@
2020
"license": "BSD-3-Clause",
2121
"dependencies": {
2222
"@apollographql/graphql-playground-html": "1.6.26",
23-
"@graphql-tools/stitch": "^6.0.1",
24-
"@graphql-tools/utils": "^6.0.1",
23+
"@graphql-tools/stitch": "6.0.10",
24+
"@graphql-tools/utils": "6.0.10",
2525
"@parse/fs-files-adapter": "1.0.1",
2626
"@parse/push-adapter": "3.2.0",
2727
"@parse/s3-files-adapter": "1.4.0",
2828
"@parse/simple-mailgun-adapter": "1.1.0",
29-
"apollo-server-express": "2.14.1",
29+
"apollo-server-express": "2.15.0",
3030
"bcryptjs": "2.4.3",
3131
"body-parser": "1.19.0",
3232
"commander": "5.1.0",
3333
"cors": "2.8.5",
3434
"deepcopy": "2.0.0",
3535
"express": "4.17.1",
36-
"follow-redirects": "1.11.0",
36+
"follow-redirects": "1.12.1",
3737
"graphql": "15.1.0",
3838
"graphql-list-fields": "2.0.2",
39-
"graphql-relay": "^0.6.0",
39+
"graphql-relay": "0.6.0",
4040
"graphql-upload": "11.0.0",
4141
"intersect": "1.0.1",
4242
"jsonwebtoken": "8.5.1",
43-
"jwks-rsa": "1.8.0",
43+
"jwks-rsa": "1.8.1",
4444
"ldapjs": "2.0.0",
4545
"lodash": "4.17.16",
4646
"lru-cache": "5.1.1",
4747
"mime": "2.4.6",
4848
"mongodb": "3.5.9",
4949
"parse": "2.14.0",
50-
"pg-promise": "10.5.6",
51-
"pluralize": "^8.0.0",
50+
"pg-promise": "10.5.7",
51+
"pluralize": "8.0.0",
5252
"redis": "3.0.2",
5353
"semver": "7.3.2",
5454
"subscriptions-transport-ws": "0.9.16",
5555
"tv4": "1.3.0",
5656
"uuid": "8.1.0",
5757
"winston": "3.2.1",
58-
"winston-daily-rotate-file": "4.4.2",
58+
"winston-daily-rotate-file": "4.5.0",
5959
"ws": "7.3.0"
6060
},
6161
"devDependencies": {
@@ -80,7 +80,7 @@
8080
"eslint-plugin-flowtype": "5.1.3",
8181
"flow-bin": "0.119.1",
8282
"form-data": "3.0.0",
83-
"graphql-tag": "^2.10.1",
83+
"graphql-tag": "2.10.1",
8484
"husky": "4.2.5",
8585
"jasmine": "3.5.0",
8686
"jsdoc": "3.6.3",
@@ -114,7 +114,7 @@
114114
"parse-server": "./bin/parse-server"
115115
},
116116
"optionalDependencies": {
117-
"bcrypt": "4.0.1"
117+
"@node-rs/bcrypt": "0.3.0"
118118
},
119119
"collective": {
120120
"type": "opencollective",

spec/support/CustomAuth.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module.exports = {
2-
validateAppId: function() {
2+
validateAppId: function () {
33
return Promise.resolve();
44
},
5-
validateAuthData: function(authData) {
5+
validateAuthData: function (authData) {
66
if (authData.token == 'my-token') {
77
return Promise.resolve();
88
}

spec/support/CustomAuthFunction.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
module.exports = function(validAuthData) {
1+
module.exports = function (validAuthData) {
22
return {
3-
validateAppId: function() {
3+
validateAppId: function () {
44
return Promise.resolve();
55
},
6-
validateAuthData: function(authData) {
6+
validateAuthData: function (authData) {
77
if (authData.token == validAuthData.token) {
88
return Promise.resolve();
99
}

spec/support/CustomMiddleware.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module.exports = function(req, res, next) {
1+
module.exports = function (req, res, next) {
22
res.set('X-Yolo', '1');
33
next();
44
};

0 commit comments

Comments
 (0)