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

Add MFA to Dashboard #1624

Merged
merged 40 commits into from
Sep 7, 2021
Merged

Add MFA to Dashboard #1624

merged 40 commits into from
Sep 7, 2021

Conversation

dblythy
Copy link
Member

@dblythy dblythy commented Nov 17, 2020

Hi all,

I'm currently working on adding MFA to Parse Dashboard.

How to enable MFA:

  1. Create an MFA token for the user using parse-dashboard --generateMFA username
  2. Set the MFA secret to the user json.
  3. Open the MFA URL using Google Authenticator

Now, when you login, you can use the OTP from Google Auth to validate.

Example:

"users": [
    {
      "user":"user1",
      "pass":"pass",
      "mfa":"NBMCGFTWFBHUCE2G",
    }
],

Now, if you open this URL on your mobile with Google Authenticator, it will add the OTP code, specific to the secret NBMCGFTWFBHUCE2G.

This PR is functional, the only problem I'm having is I can't get parse-dashboard --generateMFA username to work. Could anyone point me in the right direction?

Thanks 😊

Closes #856

@ghost
Copy link

ghost commented Nov 17, 2020

Danger run resulted in 1 warning; to find out more, see the checks page.

Generated by 🚫 dangerJS

@mtrezza
Copy link
Member

mtrezza commented Jan 10, 2021

This PR is functional, the only problem I'm having is I can't get parse-dashboard --generateMFA username to work. Could anyone point me in the right direction?

Maybe once parse-community/parse-server#7079 is merged, this PR can be adapted and that also fixes the issue.

@mtrezza
Copy link
Member

mtrezza commented Sep 3, 2021

I think this feature is simply too good to wait for the Auth adapter of Parse Server to be merged. I also assumed it would be merged faster, but unfortunately is has become stale for now.

@dblythy Would you rebase this on master and resolve any conflicts to we can look into the remaining issue you described and then merge this great feature?

@dblythy
Copy link
Member Author

dblythy commented Sep 4, 2021

I have evolved this to node ./Parse-Dashboard/index.js --createUser, to allow users to generate bcrypt and MFA secrets for their dashboard. Here's what it looks like:

Screen Shot 2021-09-04 at 3 36 15 pm

@dblythy dblythy marked this pull request as ready for review September 4, 2021 06:00
@dblythy
Copy link
Member Author

dblythy commented Sep 4, 2021

Ready for review @mtrezza 😊

src/login/Login.js Outdated Show resolved Hide resolved
@dblythy
Copy link
Member Author

dblythy commented Sep 4, 2021

Resolved @mtrezza! The OTP field now hides unless a login fails with an OTP error.

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.

Can you please remove the RAS syndrome through-out the PR?

"OTP code" is like "MFA authentication", I suggest to simply spell it out, because in addition, not everyone may know what OTP refers to in this case. For example, instead of:

Please enter your OTP code.

let's write:

Please enter your one-time password.

@mtrezza
Copy link
Member

mtrezza commented Sep 4, 2021

I am slightly concerned about otplib, because it is not maintained since 2 years, however, according to snyk it has no vulnerabilities. Normally I would argue against adding an unmaintained package, but in this case, given its popularity, I think we can just use it and switch to anther one if needed.

image

@mtrezza
Copy link
Member

mtrezza commented Sep 4, 2021

@dblythy Could you try to delete package-lock.json and node_modules and run npm i to see whether it builds for you? It doesn't for me, but that may be another issue.

@dblythy
Copy link
Member Author

dblythy commented Sep 4, 2021

I am slightly concerned about otplib,

Do you have any recommendations for other libraries? Probably a good suggestion.

I also had no issues before but now getting:

While resolving: parse-dashboard@2.2.0
npm ERR! Found: graphql@14.6.0
npm ERR! node_modules/graphql
npm ERR!   graphql@"14.6.0" from the root project

@mtrezza
Copy link
Member

mtrezza commented Sep 4, 2021

Do you have any recommendations for other libraries? Probably a good suggestion.

The other ones I found have the same issue; I guess it's ok if we just go with this one.

I also had no issues before but now getting:

Which node and npm version? Does that occur on master as well for you if you delete node_modules and package-lock?
For me it fails on Node 12 and 14 for webpack with:

ERROR in ../node_modules/stream-browserify/index.js
Module not found: Error: Can't resolve 'readable-stream/writable.js' in ...

@mtrezza
Copy link
Member

mtrezza commented Sep 7, 2021

I edited the readme a bit, let me know if you want to add anything, otherwise I think we're good to go!

@mtrezza
Copy link
Member

mtrezza commented Sep 7, 2021

So there is actually an issue, when I try to open the link on mobile safari, it says invalid link, it doesn't open any app.

Is that an issue or is the URI supposed to be used differently? Usually websites only display the secret to manually copy/paste to an auth app. Maybe we should remove the link and only show the secret, like most do.

This is what it looks now:

image

@pmmlo
Copy link

pmmlo commented Sep 7, 2021

So there is actually an issue, when I try to open the link on mobile safari, it says invalid link, it doesn't open any app.

Is that an issue or is the URI supposed to be used differently? Usually websites only display the secret to manually copy/paste to an auth app. Maybe we should remove the link and only show the secret, like most do.

This is what it looks now:

image

I think the URI provides better compatibility. I believe you can paste either into most major authenticators, but the URI provides more explicit metadata.

To my knowledge, no web browser will deep link otpauth into an authenticator, but if you use certain iOS qr code readers, this would technically deep link into something like G Authenticator. A secret would not.

I vote for URI.

@mtrezza
Copy link
Member

mtrezza commented Sep 7, 2021

I have never seen any 2FA website providing a URL as alternative to the QR code. How would the user know what to do with the URL?

@mtrezza
Copy link
Member

mtrezza commented Sep 7, 2021

Well, Microsoft Authenticator and Google Authenticator, don't accept the URL, but 1pw does. Maybe we just display both.

@pmmlo
Copy link

pmmlo commented Sep 7, 2021

Well, Microsoft Authenticator and Google Authenticator, don't accept the URL, but 1pw does. Maybe we just display both.

Interesting...DUO and Authy accept the URI. I think technically the standard is to provide a button to copy the URI. I trust your judgment on this. A quick fix if we get it wrong.

b38334d-b87e583-QR_for_2FA

@mtrezza
Copy link
Member

mtrezza commented Sep 7, 2021

I think technically what you are saying makes sense, the URL provides more info for the auth app. But practically, auth apps are designed to be easy, so they just take the secret.

How about this?

image

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 fantastic to me!

Great work @dblythy, this is truly a milestone for Parse Dashboard security - one of the most important security features added in recent times. And not only that, it's also done elegantly with a guided CLI that makes configuring it a piece of 🍰! I'll prepare a release soon to make this feature available. Definitely a feature we should mention in our first Parse Newsletter!

@mtrezza mtrezza merged commit 29a4b48 into parse-community:master Sep 7, 2021
@dblythy
Copy link
Member Author

dblythy commented Sep 7, 2021

Thanks again for your help @mtrezza!!

@Klaitos
Copy link
Contributor

Klaitos commented Sep 8, 2021

Hello guys, this PR breaks the docker image on the tag latest :

/src/node_modules/ora/index.js:401
 } catch {

SyntaxError: Unexpected token {
    at createScript (vm.js:80:10)
    at Object.runInThisContext (vm.js:139:10)
    at Module._compile (module.js:617:28)
    at Object.Module._extensions..js (module.js:664:10)
    at Module.load (module.js:566:32)
    at tryModuleLoad (module.js:506:12)
    at Function.Module._load (module.js:498:3)
    at Module.require (module.js:597:17)
    at require (internal/module.js:11:18)
    at Object.<anonymous> (/src/node_modules/inquirer/lib/utils/screen-manager.js:10:13)

@Klaitos
Copy link
Contributor

Klaitos commented Sep 8, 2021

Building the image docker with node 12 instead of 8 is fixing the issue. One of the dependencies included in this PR need node more than 8

stepanic added a commit to scanshop/parse-dashboard that referenced this pull request Sep 15, 2021
* upstream/master:
  docs: Update node in README
  Update sass and docker (parse-community#1792)
  ci: Remove parse server dev dependency (parse-community#1796)
  ci: modernize steps (parse-community#1789)
  fix(docker): increase node version in docker to 12 (parse-community#1788)
  Fix: Update CLP for new class (parse-community#1785)
  feat: Add MFA to Dashboard (parse-community#1624)
  ci: refactor docker ci (parse-community#1786)
  ci: Fix docker image pushing to Docker Hub (parse-community#1781)
beiguancyc pushed a commit to beiguancyc/parse-dashboard that referenced this pull request Sep 21, 2021
* parse: (25 commits)
  build: release 3.0.0 (parse-community#1806)
  fix: upgrade react-router-dom from 5.1.2 to 5.2.1 (parse-community#1804)
  fix: security upgrade prismjs from 1.24.1 to 1.25.0 (parse-community#1803)
  fix: upgrade react-router from 5.1.2 to 5.2.1 (parse-community#1805)
  perf: asynchronously fetch classes counts in sidebar to not block dashboard (parse-community#1802)
  fix: revert parse-community#1706 which introduced new database index requirements for pagination (parse-community#1800)
  docs: Update node in README
  Update sass and docker (parse-community#1792)
  ci: Remove parse server dev dependency (parse-community#1796)
  ci: modernize steps (parse-community#1789)
  fix(docker): increase node version in docker to 12 (parse-community#1788)
  Fix: Update CLP for new class (parse-community#1785)
  feat: Add MFA to Dashboard (parse-community#1624)
  ci: refactor docker ci (parse-community#1786)
  ci: Fix docker image pushing to Docker Hub (parse-community#1781)
  refactor: remove parse issue bot (parse-community#1780)
  Fix: Modal Z-index (parse-community#1778)
  Improve ui for array of pointer field (parse-community#1776)
  Edit Array of pointers (parse-community#1771)
  chore(deps): bump object-path from 0.11.5 to 0.11.7 (parse-community#1774)
  ...

# Conflicts:
#	package-lock.json
#	package.json
@funkenstrahlen
Copy link
Contributor

@dblythy A huge thank you for implementing this! ❤️ Works flawlessly and provides a much higher data security.

@dblythy
Copy link
Member Author

dblythy commented Sep 21, 2021

@funkenstrahlen i’m glad you like it! Let me know if you have any other ideas for heightened security for the dashboard 🎉

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 <findlewis@gmail.com>

* 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 <findlewis@gmail.com>

* 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 <findlewis@gmail.com>

* 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] <support@github.com>

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 <snyk-bot@snyk.io>

* 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 <snyk-bot@snyk.io>

* 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 <snyk-bot@snyk.io>

* 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 <snyk-bot@snyk.io>

* 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 <snyk-bot@snyk.io>

* 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 <snyk-bot@snyk.io>

* 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 <snyk-bot@snyk.io>

* 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 <snyk-bot@snyk.io>

* 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 <snyk-bot@snyk.io>

* 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 <snyk-bot@snyk.io>

* 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 <snyk-bot@snyk.io>

* 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] <support@github.com>

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 <snyk-bot@snyk.io>

* 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] <support@github.com>

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 <snyk-bot@snyk.io>

* 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] <support@github.com>

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] <support@github.com>

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] <support@github.com>

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] <support@github.com>

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] <support@github.com>

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] <support@github.com>

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] <support@github.com>

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 <mfaisalnadeem@hotmail.com>

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

* pointer array

* fix for array

Co-authored-by: Faisal Nadeem <mfaisalnadeem@hotmail.com>

* 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 <nino.crljenec@gmail.com>

* 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 <5673677+mtrezza@users.noreply.github.com>

* 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 <mfaisalnadeem@hotmail.com>
Co-authored-by: Manuel <5673677+mtrezza@users.noreply.github.com>

* 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 <douglas.muraoka@gmail.com>

* 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 <mfaisalnadeem@hotmail.com>
Co-authored-by: Manuel <5673677+mtrezza@users.noreply.github.com>

* 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 <mfaisalnadeem@hotmail.com>
Co-authored-by: Manuel <5673677+mtrezza@users.noreply.github.com>

* 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] <support@github.com>

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 <5673677+mtrezza@users.noreply.github.com>

* 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 <5673677+mtrezza@users.noreply.github.com>

* 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 <5673677+mtrezza@users.noreply.github.com>

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

* update CLP for new class

* update changelog.md

Co-authored-by: Manuel <5673677+mtrezza@users.noreply.github.com>

* 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 <5673677+mtrezza@users.noreply.github.com>

* 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 <5673677+mtrezza@users.noreply.github.com>

* 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 <5673677+mtrezza@users.noreply.github.com>

* 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 <5673677+mtrezza@users.noreply.github.com>

* 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] <support@github.com>

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 <findlewis@gmail.com>
Co-authored-by: Snyk bot <snyk-bot@snyk.io>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Antonio Davi Macedo Coelho de Castro <adavimacedo@gmail.com>
Co-authored-by: Tom Fox <13188249+TomWFox@users.noreply.github.com>
Co-authored-by: itzharDev <itzhar.dev@gmail.com>
Co-authored-by: Christopher Brookes <chris.klaitos@gmail.com>
Co-authored-by: Christopher Brookes <christopher.brookes@iziwork.com>
Co-authored-by: Manuel <5673677+mtrezza@users.noreply.github.com>
Co-authored-by: fn-faisal <faisal.fn154@gmail.com>
Co-authored-by: Faisal Nadeem <mfaisalnadeem@hotmail.com>
Co-authored-by: Nino Crljenec <nino.crljenec@gmail.com>
Co-authored-by: Cory Imdieke <cory.imdieke@gmail.com>
Co-authored-by: Douglas Muraoka <douglas.muraoka@gmail.com>
Co-authored-by: Corey <coreyearleon@icloud.com>
Co-authored-by: dblythy <daniel-blyth@live.com.au>
@parseplatformorg parseplatformorg added the state:released-alpha Released as alpha version label Oct 8, 2021
@parseplatformorg
Copy link
Contributor

🎉 This change has been released in version 3.3.0-beta.1

@parseplatformorg parseplatformorg added the state:released-beta Released as beta version label Nov 1, 2021
@parseplatformorg
Copy link
Contributor

🎉 This change has been released in version 3.3.0

@parseplatformorg parseplatformorg added the state:released Released as stable version label Jan 1, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
state:released Released as stable version state:released-alpha Released as alpha version state:released-beta Released as beta version
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Improving security using 2FA
6 participants