Skip to content

Commit 1c2adbc

Browse files
committed
Merge branch 'upstream/alpha' into moumouls/update-graphql
2 parents df2d27e + 2b1dc5c commit 1c2adbc

File tree

5 files changed

+31
-24
lines changed

5 files changed

+31
-24
lines changed

DEPRECATIONS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The following is a list of deprecations, according to the [Deprecation Policy](h
88
| DEPPS2 | Config option `directAccess` defaults to `true` | [#6636](https://github.com/parse-community/parse-server/pull/6636) | 5.0.0 (2022) | 6.0.0 (2023) | deprecated | - |
99
| DEPPS3 | Config option `enforcePrivateUsers` defaults to `true` | [#7319](https://github.com/parse-community/parse-server/pull/7319) | 5.0.0 (2022) | 6.0.0 (2023) | deprecated | - |
1010
| DEPPS4 | Remove convenience method for http request `Parse.Cloud.httpRequest` | [#7589](https://github.com/parse-community/parse-server/pull/7589) | 5.0.0 (2022) | 6.0.0 (2023) | deprecated | - |
11-
| DEPPS5 | Config option `allowClientClassCreation` defaults to `false` | [#7925](https://github.com/parse-community/parse-server/pull/7925) | 5.3.0 (2023) | 7.0.0 (2024) | deprecated | - |
11+
| DEPPS5 | Config option `allowClientClassCreation` defaults to `false` | [#7925](https://github.com/parse-community/parse-server/pull/7925) | 5.3.0 (2022) | 7.0.0 (2024) | deprecated | - |
1212

1313
[i_deprecation]: ## "The version and date of the deprecation."
1414
[i_removal]: ## "The version and date of the planned removal."

changelogs/CHANGELOG_alpha.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# [5.3.0-alpha.10](https://github.com/parse-community/parse-server/compare/5.3.0-alpha.9...5.3.0-alpha.10) (2022-05-09)
2+
3+
4+
### Features
5+
6+
* upgrade mongodb from 4.4.1 to 4.5.0 ([#7991](https://github.com/parse-community/parse-server/issues/7991)) ([e692b5d](https://github.com/parse-community/parse-server/commit/e692b5dd8214cdb0ce79bedd30d9aa3cf4de76a5))
7+
18
# [5.3.0-alpha.9](https://github.com/parse-community/parse-server/compare/5.3.0-alpha.8...5.3.0-alpha.9) (2022-05-07)
29

310

package-lock.json

Lines changed: 17 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "parse-server",
3-
"version": "5.3.0-alpha.9",
3+
"version": "5.3.0-alpha.10",
44
"description": "An express module providing a Parse-compatible API server",
55
"main": "lib/index.js",
66
"repository": {
@@ -38,11 +38,11 @@
3838
"intersect": "1.0.1",
3939
"jsonwebtoken": "8.5.1",
4040
"jwks-rsa": "2.0.5",
41-
"ldapjs": "2.3.1",
41+
"ldapjs": "2.3.2",
4242
"lodash": "4.17.21",
4343
"lru-cache": "6.0.0",
4444
"mime": "3.0.0",
45-
"mongodb": "4.4.1",
45+
"mongodb": "4.5.0",
4646
"mustache": "4.2.0",
4747
"parse": "3.4.1",
4848
"pg-monitor": "1.4.1",
@@ -55,7 +55,7 @@
5555
"uuid": "8.3.2",
5656
"winston": "3.7.2",
5757
"winston-daily-rotate-file": "4.6.0",
58-
"ws": "8.2.3"
58+
"ws": "8.5.0"
5959
},
6060
"devDependencies": {
6161
"@actions/core": "1.2.6",

spec/helper.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ global.it_only_postgres_version = version => {
462462
};
463463

464464
global.it_only_node_version = version => {
465-
const envVersion = process.env.NODE_VERSION;
465+
const envVersion = process.version;
466466
if (!envVersion || semver.satisfies(envVersion, version)) {
467467
return it;
468468
} else {
@@ -480,7 +480,7 @@ global.fit_only_mongodb_version = version => {
480480
};
481481

482482
global.fit_only_node_version = version => {
483-
const envVersion = process.env.NODE_VERSION;
483+
const envVersion = process.version;
484484
if (!envVersion || semver.satisfies(envVersion, version)) {
485485
return fit;
486486
} else {

0 commit comments

Comments
 (0)