Skip to content

Commit

Permalink
feat: Upgrade to parse-server 7.2.0 (#470)
Browse files Browse the repository at this point in the history
dependabot[bot] authored Jul 12, 2024
1 parent bb6218d commit 49ac7b5
Showing 4 changed files with 4,275 additions and 1,703 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -12,20 +12,18 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14, 16, 18]
node-version: [18, 20, 22]
fail-fast: false
name: Test Node ${{ matrix.node-version }}
steps:
- name: Fix usage of insecure GitHub protocol
run: sudo git config --system url."https://github".insteadOf "git://github"
- name: Fix git protocol for Node 14
if: ${{ startsWith(matrix.node-version, '14') }}
run: sudo git config --system url."https://github".insteadOf "ssh://git@github"
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install Dependancies
run: npm install
- name: Check Linting
5,969 changes: 4,271 additions & 1,698 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -21,7 +21,7 @@
"axios": "1.7.2",
"express": "4.19.2",
"parse": "5.3.0",
"parse-server": "6.5.0"
"parse-server": "7.2.0"
},
"type": "module",
"devDependencies": {
1 change: 1 addition & 0 deletions spec/utils/test-runner.js
Original file line number Diff line number Diff line change
@@ -25,6 +25,7 @@ export async function startParseServer() {
serverURL: `http://localhost:30001/test`,
logLevel: 'error',
silent: true,
allowClientClassCreation: true,
});
const parseServer = new ParseServer(parseServerOptions);
await parseServer.start();

0 comments on commit 49ac7b5

Please sign in to comment.