Skip to content

Commit 39483ec

Browse files
authored
Merge branch 'alpha' into feature/setting-filter
2 parents 5a90fc9 + 31b915a commit 39483ec

File tree

12 files changed

+294
-142
lines changed

12 files changed

+294
-142
lines changed

changelogs/CHANGELOG_alpha.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
# [7.1.0-alpha.1](https://github.com/parse-community/parse-dashboard/compare/7.0.1-alpha.1...7.1.0-alpha.1) (2025-04-06)
2+
3+
4+
### Features
5+
6+
* Add pagination to data browser ([#2659](https://github.com/parse-community/parse-dashboard/issues/2659)) ([a3c8a11](https://github.com/parse-community/parse-dashboard/commit/a3c8a119cb9f669e0e663ec6c018e2b2cf305596))
7+
8+
## [7.0.1-alpha.1](https://github.com/parse-community/parse-dashboard/compare/7.0.0...7.0.1-alpha.1) (2025-04-05)
9+
10+
11+
### Bug Fixes
12+
13+
* Improperly aligned unfolding sub-items in context menu in data browser ([#2713](https://github.com/parse-community/parse-dashboard/issues/2713)) ([189c817](https://github.com/parse-community/parse-dashboard/commit/189c8170425642fd94a9360e5c001e6687f50c29))
14+
115
# [7.0.0-alpha.2](https://github.com/ParsePlatform/parse-dashboard/compare/7.0.0-alpha.1...7.0.0-alpha.2) (2025-03-27)
216

317

changelogs/CHANGELOG_release.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
# [7.0.0](https://github.com/parse-community/parse-dashboard/compare/6.2.0...7.0.0) (2025-04-04)
2+
3+
4+
### Bug Fixes
5+
6+
* Title row disappears when scrolling down in data browser ([#2690](https://github.com/parse-community/parse-dashboard/issues/2690)) ([7eebc45](https://github.com/parse-community/parse-dashboard/commit/7eebc45a17844e7d72c5a7e86963ee355f63dd77))
7+
8+
### Features
9+
10+
* Allow to select and copy multiple cells in data browser ([#2691](https://github.com/parse-community/parse-dashboard/issues/2691)) ([eb50315](https://github.com/parse-community/parse-dashboard/commit/eb503151b30a5fd35437559eaddfc7e7e5991dc7))
11+
* Increase minimum required Node versions to `18.20.4`, `20.18.0`, `22.12.0` ([#2694](https://github.com/parse-community/parse-dashboard/issues/2694)) ([034df6a](https://github.com/parse-community/parse-dashboard/commit/034df6af3526edc33768f408c9e8faf018fa2ba9))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* Increases the minimum required Node versions to `18.20.4`, `20.18.0`, `22.12.0`. ([034df6a](034df6a))
17+
118
# [6.2.0](https://github.com/ParsePlatform/parse-dashboard/compare/6.1.0...6.2.0) (2025-03-17)
219

320

package-lock.json

Lines changed: 13 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "parse-dashboard",
3-
"version": "7.0.0-alpha.2",
3+
"version": "7.1.0-alpha.1",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/parse-community/parse-dashboard"
@@ -35,7 +35,7 @@
3535
"LICENSE"
3636
],
3737
"dependencies": {
38-
"@babel/runtime": "7.26.10",
38+
"@babel/runtime": "7.27.0",
3939
"@babel/runtime-corejs3": "7.26.10",
4040
"bcryptjs": "2.3.0",
4141
"body-parser": "1.20.3",
@@ -104,7 +104,7 @@
104104
"madge": "5.0.1",
105105
"marked": "15.0.7",
106106
"null-loader": "4.0.1",
107-
"prettier": "2.8.8",
107+
"prettier": "3.5.3",
108108
"puppeteer": "24.4.0",
109109
"react-test-renderer": "16.13.1",
110110
"request": "2.88.2",

src/components/ContextMenu/ContextMenu.react.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const MenuSection = ({ level, items, path, setPath, hide }) => {
4242
const style = position
4343
? {
4444
left: position.x,
45-
top: position.y,
45+
top: position.y + path[level] * 30,
4646
maxHeight: '80vh',
4747
overflowY: 'scroll',
4848
opacity: 1,

0 commit comments

Comments
 (0)