Skip to content

Commit 3b2508e

Browse files
committed
Merge branch 'moumouls/fix-after-save-parse-role' of github.com:Moumouls/parse-server into moumouls/fix-after-save-parse-role
2 parents 0ad0cac + aaed7a8 commit 3b2508e

File tree

5 files changed

+14
-9
lines changed

5 files changed

+14
-9
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,3 +61,6 @@ lib/
6161

6262
# Redis Dump
6363
dump.rdb
64+
65+
# AI agents
66+
.claude

changelogs/CHANGELOG_alpha.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# [8.3.0-alpha.9](https://github.com/parse-community/parse-server/compare/8.3.0-alpha.8...8.3.0-alpha.9) (2025-10-19)
2+
3+
4+
### Bug Fixes
5+
6+
* Server URL verification before server is ready ([#9882](https://github.com/parse-community/parse-server/issues/9882)) ([178bd5c](https://github.com/parse-community/parse-server/commit/178bd5c5e258d9501c9ac4d35a3a105ab64be67e))
7+
18
# [8.3.0-alpha.8](https://github.com/parse-community/parse-server/compare/8.3.0-alpha.7...8.3.0-alpha.8) (2025-10-16)
29

310

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "parse-server",
3-
"version": "8.3.0-alpha.8",
3+
"version": "8.3.0-alpha.9",
44
"description": "An express module providing a Parse-compatible API server",
55
"main": "lib/index.js",
66
"repository": {

src/ParseServer.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -365,12 +365,6 @@ class ParseServer {
365365
process.exit(1);
366366
}
367367
});
368-
// verify the server url after a 'mount' event is received
369-
/* istanbul ignore next */
370-
api.on('mount', async function () {
371-
await new Promise(resolve => setTimeout(resolve, 1000));
372-
ParseServer.verifyServerUrl();
373-
});
374368
}
375369
if (process.env.PARSE_SERVER_ENABLE_EXPERIMENTAL_DIRECT_ACCESS === '1' || directAccess) {
376370
Parse.CoreManager.setRESTController(ParseServerRESTController(appId, appRouter));
@@ -487,6 +481,7 @@ class ParseServer {
487481
/* istanbul ignore next */
488482
if (!process.env.TESTING) {
489483
configureListeners(this);
484+
await ParseServer.verifyServerUrl();
490485
}
491486
this.expressApp = app;
492487
return this;

0 commit comments

Comments
 (0)