Skip to content

Commit 3c7c5e1

Browse files
authored
build: Release (#9863)
2 parents 43cb65f + fe4ba57 commit 3c7c5e1

File tree

5 files changed

+87
-88
lines changed

5 files changed

+87
-88
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,8 +210,7 @@ jobs:
210210
${{ runner.os }}-node-${{ matrix.NODE_VERSION }}-
211211
- name: Install dependencies
212212
run: npm ci
213-
- run: npm run pretest
214-
- run: npm run coverage
213+
- run: npm run coverage:mongodb
215214
env:
216215
CI: true
217216
- name: Upload code coverage

changelogs/CHANGELOG_alpha.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [8.2.5-alpha.1](https://github.com/parse-community/parse-server/compare/8.2.4...8.2.5-alpha.1) (2025-09-21)
2+
3+
4+
### Bug Fixes
5+
6+
* GraphQL playground shows blank page ([#9858](https://github.com/parse-community/parse-server/issues/9858)) ([7b5395c](https://github.com/parse-community/parse-server/commit/7b5395c5d481235c022d96603280672366a50715))
7+
18
## [8.2.4-alpha.1](https://github.com/parse-community/parse-server/compare/8.2.3...8.2.4-alpha.1) (2025-08-02)
29

310

package-lock.json

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

package.json

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "parse-server",
3-
"version": "8.2.4",
3+
"version": "8.2.5-alpha.1",
44
"description": "An express module providing a Parse-compatible API server",
55
"main": "lib/index.js",
66
"repository": {
@@ -103,7 +103,7 @@
103103
"madge": "8.0.0",
104104
"mock-files-adapter": "file:spec/dependencies/mock-files-adapter",
105105
"mock-mail-adapter": "file:spec/dependencies/mock-mail-adapter",
106-
"mongodb-runner": "5.8.3",
106+
"mongodb-runner": "5.9.3",
107107
"node-abort-controller": "3.1.1",
108108
"node-fetch": "3.2.10",
109109
"nyc": "17.1.0",
@@ -125,18 +125,14 @@
125125
"build:types": "tsc",
126126
"watch": "babel --watch src/ -d lib/ --copy-files",
127127
"watch:ts": "tsc --watch",
128-
"test:mongodb:runnerstart": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=$npm_config_dbversion} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} mongodb-runner start -t ${MONGODB_TOPOLOGY} --version ${MONGODB_VERSION} -- --port 27017",
129-
"test:mongodb:testonly": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=$npm_config_dbversion} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} TESTING=1 jasmine",
130-
"test:mongodb": "npm run test:mongodb:runnerstart --dbversion=$npm_config_dbversion && npm run test:mongodb:testonly --dbversion=$npm_config_dbversion",
131-
"test:mongodb:6.0.19": "npm run test:mongodb --dbversion=6.0.19",
132-
"test:mongodb:7.0.16": "npm run test:mongodb --dbversion=7.0.16",
133-
"test:mongodb:8.0.4": "npm run test:mongodb --dbversion=8.0.4",
128+
"test:mongodb:6.0.19": "MONGODB_VERSION=6.0.19 npm run test",
129+
"test:mongodb:7.0.16": "MONGODB_VERSION=7.0.16 npm run test",
130+
"test:mongodb:8.0.4": "MONGODB_VERSION=8.0.4 npm run test",
134131
"test:postgres:testonly": "cross-env PARSE_SERVER_TEST_DB=postgres PARSE_SERVER_TEST_DATABASE_URI=postgres://postgres:password@localhost:5432/parse_server_postgres_adapter_test_database npm run testonly",
135-
"pretest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=8.0.4} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} mongodb-runner start -t ${MONGODB_TOPOLOGY} --version ${MONGODB_VERSION} -- --port 27017",
136132
"testonly": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=8.0.4} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} TESTING=1 jasmine",
137-
"test": "npm run testonly",
133+
"test": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=8.0.4} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} mongodb-runner exec -t ${MONGODB_TOPOLOGY} --version ${MONGODB_VERSION} -- --port 27017 -- npm run testonly",
138134
"test:types": "eslint types/tests.ts -c ./types/eslint.config.mjs",
139-
"posttest": "cross-env mongodb-runner stop --all",
135+
"coverage:mongodb": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=8.0.4} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} mongodb-runner exec -t ${MONGODB_TOPOLOGY} --version ${MONGODB_VERSION} -- --port 27017 -- npm run coverage",
140136
"coverage": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=8.0.4} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} TESTING=1 nyc jasmine",
141137
"start": "node ./bin/parse-server",
142138
"prettier": "prettier --write {src,spec}/{**/*,*}.js",

src/GraphQL/ParseGraphQLServer.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -167,14 +167,14 @@ class ParseGraphQLServer {
167167
new window.EmbeddedSandbox({
168168
target: "#sandbox",
169169
endpointIsEditable: false,
170-
initialEndpoint: "${JSON.stringify(this.config.graphQLPath)}",
170+
initialEndpoint: ${JSON.stringify(this.config.graphQLPath)},
171171
handleRequest: (endpointUrl, options) => {
172172
return fetch(endpointUrl, {
173173
...options,
174174
headers: {
175175
...options.headers,
176-
'X-Parse-Application-Id': "${JSON.stringify(this.parseServer.config.appId)}",
177-
'X-Parse-Master-Key': "${JSON.stringify(this.parseServer.config.masterKey)}",
176+
'X-Parse-Application-Id': ${JSON.stringify(this.parseServer.config.appId)},
177+
'X-Parse-Master-Key': ${JSON.stringify(this.parseServer.config.masterKey)},
178178
},
179179
})
180180
},

0 commit comments

Comments
 (0)