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
  [![Build Status](https://github.com/parse-community/parse-server/workflows/ci/badge.svg?branch=alpha)](https://github.com/parse-community/parse-server/actions?query=workflow%3Aci+branch%3Aalpha)
6
6
  [![Snyk Badge](https://snyk.io/test/github/parse-community/parse-server/badge.svg)](https://snyk.io/test/github/parse-community/parse-server)
7
7
  [![Coverage](https://img.shields.io/codecov/c/github/parse-community/parse-server/alpha.svg)](https://codecov.io/github/parse-community/parse-server?branch=alpha)
8
+ [![auto-release](https://img.shields.io/badge/%F0%9F%9A%80-auto--release-9e34eb.svg)](https://github.com/parse-community/parse-dashboard/releases)
8
9
 
9
- [![Node Version](https://img.shields.io/badge/nodejs-12,_14,_15-green.svg?logo=node.js&style=flat)](https://nodejs.org)
10
+ [![Node Version](https://img.shields.io/badge/nodejs-12,_14,_16-green.svg?logo=node.js&style=flat)](https://nodejs.org)
10
11
  [![MongoDB Version](https://img.shields.io/badge/mongodb-4.0,_4.2,_4.4,_5.0-green.svg?logo=mongodb&style=flat)](https://www.mongodb.com)
11
12
  [![Postgres Version](https://img.shields.io/badge/postgresql-11,_12,_13,_14-green.svg?logo=postgresql&style=flat)](https://www.postgresql.org)
12
- [![auto-release](https://img.shields.io/badge/%F0%9F%9A%80-auto--release-9e34eb.svg)](https://github.com/parse-community/parse-dashboard/releases)
13
13
 
14
14
  [![npm latest version](https://img.shields.io/npm/v/parse-server/latest.svg)](https://www.npmjs.com/package/parse-server)
15
+ [![npm beta version](https://img.shields.io/npm/v/parse-server/beta.svg)](https://www.npmjs.com/package/parse-server)
15
16
  [![npm alpha version](https://img.shields.io/npm/v/parse-server/alpha.svg)](https://www.npmjs.com/package/parse-server)
16
- <!-- [![npm beta version](https://img.shields.io/npm/v/parse-server/beta.svg)](https://www.npmjs.com/package/parse-server) -->
17
17
 
18
18
  [![Backers on Open Collective](https://opencollective.com/parse-server/backers/badge.svg)][open-collective-link]
19
19
  [![Sponsors on Open Collective](https://opencollective.com/parse-server/sponsors/badge.svg)][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 all our backers and sponsors who support the development of Parse Platform!
32
+ A big *thank you* 🙏 to our [sponsors](#sponsors) and [backers](#backers) who support the development of Parse Platform!
33
33
 
34
- ### 💎 Diamond Sponsors
35
-
36
- [![Sponsor](https://opencollective.com/parse-server/sponsor/0/avatar.svg)](https://opencollective.com/parse-server/sponsor/0/website)
34
+ ### Diamond Sponsors
35
+
36
+ [![Diamond Sponsors](https://opencollective.com/parse-server/tiers/diamond-sponsor.svg?avatarHeight=70&button=false)](https://opencollective.com/parse-server/contribute/diamond-sponsor-10560)
37
+
38
+ #### Bronze Sponsors
39
+
40
+ [![Bronze Sponsors](https://opencollective.com/parse-server/tiers/bronze-sponsor.svg?avatarHeight=36&button=false)](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 15 | 15.14.0 | June 2021 | ✅ Yes |
116
- | Node.js 16 | 16.x.x | April 2024 | ❌ Not tested |
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`, which is backed by MongoDB;
489
- * `S3Adapter`, which is backed by [Amazon S3](https://aws.amazon.com/s3/); or
490
- * `GCSAdapter`, which is backed by [Google Cloud Storage](https://cloud.google.com/storage/)
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 or Google Cloud Storage, additional configuration information is available in the [Parse Server guide](http://docs.parseplatform.org/parse-server/guide/#configuring-file-adapters).
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