parse-server 5.0.0-alpha.6 → 5.0.0-beta.3
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 +10 -14
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -5,16 +5,17 @@
|
|
|
5
5
|
[](https://github.com/parse-community/parse-server/actions?query=workflow%3Aci+branch%3Aalpha)
|
|
6
6
|
[](https://snyk.io/test/github/parse-community/parse-server)
|
|
7
7
|
[](https://codecov.io/github/parse-community/parse-server?branch=alpha)
|
|
8
|
-
[](https://github.com/parse-community/parse-dashboard/releases)
|
|
9
8
|
|
|
10
9
|
[](https://nodejs.org)
|
|
11
10
|
[](https://www.mongodb.com)
|
|
12
11
|
[](https://www.postgresql.org)
|
|
12
|
+
[](https://github.com/parse-community/parse-dashboard/releases)
|
|
13
13
|
|
|
14
14
|
[](https://www.npmjs.com/package/parse-server)
|
|
15
15
|
[](https://www.npmjs.com/package/parse-server)
|
|
16
16
|
[](https://www.npmjs.com/package/parse-server)
|
|
17
17
|
|
|
18
|
+
|
|
18
19
|
[][open-collective-link]
|
|
19
20
|
[][open-collective-link]
|
|
20
21
|
[![License][license-svg]][license-link]
|
|
@@ -29,15 +30,11 @@ The full documentation for Parse Server is available in the [wiki](https://githu
|
|
|
29
30
|
|
|
30
31
|
---
|
|
31
32
|
|
|
32
|
-
A big *thank you*
|
|
33
|
-
|
|
34
|
-
### Diamond Sponsors
|
|
33
|
+
A big *thank you* to all our backers and sponsors who support the development of Parse Platform!
|
|
35
34
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
[](https://opencollective.com/parse-server/contribute/bronze-sponsor-10559)
|
|
35
|
+
### 💎 Diamond Sponsors
|
|
36
|
+
|
|
37
|
+
[](https://opencollective.com/parse-server/sponsor/0/website)
|
|
41
38
|
|
|
42
39
|
---
|
|
43
40
|
|
|
@@ -489,12 +486,11 @@ You can also find more adapters maintained by the community by searching on [npm
|
|
|
489
486
|
|
|
490
487
|
Parse Server allows developers to choose from several options when hosting files:
|
|
491
488
|
|
|
492
|
-
* `GridFSBucketAdapter
|
|
493
|
-
* `S3Adapter
|
|
494
|
-
* `GCSAdapter
|
|
495
|
-
* `FSAdapter` - local file storage
|
|
489
|
+
* `GridFSBucketAdapter`, which is backed by MongoDB;
|
|
490
|
+
* `S3Adapter`, which is backed by [Amazon S3](https://aws.amazon.com/s3/); or
|
|
491
|
+
* `GCSAdapter`, which is backed by [Google Cloud Storage](https://cloud.google.com/storage/)
|
|
496
492
|
|
|
497
|
-
`GridFSBucketAdapter` is used by default and requires no setup, but if you're interested in using
|
|
493
|
+
`GridFSBucketAdapter` is used by default and requires no setup, but if you're interested in using S3 or Google Cloud Storage, additional configuration information is available in the [Parse Server guide](http://docs.parseplatform.org/parse-server/guide/#configuring-file-adapters).
|
|
498
494
|
|
|
499
495
|
## Idempotency Enforcement
|
|
500
496
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "parse-server",
|
|
3
|
-
"version": "5.0.0-
|
|
3
|
+
"version": "5.0.0-beta.3",
|
|
4
4
|
"description": "An express module providing a Parse-compatible API server",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"repository": {
|
|
@@ -135,7 +135,7 @@
|
|
|
135
135
|
"madge:circular": "node_modules/.bin/madge ./src --circular"
|
|
136
136
|
},
|
|
137
137
|
"engines": {
|
|
138
|
-
"node": ">=12.20.0"
|
|
138
|
+
"node": ">=12.20.0 <16"
|
|
139
139
|
},
|
|
140
140
|
"bin": {
|
|
141
141
|
"parse-server": "bin/parse-server"
|