Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CSV Export of class data #1494

Merged
merged 23 commits into from
Aug 17, 2021
Merged

CSV Export of class data #1494

merged 23 commits into from
Aug 17, 2021

Conversation

Vortec4800
Copy link
Contributor

@Vortec4800 Vortec4800 commented Mar 12, 2020

Here's a first stab at adding a CSV Exporter function to the data browser. I've mirrored the basic functionality of the existing delete function, if you have rows selected you can export just those rows, or there is a separate menu item to export the entire class data set.

Currently, the "all" mode limits the query to 10,000 rows. I'm not sure if we want to change that, or if someone has a better solution, but I'm worried about trying to execute an export on a class with 10 million rows in it. At least now you'll get 10k as a result which is large but manageable.

Anyway I'm much better at general Node development than I am at React development, so apologies upfront for any stupid mistakes. Let me know if you have any feedback, or input on what we want to do with this. Speaking from personal experience, being able to quickly export data into a CSV file would save me a ton of time so I thought it would be a useful addition.

Closes #1756.

TODO:

  • Add changelog entry
  • Add feature description to README
  • Fix export bug of empty pointers
  • Fix export empty fields as empty CSV fields
  • Fix export object field values
  • Fix export array field values
  • Fix export ACL values

Potential future improvements:

  • Make export limitation of 10k records overridable with custom value via dashboard config

@404-html
Copy link
Member

Nice! It would be good to take hidden columns into account (skip them in CSV file). Or make that configurable with a checkbox in export dialog?

@Vortec4800
Copy link
Contributor Author

I can look into that, do you know how I can tell if a column is hidden? I also need to figure out how to add a checkbox to the react dialog - I basically just re-used the delete dialog which doesn't have one.

@404-html
Copy link
Member

404-html commented Mar 16, 2020

you know how I can tell if a column is hidden?

I did that fix recently, maybe it will give you some clue:
https://github.com/parse-community/parse-dashboard/pull/1438/files

@Vortec4800
Copy link
Contributor Author

Hmm, I tried filtering on column.visible but that doesn't seem to work. That property doesn't appear to be set on columns that are fetched directly from the schema.

@Vortec4800
Copy link
Contributor Author

I haven't been able to figure out how to hide the hidden columns, how do you all feel about merging this as-is and adding the hidden column feature in the future?

@stale
Copy link

stale bot commented Jul 3, 2020

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

@stale stale bot added the state:wont-fix Won’t be fixed with a clearly stated reason label Jul 3, 2020
@Vortec4800
Copy link
Contributor Author

@404-html I just noticed this hasn't been merged yet. Are we good to do that? I did merge your PR into mine, so this one has your changes as well here.

@stale stale bot removed the state:wont-fix Won’t be fixed with a clearly stated reason label Jul 3, 2020
@404-html
Copy link
Member

404-html commented Jul 3, 2020

Hey @Vortec4800, I'll try to look into that over the weekend. I can give an approval but I'm afraid I don't have write access to merge. Anyway I can CC someone who have.

P.S. is it worth to add somewhere in the UI an info about 10,000 rows limit?

@JacobWithACapitalJ
Copy link

any update on the status of this PR? It would be an extremely useful feature to have

@stale
Copy link

stale bot commented Sep 11, 2020

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

@stale stale bot added the state:wont-fix Won’t be fixed with a clearly stated reason label Sep 11, 2020
@Vortec4800
Copy link
Contributor Author

I'm hoping we can still get someone with write access to review and merge this.

@stale stale bot removed the state:wont-fix Won’t be fixed with a clearly stated reason label Sep 11, 2020
Copy link
Member

@404-html 404-html left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey @Vortec4800, I've added few comments to the code.

src/dashboard/Data/Browser/Browser.react.js Outdated Show resolved Hide resolved
src/dashboard/Data/Browser/Browser.react.js Outdated Show resolved Hide resolved
src/dashboard/Data/Browser/Browser.react.js Show resolved Hide resolved
Style updates

Co-authored-by: 404-html <[email protected]>
@Vortec4800
Copy link
Contributor Author

Vortec4800 commented Sep 13, 2020

Does this work, or did you have something else in mind?

Screen Shot 2020-09-12 at 7 34 47 PM

I have it set to only show if you use the "Export all" function. I figure it's unlikely you're going to manually click more than 10,000 rows...

@Vortec4800
Copy link
Contributor Author

Okay we should be good now. Let me know if there is anything else.

@404-html
Copy link
Member

404-html commented Sep 27, 2020

Happy Sunday @Vortec4800 and thanks for the changes. I played with the build a bit and I noticed one problem.
Export doesn't cope well with rows that have empty pointer. Here's an example:

image
While the one marked with green exports fine the one with red results in following exception thrown:

Uncaught (in promise) TypeError: Cannot read property 'id' of undefined
    at dashboard.bundle.js:95
    at Array.map (<anonymous>)
    at h (dashboard.bundle.js:95)
    at t.<anonymous> (dashboard.bundle.js:95)
    at u (dashboard.bundle.js:53)
    at Generator._invoke (dashboard.bundle.js:53)
    at Generator.forEach.e.<computed> [as next] (dashboard.bundle.js:53)
    at n (dashboard.bundle.js:1)
    at s (dashboard.bundle.js:1)

To reproduce simply create an object with a pointer reference and wipe it with delete key (while cell is selected in dashboard). Do you think you can get that fixed?

README.md Outdated Show resolved Hide resolved
src/dashboard/Data/Browser/BrowserToolbar.react.js Outdated Show resolved Hide resolved
@mtrezza
Copy link
Member

mtrezza commented Aug 16, 2021

Not sure whether this is a bug or something to note as improvement for a future PR, but when I export a field that contains an object like ACL or authData, it is exported with value [object Object]. Maybe we would want to JSON.stringify if the type of value is [object Object].

Another thing I noticed is that a field without value (undefined) is exported as string undefined. I am not sure whether this is intended, but maybe one would expect an empty field to be exported (i.e. ,,). Also from a data size perspective, a class with many columns of which few are filled creates an export file in which every field is filled.

@Vortec4800
Copy link
Contributor Author

Yeah I wasn't sure how to deal with JSON objects, seemed a bit much to have them in a CSV file, but just showing [object Object] isn't very useful either.

The undefined string came from @j-heinze in his fix for the crash and I left it. I don't feel strongly about whether it should say "undefined" or just be an empty string, so whichever everyone wants it would be easy to swap that in. Would definitely be smaller with empty strings, like you say.

@Vortec4800
Copy link
Contributor Author

Vortec4800 commented Aug 17, 2021

Finished moving the export menu, this will be better if we do end up adding JSON export in the future. You'll definitely want to review my code here, it looks correct to me but I'm a bit out of my element on this part...

Screen Shot 2021-08-16 at 7 30 38 PM

I selected an existing icon that matched the style of the other icons in the top menu, instead of one of the outline style icons. I think it looks pretty good, let me know if you agree.

@mtrezza
Copy link
Member

mtrezza commented Aug 17, 2021

The menu looks great.

Yeah I wasn't sure how to deal with JSON objects, seemed a bit much to have them in a CSV file, but just showing [object Object] isn't very useful either.

Can you change this to JSON.stringify?
Done.

Does the export function also export columns that are currently hidden in the settings? If so, we maw want to add this as another caveat to the readme.
It does, just tried it out.

I think the expectation when exporting an empty field is to have an empty field in the CSV. This would be analogous to mongoexport behavior. I'll take a look at #1494 (comment).
Fixed.

@mtrezza
Copy link
Member

mtrezza commented Aug 17, 2021

@Vortec4800 I've made a few changes:

  • Fix export empty fields as empty CSV fields
  • Fix export object field values
  • Fix export array field values
  • Fix export ACL value
  • Minor rewording in menu and dialog

Could you take another quick look over it, to see if you'd agree with the changes and whether there is anything you'd like to add before merging?

@Vortec4800
Copy link
Contributor Author

Everything looks good to me - I'm happy if you guys are. Excited to see this merged!

@mtrezza
Copy link
Member

mtrezza commented Aug 17, 2021

@404-html any thoughts before we merge?

@404-html
Copy link
Member

Thank you for asking @mtrezza, I'm happy for this to be merged.
Finally I can delete my custom script for CSV export. But first I need to find it, which is always a struggle!
Great job gents, thank you.

Copy link
Member

@mtrezza mtrezza left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good to me! Thanks for this essential feature, I'm sure you'll be causing a few tears of joy among developers with this.

@mtrezza mtrezza merged commit 0c5bafd into parse-community:master Aug 17, 2021
@Vortec4800 Vortec4800 deleted the csv-export branch August 17, 2021 16:34
@tehsunnliu
Copy link

Wow merged just when I needed it.
Thank you all!!!!!!

beiguancyc pushed a commit to beiguancyc/parse-dashboard that referenced this pull request Aug 24, 2021
* source: (112 commits)
  ci(changelog): add changelog reminder (parse-community#1764)
  Added missing entry to readme toc
  Fix typo in changelog
  Release 2.2.0 (parse-community#1763)
  fixed incorrect row height (related to parse-community#1754)
  Open pointer in new browser tab with [Cmd] click (parse-community#1757)
  Exclude hidden fields  (parse-community#1734)
  fix: upgrade react-ace from 9.4.1 to 9.4.3 (parse-community#1762)
  Sidebar collapse (parse-community#1760)
  cell select height fix (parse-community#1754)
  CSV Export of class data (parse-community#1494)
  fix: upgrade @babel/runtime from 7.14.6 to 7.14.8 (parse-community#1755)
  Cloning Rows (parse-community#1697)
  Improve cell value copying of pointer cell (parse-community#1708)
  Browse as Parse.User (Continuation) (parse-community#1750)
  Delete index.html
  Arrays of Pointers dont render correctly parse-community#275 (parse-community#1727)
  Add option to create a field after creating a class parse-community#1726 (parse-community#1728)
  fixed comment style in issue template
  removing PR test from issue template
  ...

# Conflicts:
#	package-lock.json
#	package.json
#	src/dashboard/Data/Jobs/Jobs.react.js
davimacedo added a commit to back4app/parse-dashboard that referenced this pull request Oct 4, 2021
* Github Action (parse-community#1640)

* [Snyk] Upgrade parse from 2.17.0 to 2.18.0 (parse-community#1629)

* fix: upgrade parse from 2.17.0 to 2.18.0

Snyk has created this PR to upgrade parse from 2.17.0 to 2.18.0.

See this package in npm:
https://www.npmjs.com/package/parse

See this project in Snyk:
https://app.snyk.io/org/acinader/project/953c8e1a-a9ef-4134-afbe-43474913abbb?utm_source=github&utm_medium=upgrade-pr

* bump parse to 2.19.0

Co-authored-by: Diamond Lewis <[email protected]>

* fix: upgrade commander from 6.2.0 to 6.2.1 (parse-community#1636)

Snyk has created this PR to upgrade commander from 6.2.0 to 6.2.1.

See this package in npm:
https://www.npmjs.com/package/commander

See this project in Snyk:
https://app.snyk.io/org/acinader/project/953c8e1a-a9ef-4134-afbe-43474913abbb?utm_source=github&utm_medium=upgrade-pr

Co-authored-by: Diamond Lewis <[email protected]>

* fix: upgrade semver from 7.3.2 to 7.3.4 (parse-community#1634)

Snyk has created this PR to upgrade semver from 7.3.2 to 7.3.4.

See this package in npm:
https://www.npmjs.com/package/semver

See this project in Snyk:
https://app.snyk.io/org/acinader/project/953c8e1a-a9ef-4134-afbe-43474913abbb?utm_source=github&utm_medium=upgrade-pr

Co-authored-by: Diamond Lewis <[email protected]>

* chore(deps): bump ini from 1.3.5 to 1.3.8 (parse-community#1641)

Bumps [ini](https://github.com/isaacs/ini) from 1.3.5 to 1.3.8.
- [Release notes](https://github.com/isaacs/ini/releases)
- [Commits](npm/ini@v1.3.5...v1.3.8)

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* feat: upgrade react-ace from 8.0.0 to 9.2.1 (parse-community#1642)

Snyk has created this PR to upgrade react-ace from 8.0.0 to 9.2.1.

See this package in npm:
https://www.npmjs.com/package/react-ace

See this project in Snyk:
https://app.snyk.io/org/acinader/project/953c8e1a-a9ef-4134-afbe-43474913abbb?utm_source=github&utm_medium=upgrade-pr

* fix: upgrade query-string from 6.13.7 to 6.13.8 (parse-community#1647)

Snyk has created this PR to upgrade query-string from 6.13.7 to 6.13.8.

See this package in npm:
https://www.npmjs.com/package/query-string

See this project in Snyk:
https://app.snyk.io/org/acinader/project/953c8e1a-a9ef-4134-afbe-43474913abbb?utm_source=github&utm_medium=upgrade-pr

Co-authored-by: snyk-bot <[email protected]>

* fix: upgrade prismjs from 1.22.0 to 1.23.0 (parse-community#1646)

Snyk has created this PR to upgrade prismjs from 1.22.0 to 1.23.0.

See this package in npm:
https://www.npmjs.com/package/prismjs

See this project in Snyk:
https://app.snyk.io/org/acinader/project/953c8e1a-a9ef-4134-afbe-43474913abbb?utm_source=github&utm_medium=upgrade-pr

Co-authored-by: snyk-bot <[email protected]>

* fix: upgrade react-json-view from 1.19.1 to 1.20.0 (parse-community#1651)

Snyk has created this PR to upgrade react-json-view from 1.19.1 to 1.20.0.

See this package in npm:
https://www.npmjs.com/package/react-json-view

See this project in Snyk:
https://app.snyk.io/org/acinader/project/953c8e1a-a9ef-4134-afbe-43474913abbb?utm_source=github&utm_medium=upgrade-pr

Co-authored-by: snyk-bot <[email protected]>

* fix: upgrade react-json-view from 1.20.0 to 1.20.2 (parse-community#1652)

Snyk has created this PR to upgrade react-json-view from 1.20.0 to 1.20.2.

See this package in npm:
https://www.npmjs.com/package/react-json-view

See this project in Snyk:
https://app.snyk.io/org/acinader/project/953c8e1a-a9ef-4134-afbe-43474913abbb?utm_source=github&utm_medium=upgrade-pr

Co-authored-by: snyk-bot <[email protected]>

* fix: upgrade react-json-view from 1.20.2 to 1.20.4 (parse-community#1655)

Snyk has created this PR to upgrade react-json-view from 1.20.2 to 1.20.4.

See this package in npm:
https://www.npmjs.com/package/react-json-view

See this project in Snyk:
https://app.snyk.io/org/acinader/project/953c8e1a-a9ef-4134-afbe-43474913abbb?utm_source=github&utm_medium=upgrade-pr

Co-authored-by: snyk-bot <[email protected]>

* fix: upgrade react-ace from 9.2.1 to 9.3.0 (parse-community#1659)

Snyk has created this PR to upgrade react-ace from 9.2.1 to 9.3.0.

See this package in npm:
https://www.npmjs.com/package/react-ace

See this project in Snyk:
https://app.snyk.io/org/acinader/project/953c8e1a-a9ef-4134-afbe-43474913abbb?utm_source=github&utm_medium=upgrade-pr

Co-authored-by: snyk-bot <[email protected]>

* fix: upgrade react-json-view from 1.20.4 to 1.20.5 (parse-community#1660)

Snyk has created this PR to upgrade react-json-view from 1.20.4 to 1.20.5.

See this package in npm:
https://www.npmjs.com/package/react-json-view

See this project in Snyk:
https://app.snyk.io/org/acinader/project/953c8e1a-a9ef-4134-afbe-43474913abbb?utm_source=github&utm_medium=upgrade-pr

Co-authored-by: snyk-bot <[email protected]>

* fix: upgrade @babel/runtime from 7.12.5 to 7.12.13 (parse-community#1661)

Snyk has created this PR to upgrade @babel/runtime from 7.12.5 to 7.12.13.

See this package in npm:
https://www.npmjs.com/package/@babel/runtime

See this project in Snyk:
https://app.snyk.io/org/acinader/project/953c8e1a-a9ef-4134-afbe-43474913abbb?utm_source=github&utm_medium=upgrade-pr

Co-authored-by: snyk-bot <[email protected]>

* fix: upgrade react-json-view from 1.20.5 to 1.21.0 (parse-community#1662)

Snyk has created this PR to upgrade react-json-view from 1.20.5 to 1.21.0.

See this package in npm:
https://www.npmjs.com/package/react-json-view

See this project in Snyk:
https://app.snyk.io/org/acinader/project/953c8e1a-a9ef-4134-afbe-43474913abbb?utm_source=github&utm_medium=upgrade-pr

Co-authored-by: snyk-bot <[email protected]>

* fix: upgrade react-json-view from 1.21.0 to 1.21.1 (parse-community#1663)

Snyk has created this PR to upgrade react-json-view from 1.21.0 to 1.21.1.

See this package in npm:
https://www.npmjs.com/package/react-json-view

See this project in Snyk:
https://app.snyk.io/org/acinader/project/953c8e1a-a9ef-4134-afbe-43474913abbb?utm_source=github&utm_medium=upgrade-pr

Co-authored-by: snyk-bot <[email protected]>

* fix: upgrade query-string from 6.13.8 to 6.14.0 (parse-community#1664)

Snyk has created this PR to upgrade query-string from 6.13.8 to 6.14.0.

See this package in npm:
https://www.npmjs.com/package/query-string

See this project in Snyk:
https://app.snyk.io/org/acinader/project/953c8e1a-a9ef-4134-afbe-43474913abbb?utm_source=github&utm_medium=upgrade-pr

Co-authored-by: snyk-bot <[email protected]>

* chore(deps): bump elliptic from 6.5.3 to 6.5.4 (parse-community#1666)

Bumps [elliptic](https://github.com/indutny/elliptic) from 6.5.3 to 6.5.4.
- [Release notes](https://github.com/indutny/elliptic/releases)
- [Commits](indutny/elliptic@v6.5.3...v6.5.4)

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* fix: upgrade @babel/runtime from 7.12.13 to 7.12.18 (parse-community#1667)

Snyk has created this PR to upgrade @babel/runtime from 7.12.13 to 7.12.18.

See this package in npm:
https://www.npmjs.com/package/@babel/runtime

See this project in Snyk:
https://app.snyk.io/org/acinader/project/953c8e1a-a9ef-4134-afbe-43474913abbb?utm_source=github&utm_medium=upgrade-pr

Co-authored-by: snyk-bot <[email protected]>

* fix: upgrade @babel/runtime from 7.12.18 to 7.13.6 (parse-community#1669)

Snyk has created this PR to upgrade @babel/runtime from 7.12.18 to 7.13.6.

See this package in npm:
https://www.npmjs.com/package/@babel/runtime

See this project in Snyk:
https://app.snyk.io/org/acinader/project/953c8e1a-a9ef-4134-afbe-43474913abbb?utm_source=github&utm_medium=upgrade-pr

* fix: upgrade @babel/runtime from 7.13.6 to 7.13.7 (parse-community#1670)

Snyk has created this PR to upgrade @babel/runtime from 7.13.6 to 7.13.7.

See this package in npm:
https://www.npmjs.com/package/@babel/runtime

See this project in Snyk:
https://app.snyk.io/org/acinader/project/953c8e1a-a9ef-4134-afbe-43474913abbb?utm_source=github&utm_medium=upgrade-pr

* fix: upgrade query-string from 6.14.0 to 6.14.1 (parse-community#1672)

Snyk has created this PR to upgrade query-string from 6.14.0 to 6.14.1.

See this package in npm:
https://www.npmjs.com/package/query-string

See this project in Snyk:
https://app.snyk.io/org/acinader/project/953c8e1a-a9ef-4134-afbe-43474913abbb?utm_source=github&utm_medium=upgrade-pr

* fix: upgrade @babel/runtime from 7.13.7 to 7.13.8 (parse-community#1673)

Snyk has created this PR to upgrade @babel/runtime from 7.13.7 to 7.13.8.

See this package in npm:
https://www.npmjs.com/package/@babel/runtime

See this project in Snyk:
https://app.snyk.io/org/acinader/project/953c8e1a-a9ef-4134-afbe-43474913abbb?utm_source=github&utm_medium=upgrade-pr

* fix: upgrade @babel/runtime from 7.13.8 to 7.13.9 (parse-community#1674)

Snyk has created this PR to upgrade @babel/runtime from 7.13.8 to 7.13.9.

See this package in npm:
https://www.npmjs.com/package/@babel/runtime

See this project in Snyk:
https://app.snyk.io/org/acinader/project/953c8e1a-a9ef-4134-afbe-43474913abbb?utm_source=github&utm_medium=upgrade-pr

* fix: upgrade @babel/runtime from 7.13.9 to 7.13.10 (parse-community#1676)

Snyk has created this PR to upgrade @babel/runtime from 7.13.9 to 7.13.10.

See this package in npm:
https://www.npmjs.com/package/@babel/runtime

See this project in Snyk:
https://app.snyk.io/org/acinader/project/953c8e1a-a9ef-4134-afbe-43474913abbb?utm_source=github&utm_medium=upgrade-pr

* fix: upgrade react-json-view from 1.21.1 to 1.21.3 (parse-community#1675)

Snyk has created this PR to upgrade react-json-view from 1.21.1 to 1.21.3.

See this package in npm:
https://www.npmjs.com/package/react-json-view

See this project in Snyk:
https://app.snyk.io/org/acinader/project/953c8e1a-a9ef-4134-afbe-43474913abbb?utm_source=github&utm_medium=upgrade-pr

* Fix date filters (parse-community#1682)

* Date pickups not working on filters

* catching onClick event,stop propagating to parent

* fix: upgrade react-ace from 9.3.0 to 9.4.0 (parse-community#1683)

Snyk has created this PR to upgrade react-ace from 9.3.0 to 9.4.0.

See this package in npm:
https://www.npmjs.com/package/react-ace

See this project in Snyk:
https://app.snyk.io/org/acinader/project/953c8e1a-a9ef-4134-afbe-43474913abbb?utm_source=github&utm_medium=upgrade-pr

* chore(deps): bump ssri from 6.0.1 to 6.0.2 (parse-community#1684)

Bumps [ssri](https://github.com/npm/ssri) from 6.0.1 to 6.0.2.
- [Release notes](https://github.com/npm/ssri/releases)
- [Changelog](https://github.com/npm/ssri/blob/v6.0.2/CHANGELOG.md)
- [Commits](npm/ssri@v6.0.1...v6.0.2)

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* made expiresAt field readOnly (parse-community#1686)

* showing error message on failed clone row task (parse-community#1687)

* showing a message when no locale is setup (parse-community#1685)

* Added tooltip for readonly fields (parse-community#1688)

* added a tooltip for readonly fields

* added updated package-lock.json

* fix: upgrade js-beautify from 1.11.0 to 1.13.1 (parse-community#1649)

Snyk has created this PR to upgrade js-beautify from 1.11.0 to 1.13.1.

See this package in npm:
https://www.npmjs.com/package/js-beautify

See this project in Snyk:
https://app.snyk.io/org/acinader/project/953c8e1a-a9ef-4134-afbe-43474913abbb?utm_source=github&utm_medium=upgrade-pr

Co-authored-by: snyk-bot <[email protected]>

* fix: upgrade js-beautify from 1.13.1 to 1.13.5 (parse-community#1689)

Snyk has created this PR to upgrade js-beautify from 1.13.1 to 1.13.5.

See this package in npm:
https://www.npmjs.com/package/js-beautify

See this project in Snyk:
https://app.snyk.io/org/acinader/project/953c8e1a-a9ef-4134-afbe-43474913abbb?utm_source=github&utm_medium=upgrade-pr

* hiding setup locales msg (parse-community#1691)

* exculde hidden culomns (parse-community#1694)

* exculde hidden culomns

* get columns from function instead of localStorage directly

* excludeFields function

* add ;

* fix: upgrade js-beautify from 1.13.5 to 1.13.11 (parse-community#1696)

Snyk has created this PR to upgrade js-beautify from 1.13.5 to 1.13.11.

See this package in npm:
https://www.npmjs.com/package/js-beautify

See this project in Snyk:
https://app.snyk.io/org/acinader/project/953c8e1a-a9ef-4134-afbe-43474913abbb?utm_source=github&utm_medium=upgrade-pr

* showing "(auto)" for readonly fields while adding new row (parse-community#1692)

* chore(deps): bump lodash from 4.17.20 to 4.17.21 (parse-community#1699)

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.20 to 4.17.21.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](lodash/lodash@4.17.20...4.17.21)

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): bump ua-parser-js from 0.7.22 to 0.7.28 (parse-community#1698)

Bumps [ua-parser-js](https://github.com/faisalman/ua-parser-js) from 0.7.22 to 0.7.28.
- [Release notes](https://github.com/faisalman/ua-parser-js/releases)
- [Commits](faisalman/ua-parser-js@0.7.22...0.7.28)

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* fix: upgrade js-beautify from 1.13.11 to 1.13.13 (parse-community#1701)

Snyk has created this PR to upgrade js-beautify from 1.13.11 to 1.13.13.

See this package in npm:
https://www.npmjs.com/package/js-beautify

See this project in Snyk:
https://app.snyk.io/org/acinader/project/953c8e1a-a9ef-4134-afbe-43474913abbb?utm_source=github&utm_medium=upgrade-pr

* chore(deps): bump hosted-git-info from 2.8.8 to 2.8.9 (parse-community#1702)

Bumps [hosted-git-info](https://github.com/npm/hosted-git-info) from 2.8.8 to 2.8.9.
- [Release notes](https://github.com/npm/hosted-git-info/releases)
- [Changelog](https://github.com/npm/hosted-git-info/blob/v2.8.9/CHANGELOG.md)
- [Commits](npm/hosted-git-info@v2.8.8...v2.8.9)

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Added ESC key binding (parse-community#1695)

* added ESC key binding for new row

* added more conditions for cancellling editing rows

* updated cancelling editing condition

* updating counter in sidebar on success clone rows (parse-community#1703)

* updated fetch next query for pagination (parse-community#1706)

* fix: upgrade @babel/runtime from 7.13.10 to 7.13.16 (parse-community#1704)

Snyk has created this PR to upgrade @babel/runtime from 7.13.10 to 7.13.16.

See this package in npm:
https://www.npmjs.com/package/@babel/runtime

See this project in Snyk:
https://app.snyk.io/org/acinader/project/953c8e1a-a9ef-4134-afbe-43474913abbb?utm_source=github&utm_medium=upgrade-pr

* chore(deps): bump codemirror from 5.58.1 to 5.61.0 (parse-community#1705)

Bumps [codemirror](https://github.com/codemirror/CodeMirror) from 5.58.1 to 5.61.0.
- [Release notes](https://github.com/codemirror/CodeMirror/releases)
- [Changelog](https://github.com/codemirror/CodeMirror/blob/master/CHANGELOG.md)
- [Commits](codemirror/codemirror5@5.58.1...5.61.0)

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* fix: upgrade @babel/runtime from 7.13.16 to 7.13.17 (parse-community#1707)

Snyk has created this PR to upgrade @babel/runtime from 7.13.16 to 7.13.17.

See this package in npm:
https://www.npmjs.com/package/@babel/runtime

See this project in Snyk:
https://app.snyk.io/org/acinader/project/953c8e1a-a9ef-4134-afbe-43474913abbb?utm_source=github&utm_medium=upgrade-pr

* added cancel button for new row (parse-community#1690)

* added cancel button for new row

* removed extra line on add new row

* added "add" button for new row

* changed order of button for new row

* fix: upgrade @babel/runtime from 7.13.17 to 7.14.0 (parse-community#1710)

Snyk has created this PR to upgrade @babel/runtime from 7.13.17 to 7.14.0.

See this package in npm:
https://www.npmjs.com/package/@babel/runtime

See this project in Snyk:
https://app.snyk.io/org/acinader/project/953c8e1a-a9ef-4134-afbe-43474913abbb?utm_source=github&utm_medium=upgrade-pr

* feat(preventSort): allow preventSort from columnPreferences props (parse-community#1709)

* feat(preventSort): allow preventSort from columnPreferences props

* feat(preventSort): add doc section of prevent sorting

* chore(deps): bump browserslist from 4.14.5 to 4.16.6 (parse-community#1713)

Bumps [browserslist](https://github.com/browserslist/browserslist) from 4.14.5 to 4.16.6.
- [Release notes](https://github.com/browserslist/browserslist/releases)
- [Changelog](https://github.com/browserslist/browserslist/blob/main/CHANGELOG.md)
- [Commits](browserslist/browserslist@4.14.5...4.16.6)

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* fix: Allow other key binding while adding new row (parse-community#1714)

* update on file change (parse-community#1717)

* update on file change

* showing a spinner while uploading file

* Fix: Column name starting with numbers (parse-community#1718)

* validating column name

* showing error note on fail add column op

* chore(deps): bump normalize-url from 4.5.0 to 4.5.1 (parse-community#1725)

Bumps [normalize-url](https://github.com/sindresorhus/normalize-url) from 4.5.0 to 4.5.1.
- [Release notes](https://github.com/sindresorhus/normalize-url/releases)
- [Commits](https://github.com/sindresorhus/normalize-url/commits)

---
updated-dependencies:
- dependency-name: normalize-url
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* updated parse to 3.2.0 (parse-community#1733)

* fix: upgrade react-popper-tooltip from 4.2.0 to 4.3.0 (parse-community#1736)

Snyk has created this PR to upgrade react-popper-tooltip from 4.2.0 to 4.3.0.

See this package in npm:
https://www.npmjs.com/package/react-popper-tooltip

See this project in Snyk:
https://app.snyk.io/org/acinader/project/953c8e1a-a9ef-4134-afbe-43474913abbb?utm_source=github&utm_medium=upgrade-pr

* fix: upgrade react-ace from 9.4.0 to 9.4.1 (parse-community#1738)

Snyk has created this PR to upgrade react-ace from 9.4.0 to 9.4.1.

See this package in npm:
https://www.npmjs.com/package/react-ace

See this project in Snyk:
https://app.snyk.io/org/acinader/project/953c8e1a-a9ef-4134-afbe-43474913abbb?utm_source=github&utm_medium=upgrade-pr

* chore(deps): bump prismjs from 1.23.0 to 1.24.0 (parse-community#1739)

Bumps [prismjs](https://github.com/PrismJS/prism) from 1.23.0 to 1.24.0.
- [Release notes](https://github.com/PrismJS/prism/releases)
- [Changelog](https://github.com/PrismJS/prism/blob/master/CHANGELOG.md)
- [Commits](PrismJS/prism@v1.23.0...v1.24.0)

---
updated-dependencies:
- dependency-name: prismjs
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* fix: upgrade @babel/runtime from 7.14.0 to 7.14.5 (parse-community#1740)

Snyk has created this PR to upgrade @babel/runtime from 7.14.0 to 7.14.5.

See this package in npm:
https://www.npmjs.com/package/@babel/runtime

See this project in Snyk:
https://app.snyk.io/org/acinader/project/953c8e1a-a9ef-4134-afbe-43474913abbb?utm_source=github&utm_medium=upgrade-pr

* fix: upgrade @babel/runtime from 7.14.5 to 7.14.6 (parse-community#1742)

Snyk has created this PR to upgrade @babel/runtime from 7.14.5 to 7.14.6.

See this package in npm:
https://www.npmjs.com/package/@babel/runtime

See this project in Snyk:
https://app.snyk.io/org/acinader/project/953c8e1a-a9ef-4134-afbe-43474913abbb?utm_source=github&utm_medium=upgrade-pr

* fix: upgrade js-beautify from 1.13.13 to 1.14.0 (parse-community#1743)

Snyk has created this PR to upgrade js-beautify from 1.13.13 to 1.14.0.

See this package in npm:
https://www.npmjs.com/package/js-beautify

See this project in Snyk:
https://app.snyk.io/org/acinader/project/953c8e1a-a9ef-4134-afbe-43474913abbb?utm_source=github&utm_medium=upgrade-pr

* updated issue and PR templates (parse-community#1741)

* updated issue and PR templates

* added browser info

* updated wording

* Showing * for required Columns (parse-community#1720)

* passing down required field info

* showing * for required columns

* marked required columns for standard classes

* showing required for new row

* mark required fields as red on save new row

* showing hidden when no value set

* dynamically changing required text

* showing (hidden) for hidden field

* added new var isNewRow

* update required fields if all are undefined _User

* update required Fields after new col add

* update required field on required col add

* fix: upgrade regenerator-runtime from 0.13.5 to 0.13.8 (parse-community#1748)

Snyk has created this PR to upgrade regenerator-runtime from 0.13.5 to 0.13.8.

See this package in npm:
https://www.npmjs.com/package/regenerator-runtime

See this project in Snyk:
https://app.snyk.io/org/acinader/project/953c8e1a-a9ef-4134-afbe-43474913abbb?utm_source=github&utm_medium=upgrade-pr

* fix: package.json & package-lock.json to reduce vulnerabilities (parse-community#1745)

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-WS-1296835

* fix: upgrade prismjs from 1.24.0 to 1.24.1 (parse-community#1749)

* removing PR test from issue template

dashboard does not have tests (yet), so only PRs with fixes should be encouraged

* fixed comment style in issue template

* Add option to create a field after creating a class parse-community#1726 (parse-community#1728)

* combined create class flow

* config revert

* reformating -- 1

* reset forms after submitting

* Improve feed back for add column dialog

* improve add column dialog -- 2

* reverting isDisabled

* mergeconflicts resolve 2

* required column changes

* required col in addAndContinue

* removed index.html

Co-authored-by: Faisal Nadeem <[email protected]>

* Arrays of Pointers dont render correctly #275 (parse-community#1727)

* pointer array

* fix for array

Co-authored-by: Faisal Nadeem <[email protected]>

* Delete index.html

* Browse as Parse.User (Continuation) (parse-community#1750)

* Test ACL with parse user login

* Login dialog upgrades;
Expand / Collapse TextArea fields on EditRowDialog;
Fix for live reload data on EditRowDialog when data is updated on server

* fix: eslint fixes

* UX changes in main nav bar for browse as user;
Toggle new type added - HIDE_LABELS;

* fix: eslint fixes

* Use master key state property on editRowDialog and ObjectPickerDialog;
Enabled using useMasteKey property for save actions and other actions

* Removed quickfix for next PR

* Removed quickfix for next PR

* Removed EditRowDialog fixes for next PR

* Reposition Browse as User menu item

* Test ACL with parse user login

* Login dialog upgrades;
Expand / Collapse TextArea fields on EditRowDialog;
Fix for live reload data on EditRowDialog when data is updated on server

* fix: don't update Array,  Object or Polygon field on EditRowDialog when no changes

* fix: eslint fixes

* UX changes in main nav bar for browse as user;
Toggle new type added - HIDE_LABELS;

* fix: eslint fixes

* Use master key state property on editRowDialog and ObjectPickerDialog;
Enabled using useMasteKey property for save actions and other actions

* Removed quickfix for next PR

* Removed quickfix for next PR

* Removed EditRowDialog fixes for next PR

* Reposition Browse as User menu item

* Test ACL with parse user login

* Login dialog upgrades;
Expand / Collapse TextArea fields on EditRowDialog;
Fix for live reload data on EditRowDialog when data is updated on server

* fix: eslint fixes

* UX changes in main nav bar for browse as user;
Toggle new type added - HIDE_LABELS;

* fix: eslint fixes

* Use master key state property on editRowDialog and ObjectPickerDialog;
Enabled using useMasteKey property for save actions and other actions

* Reposition Browse as User menu item

* Test ACL with parse user login

* Login dialog upgrades;
Expand / Collapse TextArea fields on EditRowDialog;
Fix for live reload data on EditRowDialog when data is updated on server

* fix: don't update Array,  Object or Polygon field on EditRowDialog when no changes

* fix: eslint fixes

* UX changes in main nav bar for browse as user;
Toggle new type added - HIDE_LABELS;

* fix: eslint fixes

* Use master key state property on editRowDialog and ObjectPickerDialog;
Enabled using useMasteKey property for save actions and other actions

* Removed quickfix for next PR

* Removed quickfix for next PR

* Removed EditRowDialog fixes for next PR

* Reposition Browse as User menu item

* Used object shorthand on useMasterKey

* Clear user & pass from LoginDialog on handleClose

* Test ACL with parse user login

* Login dialog upgrades;
Expand / Collapse TextArea fields on EditRowDialog;
Fix for live reload data on EditRowDialog when data is updated on server

* fix: eslint fixes

* UX changes in main nav bar for browse as user;
Toggle new type added - HIDE_LABELS;

* fix: eslint fixes

* Use master key state property on editRowDialog and ObjectPickerDialog;
Enabled using useMasteKey property for save actions and other actions

* Removed EditRowDialog fixes for next PR

* Reposition Browse as User menu item

* Test ACL with parse user login

* Login dialog upgrades;
Expand / Collapse TextArea fields on EditRowDialog;
Fix for live reload data on EditRowDialog when data is updated on server

* fix: don't update Array,  Object or Polygon field on EditRowDialog when no changes

* fix: eslint fixes

* UX changes in main nav bar for browse as user;
Toggle new type added - HIDE_LABELS;

* fix: eslint fixes

* Use master key state property on editRowDialog and ObjectPickerDialog;
Enabled using useMasteKey property for save actions and other actions

* Removed quickfix for next PR

* Removed quickfix for next PR

* Removed EditRowDialog fixes for next PR

* Reposition Browse as User menu item

* Test ACL with parse user login

* Login dialog upgrades;
Expand / Collapse TextArea fields on EditRowDialog;
Fix for live reload data on EditRowDialog when data is updated on server

* fix: eslint fixes

* UX changes in main nav bar for browse as user;
Toggle new type added - HIDE_LABELS;

* fix: eslint fixes

* Use master key state property on editRowDialog and ObjectPickerDialog;
Enabled using useMasteKey property for save actions and other actions

* Removed EditRowDialog fixes for next PR

* Reposition Browse as User menu item

* Test ACL with parse user login

* Login dialog upgrades;
Expand / Collapse TextArea fields on EditRowDialog;
Fix for live reload data on EditRowDialog when data is updated on server

* fix: don't update Array,  Object or Polygon field on EditRowDialog when no changes

* fix: eslint fixes

* UX changes in main nav bar for browse as user;
Toggle new type added - HIDE_LABELS;

* fix: eslint fixes

* Use master key state property on editRowDialog and ObjectPickerDialog;
Enabled using useMasteKey property for save actions and other actions

* Removed quickfix for next PR

* Removed quickfix for next PR

* Removed EditRowDialog fixes for next PR

* Reposition Browse as User menu item

* setCurrent to null on BrowserMenu open

* fix rebase GeoPointEditor.react.js

* fix rebase TextInput.react.js

* Update Browser.react.js

* Update EditRowDialog.react.js

* Update EditRowDialog.react.js

* Update EditRowDialog.react.js

* Update ObjectPickerDialog.react.js

* Update README.md

* Update README.md

* added missing dynamic useMasterKey

Co-authored-by: Nino Crljenec <[email protected]>

* Improve cell value copying of pointer cell (parse-community#1708)

* showing tooltip on mouse enter & leave

* added new arrow svg

* showing arrow icon if cell has follow link value

* Pill pointer, relation to follow link if selected

* added bottom margin for Pill

* following link even if cell is not selected on icon click

* using existing arrow icon

* removed arrow.svg file

* remove arrow outline

* removed Download & delete option from file Editor

* update Pill to download image on icon click

* update Browser cell file value

* opening upload dialog on double click

* File Editor on Edit Row dialog

* pill design update

* removing extra padding from pill

* showing new pointer layout on Edit row dialog

* making input fields light blue

* added margin in new pill design

* added undefined placeholder for edit row modal

* center toggle Input

* removed ccss comment

* Cloning Rows (parse-community#1697)

* disabled clone rows option for standard classes

* providing a way to edit clone rows on error 137

* allowing user to clone rows for standard classes

* checking dirty clone objects on failed clone

* giving option to clone or cancel per row for failed clone rows

* fixed wrapTop for data rows when edit clone row

* showing modal Clone menu

* disabling other menu item on modal state

* clone rows for requried field

* showing cloned rows for missing required field error

* removing username & authData for User class object

* removed null initialization var

* removing username while cloning User obj

* added clone icon attribution note

* added required placehlder text for edit clone rows

* clearing required field row after abort add

* udpating config file

* dynamic update required fields from BrowserRow new

* remove requiredColumnFields state var from Browser

* Update package-lock.json

* disabling all menu options on edit clone row modal state

Co-authored-by: Manuel Trezza <[email protected]>

* fix: upgrade @babel/runtime from 7.14.6 to 7.14.8 (parse-community#1755)

Snyk has created this PR to upgrade @babel/runtime from 7.14.6 to 7.14.8.

See this package in npm:
https://www.npmjs.com/package/@babel/runtime

See this project in Snyk:
https://app.snyk.io/org/acinader/project/953c8e1a-a9ef-4134-afbe-43474913abbb?utm_source=github&utm_medium=upgrade-pr

* CSV Export of class data (parse-community#1494)

* cell select height fix (parse-community#1754)

* cell select height fix

* cell height refactoring

* row height to match cell height

* refactor height

* removed line height

* cell padding fix

* Cell lineheight fix

* cell spacing -- 2

* Update BrowserCell.scss

* Update Pill.scss

Co-authored-by: Faisal Nadeem <[email protected]>
Co-authored-by: Manuel <[email protected]>

* Sidebar collapse (parse-community#1760)

* feat: Sidebar collapse

* fix: Handling app name text-overflow

* fix overlaying JS console line number bar

* removed toolbar ease-in animation

* fixed pin icon padding

* Update CHANGELOG.md

* fixed pinned collapse state

* fixed uncollapsing on mobile

Co-authored-by: Douglas Muraoka <[email protected]>

* fix: upgrade react-ace from 9.4.1 to 9.4.3 (parse-community#1762)

* Exclude hidden fields  (parse-community#1734)

* get column preference correctly from localstorage

* refreshing after a column is marked visible

* prevent request for always cached fields

* prevent request for password at _User

* set flag cached & making request if not cached

* add cache flag for cached preferences

* refetch data on showAll columns

* Open pointer in new browser tab with [Cmd] click (parse-community#1757)

* cmd+click and context menu

* removed console.log

* fixed pill icon click

* Pill click cleanup

* Delete index.html

* Reverting config.json

Co-authored-by: Faisal Nadeem <[email protected]>
Co-authored-by: Manuel <[email protected]>

* fixed incorrect row height (related to parse-community#1754)

* fixed incorrect row height (related to parse-community#1754)

* Release 2.2.0 (parse-community#1763)

* bump version

* Update CHANGELOG.md

* Update CHANGELOG.md

* rebuilt package-lock (npm 6)

* fixed incorrect row height (related to parse-community#1754)

* Update CHANGELOG.md

* Update CHANGELOG.md

* Fix typo in changelog

* Added missing entry to readme toc

* ci(changelog): add changelog reminder (parse-community#1764)

* added changelog reminder

* Update CHANGELOG.md

* enforce changelog syntax

* Update ci.yml

* rewording

* fix typo in issue template

* ci: add issue bot (parse-community#1766)

* add issue bot

* Update CHANGELOG.md

* refactor: uniform issue templates across repos (parse-community#1767)

* Update ---1-report-an-issue.md

* Update ---1-report-an-issue.md

* Update CHANGELOG.md

* fix: date cell value not selected on double clicks (parse-community#1730)

* removed old logic

* date time fix

* Changelog.MD update

Added improvement to change-log

* fix changelog entry

* Update CHANGELOG.md

Co-authored-by: Faisal Nadeem <[email protected]>
Co-authored-by: Manuel <[email protected]>

* fix: upgrade @babel/runtime from 7.14.8 to 7.15.3 (parse-community#1773)

Snyk has created this PR to upgrade @babel/runtime from 7.14.8 to 7.15.3.

See this package in npm:
https://www.npmjs.com/package/@babel/runtime

See this project in Snyk:
https://app.snyk.io/org/acinader/project/953c8e1a-a9ef-4134-afbe-43474913abbb?utm_source=github&utm_medium=upgrade-pr

* chore(deps): bump object-path from 0.11.5 to 0.11.7 (parse-community#1774)

Bumps [object-path](https://github.com/mariocasciaro/object-path) from 0.11.5 to 0.11.7.
- [Release notes](https://github.com/mariocasciaro/object-path/releases)
- [Commits](https://github.com/mariocasciaro/object-path/commits)

---
updated-dependencies:
- dependency-name: object-path
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Edit Array of pointers (parse-community#1771)

* show pill pointer design for array of pointers

* ctrl+c copy array of pointer value

* encoding data to avoid conversion of object to ParseObjects

* updated changelog.md

* Update CHANGELOG.md

Co-authored-by: Manuel <[email protected]>

* Improve ui for array of pointer field (parse-community#1776)

* improve ui for array of pointer field

* Updated changelog.md

* Update CHANGELOG.md

Co-authored-by: Manuel <[email protected]>

* Edit menu design fix

* Fix: Modal Z-index (parse-community#1778)

* bring modal on top of Sidebar

* updated changelog

* refactor: remove parse issue bot (parse-community#1780)

* ci: Fix docker image pushing to Docker Hub (parse-community#1781)

* Create docker-publish.yml

* update

* update

* Update CHANGELOG.md

* change linux version

* update access token

* add correct tags

* add latest tag

* switch image_name

* Update CHANGELOG.md

* nit

* add multi-platform

* reduce platforms

* remove arm7

* remove arm64

* only build on Intel

* Nit

* Update docker-publish.yml

* allow latest tag to be set automatically

* ci: refactor docker ci (parse-community#1786)

* feat: Add MFA to Dashboard (parse-community#1624)

* Update CloudCode.react.js

* Allow Writing Cloud Code

* Add MFA to Dashboard

* add inquirer

* add changelog

* Update index.js

* Update package.json

* Revert "Update CloudCode.react.js"

This reverts commit e9d3ea7.

* Revert "Allow Writing Cloud Code"

This reverts commit 2a5c050.

* Update index.js

* Update README.md

* Update index.js

* hide otp field by default

* change to one-time

* change to otp

* fix package-lock

* add readme

* Update Authentication.js

* change to SHA256

* Update CHANGELOG.md

* Update README.md

* use OTPAuth secrets

* Update index.js

* Update index.js

* add cli helper

* change to SHA1

* add digits option

* refactoring mfa flow

* more simplification

* fixed unsafe instructions

* fixed password copy to clipboard

* add newline before CLI questions

* style

* refactored readme

* removed RASS

* replaced URL with secret

* added url and secret to output

Co-authored-by: Manuel <[email protected]>

* Fix: Update CLP for new class (parse-community#1785)

* update CLP for new class

* update changelog.md

Co-authored-by: Manuel <[email protected]>

* fix(docker): increase node version in docker to 12 (parse-community#1788)

BREAKING CHANGE

The minimum requires Node version is bumped to 12.

* ci: modernize steps (parse-community#1789)

* Update ci.yml

* Update CHANGELOG.md

* adapt ci for node <10

* Update ci.yml

* bump node-sass for node 16 compatibility

* more chain bumps

* Revert "more chain bumps"

This reverts commit 89db4a9.

* Revert "bump node-sass for node 16 compatibility"

This reverts commit c3afc6e.

* fix determine node major

* fix determine node major

* add docker

* refactor docker

* add madge for circular dependencies

* run docker publish only on tag release

* add ci check

* changed default node vesion to 14

* Update ci.yml

* Update ci.yml

* fixed running ci self-check

* changed default node to 16

* add docker builds

* fix ci self-check

* Update ci.yml

* fix ci self-check

* Update ciCheck.js

* Update ci.yml

* Update ci.yml

* Update ci.yml

* Update ci.yml

* Update ci.yml

* add node engine check

* Update ci.yml

* removed eol node envs

* Update nodeEngineCheck.js

* ci: Remove parse server dev dependency (parse-community#1796)

* fix: bump node engine to 12.20.0

BREAKING CHANGE

Bump is required to satisfy a dependency that requires that node version. In addition, Parse Dashboard is not officially compatible with Node 16 yet, as tests don't pass.

* remove parse server dev dependency

* minor fixes

* just trying node 16 after removing parse server

* enabling node 16

* enabling node 16

* disabling node 16 as it still doesn't pass

* updating node engine requirement

* Update sass and docker (parse-community#1792)

* Update sass and docker

* update lock file

* Add change log

* bump minimum node

* revert node

* docs: Update node in README

Co-authored-by: Manuel <[email protected]>

* fix: revert parse-community#1706 which introduced new database index requirements for pagination (parse-community#1800)

* perf: asynchronously fetch classes counts in sidebar to not block dashboard (parse-community#1802)

* fix: upgrade react-router from 5.1.2 to 5.2.1 (parse-community#1805)

Snyk has created this PR to upgrade react-router from 5.1.2 to 5.2.1.

See this package in npm:
https://www.npmjs.com/package/react-router

See this project in Snyk:
https://app.snyk.io/org/acinader/project/953c8e1a-a9ef-4134-afbe-43474913abbb?utm_source=github&utm_medium=upgrade-pr

Co-authored-by: Manuel <[email protected]>

* fix: security upgrade prismjs from 1.24.1 to 1.25.0 (parse-community#1803)

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-PRISMJS-1585202

Co-authored-by: Manuel <[email protected]>

* fix: upgrade react-router-dom from 5.1.2 to 5.2.1 (parse-community#1804)

Snyk has created this PR to upgrade react-router-dom from 5.1.2 to 5.2.1.

See this package in npm:
https://www.npmjs.com/package/react-router-dom

See this project in Snyk:
https://app.snyk.io/org/acinader/project/953c8e1a-a9ef-4134-afbe-43474913abbb?utm_source=github&utm_medium=upgrade-pr

Co-authored-by: Manuel <[email protected]>

* build: release 3.0.0 (parse-community#1806)

* chore(deps): bump tmpl from 1.0.4 to 1.0.5 (parse-community#1808)

Bumps [tmpl](https://github.com/daaku/nodejs-tmpl) from 1.0.4 to 1.0.5.
- [Release notes](https://github.com/daaku/nodejs-tmpl/releases)
- [Commits](https://github.com/daaku/nodejs-tmpl/commits/v1.0.5)

---
updated-dependencies:
- dependency-name: tmpl
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* ci: add release automation (parse-community#1810)

* ci: fix incorrect npm auth token name

* ci: remove changelog todo from pull request template

* ci: update changelog todo in pull request template

* docs: fixed incorrect links in changelog

* ci: upgrade @babel/runtime from 7.15.3 to 7.15.4 (parse-community#1816)

Snyk has created this PR to upgrade @babel/runtime from 7.15.3 to 7.15.4.

See this package in npm:
https://www.npmjs.com/package/@babel/runtime

See this project in Snyk:
https://app.snyk.io/org/acinader/project/953c8e1a-a9ef-4134-afbe-43474913abbb?utm_source=github&utm_medium=referral&page=upgrade-pr

* menu icon css fix

* added export functionality

* fixed setCurrent error on opening menu

* added protected fields security dialog

* edit clone rows modal state

* fixed sidebar collapse pin

* added browser feature to tollbar

* removed ci

* Create submenu option for browser menu

* added icon & active state

* added browsing feature as sub menu

* changed active styles

* disabling subMenu

* closing both menus on click

* display submenu on hover

* fixing style for submenu items

* Import submenu

* reduced 1px btw menu & submenu

Co-authored-by: Diamond Lewis <[email protected]>
Co-authored-by: Snyk bot <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Antonio Davi Macedo Coelho de Castro <[email protected]>
Co-authored-by: Tom Fox <[email protected]>
Co-authored-by: itzharDev <[email protected]>
Co-authored-by: Christopher Brookes <[email protected]>
Co-authored-by: Christopher Brookes <[email protected]>
Co-authored-by: Manuel <[email protected]>
Co-authored-by: fn-faisal <[email protected]>
Co-authored-by: Faisal Nadeem <[email protected]>
Co-authored-by: Nino Crljenec <[email protected]>
Co-authored-by: Cory Imdieke <[email protected]>
Co-authored-by: Douglas Muraoka <[email protected]>
Co-authored-by: Corey <[email protected]>
Co-authored-by: dblythy <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Export feature
7 participants