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.
Files changed (2) hide show
  1. package/README.md +10 -14
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -5,16 +5,17 @@
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)
9
8
 
10
9
  [![Node Version](https://img.shields.io/badge/nodejs-12,_14,_15-green.svg?logo=node.js&style=flat)](https://nodejs.org)
11
10
  [![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)
12
11
  [![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
15
  [![npm beta version](https://img.shields.io/npm/v/parse-server/beta.svg)](https://www.npmjs.com/package/parse-server)
16
16
  [![npm alpha version](https://img.shields.io/npm/v/parse-server/alpha.svg)](https://www.npmjs.com/package/parse-server)
17
17
 
18
+
18
19
  [![Backers on Open Collective](https://opencollective.com/parse-server/backers/badge.svg)][open-collective-link]
19
20
  [![Sponsors on Open Collective](https://opencollective.com/parse-server/sponsors/badge.svg)][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* 🙏 to our [sponsors](#sponsors) and [backers](#backers) who support the development of Parse Platform!
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
- [![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)
35
+ ### 💎 Diamond Sponsors
36
+
37
+ [![Sponsor](https://opencollective.com/parse-server/sponsor/0/avatar.svg)](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` - 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
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 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
+ `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-alpha.6",
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"