parse-server 5.0.0-alpha.11 → 5.0.0-alpha.15
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 +4 -4
- package/lib/Adapters/Storage/Mongo/MongoTransform.js +4 -135
- package/lib/Adapters/Storage/Postgres/PostgresStorageAdapter.js +26 -3
- package/lib/Controllers/DatabaseController.js +2 -2
- package/lib/Controllers/index.js +2 -1
- package/lib/Utils.js +140 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -134,10 +134,10 @@ Parse Server is continuously tested with the most recent releases of PostgreSQL
|
|
|
134
134
|
|
|
135
135
|
| Version | PostGIS Version | End-of-Life | Parse Server Support End | Compatible |
|
|
136
136
|
|-------------|-----------------|---------------|--------------------------|------------|
|
|
137
|
-
| Postgres 11 | 3.0, 3.1
|
|
138
|
-
| Postgres 12 | 3.
|
|
139
|
-
| Postgres 13 | 3.
|
|
140
|
-
| Postgres 14 | 3.
|
|
137
|
+
| Postgres 11 | 3.0, 3.1, 3.2 | November 2023 | April 2022 | ✅ Yes |
|
|
138
|
+
| Postgres 12 | 3.2 | November 2024 | April 2023 | ✅ Yes |
|
|
139
|
+
| Postgres 13 | 3.2 | November 2025 | April 2024 | ✅ Yes |
|
|
140
|
+
| Postgres 14 | 3.2 | November 2026 | April 2025 | ✅ Yes |
|
|
141
141
|
|
|
142
142
|
### Locally
|
|
143
143
|
```bash
|