Skip to content

Commit c5825c7

Browse files
Merge branch 'release'
* release: (124 commits) chore(release): 7.3.0 [skip ci] empty commit to trigger CI refactor: Bump prettier from 3.5.3 to 3.6.2 (parse-community#2955) chore(release): 7.3.0-alpha.44 [skip ci] feat: Add environment variable support for AI agent configuration (parse-community#2956) chore(release): 7.3.0-alpha.43 [skip ci] fix: Header checkbox in data browser does not indicate when a few rows are selected (parse-community#2957) refactor: Bump jest-environment-jsdom from 30.0.4 to 30.0.5 (parse-community#2941) chore(release): 7.3.0-alpha.42 [skip ci] feat: Add AI agent for natural language interaction with Parse Server (parse-community#2954) chore(release): 7.3.0-alpha.41 [skip ci] feat: Add support for `Image` type in View table to display images (parse-community#2952) chore(release): 7.3.0-alpha.40 [skip ci] fix: Selected text in info panel cannot be copied using Ctrl+C (parse-community#2951) chore(release): 7.3.0-alpha.39 [skip ci] fix: Class object counters in sidebar not updating (parse-community#2950) chore(release): 7.3.0-alpha.38 [skip ci] feat: Allow editing filter without loading data in data browser (parse-community#2949) chore(release): 7.3.0-alpha.37 [skip ci] fix: Saved legacy filter with classname in query cannot be deleted (parse-community#2948) ...
2 parents 6918e9a + 399f4fc commit c5825c7

File tree

73 files changed

+9882
-2114
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+9882
-2114
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,10 @@ jobs:
1919
with:
2020
node-version: ${{ env.NODE_VERSION }}
2121
cache: npm
22-
- name: Install dependencies
22+
- name: Install prod dependencies
2323
run: npm ci --ignore-scripts
24+
- name: Remove dev dependencies
25+
run: ./ci/uninstallDevDeps.sh @actions/core
2426
- name: CI Node Engine Check
2527
run: npm run ci:checkNodeEngine
2628
check-lint:

Parse-Dashboard/CLI/mfa.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
const crypto = require('crypto');
2-
const inquirer = require('inquirer');
2+
let inquirer = require('inquirer');
3+
if (inquirer.default) {
4+
inquirer = inquirer.default;
5+
}
36
const OTPAuth = require('otpauth');
47
const { copy } = require('./utils.js');
58
const phrases = {

0 commit comments

Comments
 (0)