Skip to content

Commit 3b8b3cb

Browse files
authored
build: Release (#9821)
2 parents f11255d + e514070 commit 3b8b3cb

19 files changed

+260
-74
lines changed

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.2-alpha.1](https://github.com/parse-community/parse-server/compare/8.2.1...8.2.2-alpha.1) (2025-07-10)
2+
3+
4+
### Bug Fixes
5+
6+
* Data schema exposed via GraphQL API public introspection (GHSA-48q3-prgv-gm4w) ([#9819](https://github.com/parse-community/parse-server/issues/9819)) ([c58b2eb](https://github.com/parse-community/parse-server/commit/c58b2eb6eb48af9d3c2e69b4829810a021347b40))
7+
18
## [8.2.1-alpha.2](https://github.com/parse-community/parse-server/compare/8.2.1-alpha.1...8.2.1-alpha.2) (2025-05-14)
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.2.1",
3+
"version": "8.2.2-alpha.1",
44
"description": "An express module providing a Parse-compatible API server",
55
"main": "lib/index.js",
66
"repository": {

spec/Adapters/Auth/gcenter.spec.js

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -12,28 +12,28 @@ describe('GameCenterAuth Adapter', function () {
1212
const gcProd4 = fs.readFileSync(path.resolve(__dirname, '../../support/cert/gc-prod-4.cer'));
1313
const digicertPem = fs.readFileSync(path.resolve(__dirname, '../../support/cert/DigiCertTrustedG4CodeSigningRSA4096SHA3842021CA1.crt.pem')).toString();
1414

15-
mockFetch([
16-
{
17-
url: 'https://static.gc.apple.com/public-key/gc-prod-4.cer',
18-
method: 'GET',
19-
response: {
20-
ok: true,
21-
headers: new Map(),
22-
arrayBuffer: () => Promise.resolve(
23-
gcProd4.buffer.slice(gcProd4.byteOffset, gcProd4.byteOffset + gcProd4.length)
24-
),
15+
mockFetch([
16+
{
17+
url: 'https://static.gc.apple.com/public-key/gc-prod-4.cer',
18+
method: 'GET',
19+
response: {
20+
ok: true,
21+
headers: new Map(),
22+
arrayBuffer: () => Promise.resolve(
23+
gcProd4.buffer.slice(gcProd4.byteOffset, gcProd4.byteOffset + gcProd4.length)
24+
),
25+
},
2526
},
26-
},
27-
{
28-
url: 'https://cacerts.digicert.com/DigiCertTrustedG4CodeSigningRSA4096SHA3842021CA1.crt.pem',
29-
method: 'GET',
30-
response: {
31-
ok: true,
32-
headers: new Map([['content-type', 'application/x-pem-file'], ['content-length', digicertPem.length.toString()]]),
33-
text: () => Promise.resolve(digicertPem),
34-
},
35-
}
36-
]);
27+
{
28+
url: 'https://cacerts.digicert.com/DigiCertTrustedG4CodeSigningRSA4096SHA3842021CA1.crt.pem',
29+
method: 'GET',
30+
response: {
31+
ok: true,
32+
headers: new Map([['content-type', 'application/x-pem-file'], ['content-length', digicertPem.length.toString()]]),
33+
text: () => Promise.resolve(digicertPem),
34+
},
35+
}
36+
]);
3737
});
3838

3939
describe('Test config failing due to missing params or wrong types', function () {

spec/CloudCode.spec.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3502,9 +3502,9 @@ describe('afterLogin hook', () => {
35023502
'X-Parse-REST-API-Key': 'rest',
35033503
'X-Parse-Cloud-Context': '{"a":"a"}',
35043504
},
3505-
body: JSON.stringify({_context: { hello: 'world' }}),
3505+
body: JSON.stringify({ _context: { hello: 'world' } }),
35063506
});
3507-
3507+
35083508
});
35093509

35103510
it('should have access to context when saving a new object', async () => {
@@ -3929,7 +3929,7 @@ describe('saveFile hooks', () => {
39293929
});
39303930
});
39313931

3932-
describe('Parse.File hooks', () => {
3932+
describe('Parse.File hooks', () => {
39333933
it('find hooks should run', async () => {
39343934
const file = new Parse.File('popeye.txt', [1, 2, 3], 'text/plain');
39353935
await file.save({ useMasterKey: true });
@@ -4047,7 +4047,7 @@ describe('Parse.File hooks', () => {
40474047
});
40484048
expect(response.headers['content-disposition']).toBe(`attachment;filename=${file._name}`);
40494049
});
4050-
});
4050+
});
40514051

40524052
describe('Cloud Config hooks', () => {
40534053
function testConfig() {

spec/EmailVerificationToken.spec.js

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -647,7 +647,6 @@ describe('Email Verification Token Expiration:', () => {
647647

648648
it_id('b6c87f35-d887-477d-bc86-a9217a424f53')(it)('setting the email on the user should set a new email verification token and new expiration date for the token when expire email verify token flag is set', async () => {
649649
const user = new Parse.User();
650-
let userBeforeEmailReset;
651650

652651
let sendEmailOptions;
653652
const sendPromise = resolvingPromise();
@@ -680,7 +679,7 @@ describe('Email Verification Token Expiration:', () => {
680679
return results[0];
681680
});
682681
expect(typeof userFromDb).toBe('object');
683-
userBeforeEmailReset = userFromDb;
682+
const userBeforeEmailReset = userFromDb;
684683

685684
// trigger another token generation by setting the email
686685
user.set('email', '[email protected]');
@@ -713,7 +712,6 @@ describe('Email Verification Token Expiration:', () => {
713712
const user = new Parse.User();
714713
let sendEmailOptions;
715714
let sendVerificationEmailCallCount = 0;
716-
let userBeforeRequest;
717715
const promise1 = resolvingPromise();
718716
const promise2 = resolvingPromise();
719717
const emailAdapter = {
@@ -748,7 +746,7 @@ describe('Email Verification Token Expiration:', () => {
748746
return results[0];
749747
});
750748
// store this user before we make our email request
751-
userBeforeRequest = newUser;
749+
const userBeforeRequest = newUser;
752750

753751
expect(sendVerificationEmailCallCount).toBe(1);
754752

@@ -1011,7 +1009,7 @@ describe('Email Verification Token Expiration:', () => {
10111009
})
10121010
.then(fail)
10131011
.catch(response => response);
1014-
1012+
10151013
expect(response.status).toBe(400);
10161014
expect(sendVerificationEmailCallCount).toBe(0);
10171015
expect(sendEmailOptions).not.toBeDefined();

0 commit comments

Comments
 (0)