parse-server 5.3.0-alpha.29 → 5.3.0-alpha.30

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 +2 -2
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -8,7 +8,7 @@
8
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
9
 
10
10
  [![Node Version](https://img.shields.io/badge/nodejs-12,_14,_16,_17,_18-green.svg?logo=node.js&style=flat)](https://nodejs.org)
11
- [![MongoDB Version](https://img.shields.io/badge/mongodb-4.0,_4.2,_4.4,_5.0,_5.1,_5.2-green.svg?logo=mongodb&style=flat)](https://www.mongodb.com)
11
+ [![MongoDB Version](https://img.shields.io/badge/mongodb-4.0,_4.2,_4.4,_5.0,_5.1,_5.2,_6-green.svg?logo=mongodb&style=flat)](https://www.mongodb.com)
12
12
  [![Postgres Version](https://img.shields.io/badge/postgresql-11,_12,_13,_14,_15-green.svg?logo=postgresql&style=flat)](https://www.postgresql.org)
13
13
 
14
14
  [![npm latest version](https://img.shields.io/npm/v/parse-server/latest.svg)](https://www.npmjs.com/package/parse-server)
@@ -142,7 +142,7 @@ Parse Server is continuously tested with the most recent releases of MongoDB to
142
142
  | MongoDB 4.2 | 4.2.19 | April 2023 | ✅ Yes |
143
143
  | MongoDB 4.4 | 4.4.13 | February 2024 | ✅ Yes |
144
144
  | MongoDB 5.3 | 5.3.2 | October 2024 | ✅ Yes |
145
- | MongoDB 6.0 | - | July 2025 | Not tested |
145
+ | MongoDB 6 | 6.0.2 | July 2025 | Yes |
146
146
 
147
147
  #### PostgreSQL
148
148
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "parse-server",
3
- "version": "5.3.0-alpha.29",
3
+ "version": "5.3.0-alpha.30",
4
4
  "description": "An express module providing a Parse-compatible API server",
5
5
  "main": "lib/index.js",
6
6
  "repository": {
@@ -119,6 +119,7 @@
119
119
  "test:mongodb:4.2.19": "npm run test:mongodb --dbversion=4.2.19",
120
120
  "test:mongodb:4.4.13": "npm run test:mongodb --dbversion=4.4.13",
121
121
  "test:mongodb:5.3.2": "npm run test:mongodb --dbversion=5.3.2",
122
+ "test:mongodb:6.0.2": "npm run test:mongodb --dbversion=6.0.2",
122
123
  "posttest:mongodb": "mongodb-runner stop",
123
124
  "pretest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=5.3.2} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} mongodb-runner start",
124
125
  "testonly": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=5.3.2} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} TESTING=1 jasmine",