Skip to content

Commit 98c0635

Browse files
committed
Merge branch 'alpha' into feature/chart-visualization
2 parents 179f6f5 + 4717ae6 commit 98c0635

Some content is hidden

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

56 files changed

+17576
-7739
lines changed

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 = {

Parse-Dashboard/app.js

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,22 @@ let newFeaturesInLatestVersion = [];
1414
* Gets the new features in the latest version of Parse Dashboard.
1515
*/
1616
async function getNewFeaturesInLatestVersion() {
17-
// Get latest version
18-
const packageJson = (await import('package-json')).default;
19-
const latestPackage = await packageJson('parse-dashboard', { version: 'latest', fullMetadata: true });
20-
2117
try {
18+
// Get latest version
19+
const packageJson = (await import('package-json')).default;
20+
const latestPackage = await packageJson('parse-dashboard', { version: 'latest', fullMetadata: true });
21+
2222
if (latestPackage.parseDashboardFeatures instanceof Array) {
2323
newFeaturesInLatestVersion = latestPackage.parseDashboardFeatures.filter(feature => {
2424
return currentVersionFeatures.indexOf(feature) === -1;
2525
});
2626
}
2727
} catch {
28+
// Fail silently if fetching the latest package information fails
2829
newFeaturesInLatestVersion = [];
2930
}
3031
}
31-
getNewFeaturesInLatestVersion()
32+
getNewFeaturesInLatestVersion().catch(() => {})
3233

3334
function getMount(mountPath) {
3435
mountPath = mountPath || '';
@@ -250,6 +251,7 @@ module.exports = function(config, options) {
250251
<base href="${mountPath}"/>
251252
<script>
252253
PARSE_DASHBOARD_PATH = "${mountPath}";
254+
PARSE_DASHBOARD_ENABLE_RESOURCE_CACHE = ${config.enableResourceCache ? 'true' : 'false'};
253255
</script>
254256
<title>Parse Dashboard</title>
255257
</head>

Parse-Dashboard/public/sw.js

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
const CACHE_NAME = 'dashboard-cache-v1';
2+
3+
self.addEventListener('install', () => {
4+
self.skipWaiting();
5+
});
6+
7+
self.addEventListener('activate', event => {
8+
event.waitUntil(
9+
Promise.all([
10+
self.clients.claim(),
11+
caches.keys().then(cacheNames => {
12+
return Promise.all(
13+
cacheNames.map(cacheName => {
14+
if (cacheName !== CACHE_NAME) {
15+
return caches.delete(cacheName);
16+
}
17+
})
18+
);
19+
})
20+
])
21+
);
22+
});
23+
24+
self.addEventListener('fetch', event => {
25+
const req = event.request;
26+
if (req.destination === 'script' || req.destination === 'style' || req.url.includes('/bundles/')) {
27+
event.respondWith(
28+
caches.match(req).then(cached => {
29+
return (
30+
cached ||
31+
fetch(req).then(resp => {
32+
const resClone = resp.clone();
33+
caches.open(CACHE_NAME).then(cache => cache.put(req, resClone));
34+
return resp;
35+
})
36+
);
37+
})
38+
);
39+
}
40+
});
41+
42+
self.addEventListener('message', event => {
43+
if (event.data === 'unregister') {
44+
self.registration.unregister();
45+
}
46+
});

README.md

Lines changed: 1395 additions & 1196 deletions
Large diffs are not rendered by default.

changelogs/CHANGELOG_alpha.md

Lines changed: 266 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,269 @@
1+
# [7.3.0-alpha.41](https://github.com/parse-community/parse-dashboard/compare/7.3.0-alpha.40...7.3.0-alpha.41) (2025-07-28)
2+
3+
4+
### Features
5+
6+
* Add support for `Image` type in View table to display images ([#2952](https://github.com/parse-community/parse-dashboard/issues/2952)) ([6a6b1f0](https://github.com/parse-community/parse-dashboard/commit/6a6b1f02d546a3271493d4088bf356543b2c0394))
7+
8+
# [7.3.0-alpha.40](https://github.com/parse-community/parse-dashboard/compare/7.3.0-alpha.39...7.3.0-alpha.40) (2025-07-27)
9+
10+
11+
### Bug Fixes
12+
13+
* Selected text in info panel cannot be copied using Ctrl+C ([#2951](https://github.com/parse-community/parse-dashboard/issues/2951)) ([0164c19](https://github.com/parse-community/parse-dashboard/commit/0164c1939cbb4ada991dc488ef2cd156913353d0))
14+
15+
# [7.3.0-alpha.39](https://github.com/parse-community/parse-dashboard/compare/7.3.0-alpha.38...7.3.0-alpha.39) (2025-07-27)
16+
17+
18+
### Bug Fixes
19+
20+
* Class object counters in sidebar not updating ([#2950](https://github.com/parse-community/parse-dashboard/issues/2950)) ([0f1920b](https://github.com/parse-community/parse-dashboard/commit/0f1920b448787e57482c821b881c732f57fec614))
21+
22+
# [7.3.0-alpha.38](https://github.com/parse-community/parse-dashboard/compare/7.3.0-alpha.37...7.3.0-alpha.38) (2025-07-27)
23+
24+
25+
### Features
26+
27+
* Allow editing filter without loading data in data browser ([#2949](https://github.com/parse-community/parse-dashboard/issues/2949)) ([9623580](https://github.com/parse-community/parse-dashboard/commit/962358020c513d38a1bc175545f73aebc92d403a))
28+
29+
# [7.3.0-alpha.37](https://github.com/parse-community/parse-dashboard/compare/7.3.0-alpha.36...7.3.0-alpha.37) (2025-07-27)
30+
31+
32+
### Bug Fixes
33+
34+
* Saved legacy filter with classname in query cannot be deleted ([#2948](https://github.com/parse-community/parse-dashboard/issues/2948)) ([05ee5b3](https://github.com/parse-community/parse-dashboard/commit/05ee5b39e91737343ae4395cb63736802bd5c6cb))
35+
36+
# [7.3.0-alpha.36](https://github.com/parse-community/parse-dashboard/compare/7.3.0-alpha.35...7.3.0-alpha.36) (2025-07-27)
37+
38+
39+
### Bug Fixes
40+
41+
* Changing "Relative dates" option of saved filter does not enable save button ([#2947](https://github.com/parse-community/parse-dashboard/issues/2947)) ([4f4977d](https://github.com/parse-community/parse-dashboard/commit/4f4977dbb16fbf755584355d90b85d9efc9169fd))
42+
43+
# [7.3.0-alpha.35](https://github.com/parse-community/parse-dashboard/compare/7.3.0-alpha.34...7.3.0-alpha.35) (2025-07-27)
44+
45+
46+
### Bug Fixes
47+
48+
* Legacy filters without `filterId` cannot be deleted in data browser ([#2946](https://github.com/parse-community/parse-dashboard/issues/2946)) ([65df9d6](https://github.com/parse-community/parse-dashboard/commit/65df9d60c080d100fac45c7a81cae83104f150ea))
49+
50+
# [7.3.0-alpha.34](https://github.com/parse-community/parse-dashboard/compare/7.3.0-alpha.33...7.3.0-alpha.34) (2025-07-26)
51+
52+
53+
### Bug Fixes
54+
55+
* Legacy filters without `filterId` do not appear in sidebar ([#2945](https://github.com/parse-community/parse-dashboard/issues/2945)) ([fde3769](https://github.com/parse-community/parse-dashboard/commit/fde376923dc5a7ada689b5a35c54065c90870070))
56+
57+
# [7.3.0-alpha.33](https://github.com/parse-community/parse-dashboard/compare/7.3.0-alpha.32...7.3.0-alpha.33) (2025-07-26)
58+
59+
60+
### Bug Fixes
61+
62+
* Saved legacy filter in data browser cannot be deleted or cloned ([#2944](https://github.com/parse-community/parse-dashboard/issues/2944)) ([15da90d](https://github.com/parse-community/parse-dashboard/commit/15da90d05bf8cde6cc383a3f9bd060d48214ccc6))
63+
64+
# [7.3.0-alpha.32](https://github.com/parse-community/parse-dashboard/compare/7.3.0-alpha.31...7.3.0-alpha.32) (2025-07-26)
65+
66+
67+
### Bug Fixes
68+
69+
* Views not sorted alphabetically in sidebar ([#2943](https://github.com/parse-community/parse-dashboard/issues/2943)) ([4c81fe4](https://github.com/parse-community/parse-dashboard/commit/4c81fe423a9d437d0563285c9f67b13f8c7582ec))
70+
71+
# [7.3.0-alpha.31](https://github.com/parse-community/parse-dashboard/compare/7.3.0-alpha.30...7.3.0-alpha.31) (2025-07-26)
72+
73+
74+
### Features
75+
76+
* Allow editing saved filters in data browser ([#2942](https://github.com/parse-community/parse-dashboard/issues/2942)) ([daaccaa](https://github.com/parse-community/parse-dashboard/commit/daaccaac75a0dad2082fb32abf1eb5f0cec17af7))
77+
78+
# [7.3.0-alpha.30](https://github.com/parse-community/parse-dashboard/compare/7.3.0-alpha.29...7.3.0-alpha.30) (2025-07-24)
79+
80+
81+
### Bug Fixes
82+
83+
* Move settings button on data browser toolbar for better UI ([#2940](https://github.com/parse-community/parse-dashboard/issues/2940)) ([c473ce6](https://github.com/parse-community/parse-dashboard/commit/c473ce6153f12c1eebcb7467d185b9f7482d42a8))
84+
85+
# [7.3.0-alpha.29](https://github.com/parse-community/parse-dashboard/compare/7.3.0-alpha.28...7.3.0-alpha.29) (2025-07-24)
86+
87+
88+
### Features
89+
90+
* Add Cloud Function as data source for views with optional text or file upload ([#2939](https://github.com/parse-community/parse-dashboard/issues/2939)) ([f5831c7](https://github.com/parse-community/parse-dashboard/commit/f5831c71b16c135b6bc51dd2ff37991d2b2b57f9))
91+
92+
# [7.3.0-alpha.28](https://github.com/parse-community/parse-dashboard/compare/7.3.0-alpha.27...7.3.0-alpha.28) (2025-07-24)
93+
94+
95+
### Bug Fixes
96+
97+
* Info panel scroll-to-top setting not persistent across dashboard sessions ([#2938](https://github.com/parse-community/parse-dashboard/issues/2938)) ([2b78087](https://github.com/parse-community/parse-dashboard/commit/2b7808766516a6833236c5a0721084f3ffe026b0))
98+
99+
# [7.3.0-alpha.27](https://github.com/parse-community/parse-dashboard/compare/7.3.0-alpha.26...7.3.0-alpha.27) (2025-07-24)
100+
101+
102+
### Features
103+
104+
* Add Settings menu to scroll info panel to top when browsing through rows ([#2937](https://github.com/parse-community/parse-dashboard/issues/2937)) ([f339cb8](https://github.com/parse-community/parse-dashboard/commit/f339cb8d7a94ccda765c0d50ae00b57a53e03d7e))
105+
106+
# [7.3.0-alpha.26](https://github.com/parse-community/parse-dashboard/compare/7.3.0-alpha.25...7.3.0-alpha.26) (2025-07-20)
107+
108+
109+
### Bug Fixes
110+
111+
* Incorrect table cell width in App Settings table ([#2933](https://github.com/parse-community/parse-dashboard/issues/2933)) ([d46765b](https://github.com/parse-community/parse-dashboard/commit/d46765b16abfe3eda6d77525ae2f95a6f4be620c))
112+
113+
# [7.3.0-alpha.25](https://github.com/parse-community/parse-dashboard/compare/7.3.0-alpha.24...7.3.0-alpha.25) (2025-07-19)
114+
115+
116+
### Bug Fixes
117+
118+
* Modal text input can be resized smaller than its cell in Safari browser ([#2930](https://github.com/parse-community/parse-dashboard/issues/2930)) ([82a0cdc](https://github.com/parse-community/parse-dashboard/commit/82a0cdc397d58494c0c61a8241767d4930f742f1))
119+
120+
# [7.3.0-alpha.24](https://github.com/parse-community/parse-dashboard/compare/7.3.0-alpha.23...7.3.0-alpha.24) (2025-07-19)
121+
122+
123+
### Features
124+
125+
* Add inclusive date filters "is on or after", "is on or before" in data browser ([#2929](https://github.com/parse-community/parse-dashboard/issues/2929)) ([c8d621b](https://github.com/parse-community/parse-dashboard/commit/c8d621b6e173621a01ee081b002f0673c4d90d91))
126+
127+
# [7.3.0-alpha.23](https://github.com/parse-community/parse-dashboard/compare/7.3.0-alpha.22...7.3.0-alpha.23) (2025-07-19)
128+
129+
130+
### Bug Fixes
131+
132+
* Hyperlink in Views table ignores `urlQuery` key ([#2926](https://github.com/parse-community/parse-dashboard/issues/2926)) ([c5eedf4](https://github.com/parse-community/parse-dashboard/commit/c5eedf4c0d3db6572ba47838970d259ce1e7e11f))
133+
134+
# [7.3.0-alpha.22](https://github.com/parse-community/parse-dashboard/compare/7.3.0-alpha.21...7.3.0-alpha.22) (2025-07-19)
135+
136+
137+
### Features
138+
139+
* Add hyperlink support in Views table ([#2925](https://github.com/parse-community/parse-dashboard/issues/2925)) ([06cfc11](https://github.com/parse-community/parse-dashboard/commit/06cfc11f6e62d2da99882dbf659bd7c6428f06ce))
140+
141+
# [7.3.0-alpha.21](https://github.com/parse-community/parse-dashboard/compare/7.3.0-alpha.20...7.3.0-alpha.21) (2025-07-18)
142+
143+
144+
### Performance Improvements
145+
146+
* Add config option `enableResourceCache` to cache dashboard resources locally for faster loading in additional browser tabs ([#2920](https://github.com/parse-community/parse-dashboard/issues/2920)) ([41a4963](https://github.com/parse-community/parse-dashboard/commit/41a4963ce6068e6f14a6a6008812ac3c1821e0fb))
147+
148+
# [7.3.0-alpha.20](https://github.com/parse-community/parse-dashboard/compare/7.3.0-alpha.19...7.3.0-alpha.20) (2025-07-17)
149+
150+
151+
### Features
152+
153+
* Prefetch info panel data with config options `prefetchObjects` and `prefetchStale` ([#2915](https://github.com/parse-community/parse-dashboard/issues/2915)) ([54a8156](https://github.com/parse-community/parse-dashboard/commit/54a8156994a4c720b9f09d9f97ac4342d8039a77))
154+
155+
# [7.3.0-alpha.19](https://github.com/parse-community/parse-dashboard/compare/7.3.0-alpha.18...7.3.0-alpha.19) (2025-07-17)
156+
157+
158+
### Features
159+
160+
* Add support for "not equal to" filter for Boolean values in data browser and analytics explorer ([#2914](https://github.com/parse-community/parse-dashboard/issues/2914)) ([d55b89c](https://github.com/parse-community/parse-dashboard/commit/d55b89c34caee7490eaf78787d28bc8cdbeedbe8))
161+
162+
# [7.3.0-alpha.18](https://github.com/parse-community/parse-dashboard/compare/7.3.0-alpha.17...7.3.0-alpha.18) (2025-07-16)
163+
164+
165+
### Features
166+
167+
* Allow freeform text view resizing in modal dialogs ([#2910](https://github.com/parse-community/parse-dashboard/issues/2910)) ([1399162](https://github.com/parse-community/parse-dashboard/commit/139916211113dec14a835fea50838e495dc15077))
168+
169+
# [7.3.0-alpha.17](https://github.com/parse-community/parse-dashboard/compare/7.3.0-alpha.16...7.3.0-alpha.17) (2025-07-16)
170+
171+
172+
### Bug Fixes
173+
174+
* Race condition on info panel request shows info panel data not corresponding to selected cell ([#2909](https://github.com/parse-community/parse-dashboard/issues/2909)) ([6f45bb3](https://github.com/parse-community/parse-dashboard/commit/6f45bb348def3cf297e869bc58bb5edcd5ad2d60))
175+
176+
# [7.3.0-alpha.16](https://github.com/parse-community/parse-dashboard/compare/7.3.0-alpha.15...7.3.0-alpha.16) (2025-07-16)
177+
178+
179+
### Features
180+
181+
* Persist info panel visibility when navigating across classes in data browser ([#2908](https://github.com/parse-community/parse-dashboard/issues/2908)) ([1a3610a](https://github.com/parse-community/parse-dashboard/commit/1a3610a4632be78353db4f511781ca7757a12361))
182+
183+
# [7.3.0-alpha.15](https://github.com/parse-community/parse-dashboard/compare/7.3.0-alpha.14...7.3.0-alpha.15) (2025-07-15)
184+
185+
186+
### Features
187+
188+
* Add additional values in info panel key-value element ([#2904](https://github.com/parse-community/parse-dashboard/issues/2904)) ([a8f110e](https://github.com/parse-community/parse-dashboard/commit/a8f110e1349e8b51927be0386f8dd1a4a031fd6b))
189+
190+
# [7.3.0-alpha.14](https://github.com/parse-community/parse-dashboard/compare/7.3.0-alpha.13...7.3.0-alpha.14) (2025-07-14)
191+
192+
193+
### Bug Fixes
194+
195+
* Clicking linked pointer with Cmd key in view table doesn't open page in new browser tab ([#2902](https://github.com/parse-community/parse-dashboard/issues/2902)) ([101b194](https://github.com/parse-community/parse-dashboard/commit/101b1943b01367402b2bbab61cabf2c267540c3e))
196+
197+
# [7.3.0-alpha.13](https://github.com/parse-community/parse-dashboard/compare/7.3.0-alpha.12...7.3.0-alpha.13) (2025-07-14)
198+
199+
200+
### Features
201+
202+
* Add view edit icon to views list in sidebar ([#2901](https://github.com/parse-community/parse-dashboard/issues/2901)) ([96e33b9](https://github.com/parse-community/parse-dashboard/commit/96e33b9f59fb590b0a4041d0b87cf8820c5551ff))
203+
204+
# [7.3.0-alpha.12](https://github.com/parse-community/parse-dashboard/compare/7.3.0-alpha.11...7.3.0-alpha.12) (2025-07-13)
205+
206+
207+
### Bug Fixes
208+
209+
* Warning dialog is shown after executing script on selected rows ([#2899](https://github.com/parse-community/parse-dashboard/issues/2899)) ([027f1ed](https://github.com/parse-community/parse-dashboard/commit/027f1edacaa74b67e9e28bbb039465b075fcf6b4))
210+
211+
# [7.3.0-alpha.11](https://github.com/parse-community/parse-dashboard/compare/7.3.0-alpha.10...7.3.0-alpha.11) (2025-07-13)
212+
213+
214+
### Features
215+
216+
* Add custom data views with aggregation query ([#2888](https://github.com/parse-community/parse-dashboard/issues/2888)) ([b1679db](https://github.com/parse-community/parse-dashboard/commit/b1679db1210a52c8c5299eb4b66e33f96963311e))
217+
218+
# [7.3.0-alpha.10](https://github.com/parse-community/parse-dashboard/compare/7.3.0-alpha.9...7.3.0-alpha.10) (2025-07-10)
219+
220+
221+
### Features
222+
223+
* Warn when leaving data browser page with selected rows ([#2887](https://github.com/parse-community/parse-dashboard/issues/2887)) ([206ead1](https://github.com/parse-community/parse-dashboard/commit/206ead15fec0a505a3efcf9c50b78fa4d0561234))
224+
225+
# [7.3.0-alpha.9](https://github.com/parse-community/parse-dashboard/compare/7.3.0-alpha.8...7.3.0-alpha.9) (2025-07-09)
226+
227+
228+
### Bug Fixes
229+
230+
* Fails to generate MFA code with CLI command `parse-dashboard --createMFA` ([#2883](https://github.com/parse-community/parse-dashboard/issues/2883)) ([544df1f](https://github.com/parse-community/parse-dashboard/commit/544df1ff606d45693596bc20179d129d6a9c91f1))
231+
232+
# [7.3.0-alpha.8](https://github.com/parse-community/parse-dashboard/compare/7.3.0-alpha.7...7.3.0-alpha.8) (2025-07-09)
233+
234+
235+
### Bug Fixes
236+
237+
* Invalid clipboard content for multi-cell copy in data browser ([#2882](https://github.com/parse-community/parse-dashboard/issues/2882)) ([22a2065](https://github.com/parse-community/parse-dashboard/commit/22a206501e4ca77dc0bb2a845b9cdf2bd3653b81))
238+
239+
# [7.3.0-alpha.7](https://github.com/parse-community/parse-dashboard/compare/7.3.0-alpha.6...7.3.0-alpha.7) (2025-07-09)
240+
241+
242+
### Bug Fixes
243+
244+
* Pagination footer bar hides rows in data browser ([#2879](https://github.com/parse-community/parse-dashboard/issues/2879)) ([6bc2da8](https://github.com/parse-community/parse-dashboard/commit/6bc2da848f970ae50cc5de0a9b1d16a04e2c88ae))
245+
246+
# [7.3.0-alpha.6](https://github.com/parse-community/parse-dashboard/compare/7.3.0-alpha.5...7.3.0-alpha.6) (2025-07-09)
247+
248+
249+
### Features
250+
251+
* Add row number column to data browser ([#2878](https://github.com/parse-community/parse-dashboard/issues/2878)) ([c0aa407](https://github.com/parse-community/parse-dashboard/commit/c0aa4072bd3dee4dcddaa3527de97479354683e5))
252+
253+
# [7.3.0-alpha.5](https://github.com/parse-community/parse-dashboard/compare/7.3.0-alpha.4...7.3.0-alpha.5) (2025-07-09)
254+
255+
256+
### Bug Fixes
257+
258+
* Gracefully fail when trying to get new features in latest version of dashboard ([#2880](https://github.com/parse-community/parse-dashboard/issues/2880)) ([1969a0e](https://github.com/parse-community/parse-dashboard/commit/1969a0e826832179bcd8d5e5ea56e8d63ad84dd4))
259+
260+
# [7.3.0-alpha.4](https://github.com/parse-community/parse-dashboard/compare/7.3.0-alpha.3...7.3.0-alpha.4) (2025-07-09)
261+
262+
263+
### Features
264+
265+
* Add column freezing in data browser ([#2877](https://github.com/parse-community/parse-dashboard/issues/2877)) ([29f4a88](https://github.com/parse-community/parse-dashboard/commit/29f4a88dc8dc4c9e1673cfbbbbd39db37231f983))
266+
1267
# [7.3.0-alpha.3](https://github.com/parse-community/parse-dashboard/compare/7.3.0-alpha.2...7.3.0-alpha.3) (2025-07-09)
2268

3269

0 commit comments

Comments
 (0)