parse-server 7.4.0-alpha.2 → 7.4.0-alpha.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -5
- package/lib/Adapters/Auth/OAuth1Client.js +4 -2
- package/lib/Adapters/Auth/index.js +4 -2
- package/lib/Adapters/Auth/keycloak.js +7 -3
- package/lib/Auth.js +10 -6
- package/lib/Config.js +7 -3
- package/lib/Controllers/DatabaseController.js +13 -5
- package/lib/Controllers/SchemaController.js +19 -9
- package/lib/Controllers/UserController.js +4 -2
- package/lib/GraphQL/loaders/parseClassMutations.js +7 -3
- package/lib/GraphQL/loaders/parseClassTypes.js +4 -2
- package/lib/GraphQL/loaders/usersMutations.js +10 -4
- package/lib/GraphQL/parseGraphQLUtils.js +4 -2
- package/lib/GraphQL/transformers/mutation.js +13 -5
- package/lib/ParseServer.js +4 -2
- package/lib/RestWrite.js +22 -8
- package/lib/Routers/AggregateRouter.js +7 -7
- package/lib/Routers/UsersRouter.js +4 -2
- package/lib/SchemaMigrations/DefinedSchemas.js +13 -5
- package/lib/middlewares.js +16 -6
- package/lib/triggers.js +4 -2
- package/lib/vendor/mongodbUrl.js +186 -56
- package/package.json +12 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "parse-server",
|
|
3
|
-
"version": "7.4.0-alpha.
|
|
3
|
+
"version": "7.4.0-alpha.4",
|
|
4
4
|
"description": "An express module providing a Parse-compatible API server",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"repository": {
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
],
|
|
20
20
|
"license": "Apache-2.0",
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@apollo/server": "4.
|
|
23
|
-
"@babel/eslint-parser": "7.
|
|
24
|
-
"@graphql-tools/merge": "9.0.
|
|
22
|
+
"@apollo/server": "4.11.0",
|
|
23
|
+
"@babel/eslint-parser": "7.25.8",
|
|
24
|
+
"@graphql-tools/merge": "9.0.7",
|
|
25
25
|
"@graphql-tools/schema": "10.0.4",
|
|
26
26
|
"@graphql-tools/utils": "8.12.0",
|
|
27
27
|
"@parse/fs-files-adapter": "3.0.0",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"cors": "2.8.5",
|
|
33
33
|
"deepcopy": "2.1.0",
|
|
34
34
|
"express": "4.21.0",
|
|
35
|
-
"express-rate-limit": "7.
|
|
35
|
+
"express-rate-limit": "7.4.1",
|
|
36
36
|
"follow-redirects": "1.15.6",
|
|
37
37
|
"graphql": "16.9.0",
|
|
38
38
|
"graphql-list-fields": "2.0.4",
|
|
@@ -48,15 +48,15 @@
|
|
|
48
48
|
"mime": "3.0.0",
|
|
49
49
|
"mongodb": "5.9.0",
|
|
50
50
|
"mustache": "4.2.0",
|
|
51
|
-
"otpauth": "9.3.
|
|
51
|
+
"otpauth": "9.3.4",
|
|
52
52
|
"parse": "5.3.0",
|
|
53
53
|
"path-to-regexp": "6.3.0",
|
|
54
54
|
"pg-monitor": "2.1.0",
|
|
55
|
-
"pg-promise": "11.
|
|
55
|
+
"pg-promise": "11.10.1",
|
|
56
56
|
"pluralize": "8.0.0",
|
|
57
57
|
"punycode": "2.3.1",
|
|
58
58
|
"rate-limit-redis": "4.2.0",
|
|
59
|
-
"redis": "4.
|
|
59
|
+
"redis": "4.7.0",
|
|
60
60
|
"semver": "7.6.3",
|
|
61
61
|
"subscriptions-transport-ws": "0.11.0",
|
|
62
62
|
"tv4": "1.3.0",
|
|
@@ -77,13 +77,13 @@
|
|
|
77
77
|
"@semantic-release/changelog": "6.0.3",
|
|
78
78
|
"@semantic-release/commit-analyzer": "13.0.0",
|
|
79
79
|
"@semantic-release/git": "10.0.1",
|
|
80
|
-
"@semantic-release/github": "10.
|
|
80
|
+
"@semantic-release/github": "10.3.5",
|
|
81
81
|
"@semantic-release/npm": "12.0.1",
|
|
82
82
|
"@semantic-release/release-notes-generator": "14.0.1",
|
|
83
83
|
"all-node-versions": "12.1.0",
|
|
84
84
|
"apollo-upload-client": "17.0.0",
|
|
85
85
|
"clean-jsdoc-theme": "4.3.0",
|
|
86
|
-
"cross-env": "7.0.
|
|
86
|
+
"cross-env": "7.0.3",
|
|
87
87
|
"deep-diff": "1.0.2",
|
|
88
88
|
"eslint": "8.57.0",
|
|
89
89
|
"eslint-plugin-flowtype": "8.0.3",
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
"jsdoc-babel": "0.5.0",
|
|
98
98
|
"lint-staged": "10.2.3",
|
|
99
99
|
"m": "1.9.0",
|
|
100
|
-
"madge": "
|
|
100
|
+
"madge": "8.0.0",
|
|
101
101
|
"mock-files-adapter": "file:spec/dependencies/mock-files-adapter",
|
|
102
102
|
"mock-mail-adapter": "file:spec/dependencies/mock-mail-adapter",
|
|
103
103
|
"mongodb-runner": "5.6.4",
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
"nyc": "15.1.0",
|
|
107
107
|
"prettier": "2.0.5",
|
|
108
108
|
"semantic-release": "24.0.0",
|
|
109
|
-
"yaml": "2.5.
|
|
109
|
+
"yaml": "2.5.1"
|
|
110
110
|
},
|
|
111
111
|
"scripts": {
|
|
112
112
|
"ci:check": "node ./ci/ciCheck.js",
|