parse-server 5.0.0-alpha.5 → 5.0.0-alpha.9
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
CHANGED
|
@@ -5,15 +5,15 @@
|
|
|
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)
|
|
8
9
|
|
|
9
|
-
[](https://nodejs.org)
|
|
10
11
|
[](https://www.mongodb.com)
|
|
11
12
|
[](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
|
+
[](https://www.npmjs.com/package/parse-server)
|
|
15
16
|
[](https://www.npmjs.com/package/parse-server)
|
|
16
|
-
<!-- [](https://www.npmjs.com/package/parse-server) -->
|
|
17
17
|
|
|
18
18
|
[][open-collective-link]
|
|
19
19
|
[][open-collective-link]
|
|
@@ -29,11 +29,15 @@ The full documentation for Parse Server is available in the [wiki](https://githu
|
|
|
29
29
|
|
|
30
30
|
---
|
|
31
31
|
|
|
32
|
-
A big *thank you* to
|
|
32
|
+
A big *thank you* 🙏 to our [sponsors](#sponsors) and [backers](#backers) who support the development of Parse Platform!
|
|
33
33
|
|
|
34
|
-
###
|
|
35
|
-
|
|
36
|
-
[](https://opencollective.com/parse-server/contribute/diamond-sponsor-10560)
|
|
37
|
+
|
|
38
|
+
#### Bronze Sponsors
|
|
39
|
+
|
|
40
|
+
[](https://opencollective.com/parse-server/contribute/bronze-sponsor-10559)
|
|
37
41
|
|
|
38
42
|
---
|
|
39
43
|
|
|
@@ -112,8 +116,8 @@ Parse Server is continuously tested with the most recent releases of Node.js to
|
|
|
112
116
|
|------------|----------------|-------------|---------------|
|
|
113
117
|
| Node.js 12 | 12.22.7 | April 2022 | ✅ Yes |
|
|
114
118
|
| Node.js 14 | 14.18.1 | April 2023 | ✅ Yes |
|
|
115
|
-
| Node.js
|
|
116
|
-
| Node.js
|
|
119
|
+
| Node.js 16 | 16.13.0 | April 2024 | ✅ Yes |
|
|
120
|
+
| Node.js 17 | 17.x | June 2022 | ❌ Not tested |
|
|
117
121
|
|
|
118
122
|
#### MongoDB
|
|
119
123
|
Parse Server is continuously tested with the most recent releases of MongoDB to ensure compatibility. We follow the [MongoDB support schedule](https://www.mongodb.com/support-policy) and only test against versions that are officially supported and have not reached their end-of-life date.
|
|
@@ -485,11 +489,12 @@ You can also find more adapters maintained by the community by searching on [npm
|
|
|
485
489
|
|
|
486
490
|
Parse Server allows developers to choose from several options when hosting files:
|
|
487
491
|
|
|
488
|
-
* `GridFSBucketAdapter
|
|
489
|
-
* `S3Adapter
|
|
490
|
-
* `GCSAdapter
|
|
492
|
+
* `GridFSBucketAdapter` - which is backed by MongoDB
|
|
493
|
+
* `S3Adapter` - which is backed by [Amazon S3](https://aws.amazon.com/s3/)
|
|
494
|
+
* `GCSAdapter` - which is backed by [Google Cloud Storage](https://cloud.google.com/storage/)
|
|
495
|
+
* `FSAdapter` - local file storage
|
|
491
496
|
|
|
492
|
-
`GridFSBucketAdapter` is used by default and requires no setup, but if you're interested in using S3
|
|
497
|
+
`GridFSBucketAdapter` is used by default and requires no setup, but if you're interested in using Amazon S3, Google Cloud Storage, or local file storage, additional configuration information is available in the [Parse Server guide](http://docs.parseplatform.org/parse-server/guide/#configuring-file-adapters).
|
|
493
498
|
|
|
494
499
|
## Idempotency Enforcement
|
|
495
500
|
|