Skip to content

Commit cf81a35

Browse files
committed
refactor: update parse
1 parent a9176d5 commit cf81a35

File tree

4 files changed

+91
-18
lines changed

4 files changed

+91
-18
lines changed

package-lock.json

+88-15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"mongodb": "6.15.0",
5050
"mustache": "4.2.0",
5151
"otpauth": "9.3.6",
52-
"parse": "6.0.0",
52+
"parse": "6.1.0",
5353
"path-to-regexp": "6.3.0",
5454
"pg-monitor": "2.1.0",
5555
"pg-promise": "11.13.0",

spec/helper.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const PostgresStorageAdapter = require('../lib/Adapters/Storage/Postgres/Postgre
4848
.default;
4949
const MongoStorageAdapter = require('../lib/Adapters/Storage/Mongo/MongoStorageAdapter').default;
5050
const RedisCacheAdapter = require('../lib/Adapters/Cache/RedisCacheAdapter').default;
51-
const RESTController = require('parse/lib/node/RESTController');
51+
const RESTController = require('parse/lib/node/RESTController').default;
5252
const { VolatileClassesSchemas } = require('../lib/Controllers/SchemaController');
5353

5454
const mongoURI = 'mongodb://localhost:27017/parseServerMongoAdapterTestDatabase';

src/ParseServerRESTController.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const Config = require('./Config');
22
const Auth = require('./Auth');
3-
const RESTController = require('parse/lib/node/RESTController');
3+
import RESTController from 'parse/lib/node/RESTController';
44
const Parse = require('parse/node');
55

66
function getSessionToken(options) {

0 commit comments

Comments
 (0)