Skip to content
This repository has been archived by the owner on Feb 15, 2024. It is now read-only.

build: release beta #34

Open
wants to merge 19 commits into
base: beta
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,8 @@ jobs:
run: |
node_major=$(echo "${{ matrix.NODE_VERSION }}" | cut -d'.' -f1)
echo "::set-output name=node_major::$(echo $node_major)"
- name: Fix usage of insecure GitHub protocol
run: sudo git config --system url."https://github".insteadOf "git://github"
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.NODE_VERSION }}
uses: actions/setup-node@v1
Expand Down
18 changes: 18 additions & 0 deletions changelogs/CHANGELOG_alpha.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
# [4.2.0-alpha.1](https://github.com/ParsePlatform/parse-dashboard/compare/4.1.3-alpha.1...4.2.0-alpha.1) (2022-07-04)


### Bug Fixes

* login fails with error `req.session.regenerate is not a function` ([#2195](https://github.com/ParsePlatform/parse-dashboard/issues/2195)) [skip release] ([31a2b78](https://github.com/ParsePlatform/parse-dashboard/commit/31a2b7813531e370e11b1a050ea28b575a058816))

### Features

* remove support and documentation links ([#2203](https://github.com/ParsePlatform/parse-dashboard/issues/2203)) ([35e4476](https://github.com/ParsePlatform/parse-dashboard/commit/35e44768f65c64a228cb6ea8314aa534c5342f08))

## [4.1.3-alpha.1](https://github.com/ParsePlatform/parse-dashboard/compare/4.1.2...4.1.3-alpha.1) (2022-06-18)


### Bug Fixes

* security upgrade semver-regex from 3.1.3 to 3.1.4 ([#2154](https://github.com/ParsePlatform/parse-dashboard/issues/2154)) ([4f9090a](https://github.com/ParsePlatform/parse-dashboard/commit/4f9090ad22460913f7987964ee54f26d348ca254))

## [4.1.2-alpha.3](https://github.com/ParsePlatform/parse-dashboard/compare/4.1.2-alpha.2...4.1.2-alpha.3) (2022-06-04)


Expand Down
151 changes: 77 additions & 74 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "parse-dashboard",
"version": "4.1.3-beta.1",
"version": "4.2.0-alpha.1",
"repository": {
"type": "git",
"url": "https://github.com/ParsePlatform/parse-dashboard"
Expand Down Expand Up @@ -42,10 +42,10 @@
"connect-flash": "0.1.1",
"cookie-session": "2.0.0",
"copy-to-clipboard": "3.3.1",
"core-js": "3.22.7",
"core-js": "3.22.8",
"csurf": "1.11.0",
"express": "4.18.1",
"graphiql": "1.8.9",
"graphiql": "1.9.7",
"graphql": "16.5.0",
"history": "4.10.1",
"immutable": "4.1.0",
Expand All @@ -55,7 +55,7 @@
"otpauth": "7.1.3",
"package-json": "7.0.0",
"parse": "3.4.2",
"passport": "0.6.0",
"passport": "0.5.3",
"passport-local": "1.0.0",
"prismjs": "1.28.0",
"prop-types": "15.8.1",
Expand All @@ -67,13 +67,13 @@
"react-dom": "16.14.0",
"react-helmet": "6.1.0",
"react-json-view": "1.21.3",
"react-popper-tooltip": "4.3.1",
"react-popper-tooltip": "4.4.1",
"react-redux": "8.0.2",
"react-router": "5.2.1",
"react-router-dom": "5.3.0",
"regenerator-runtime": "0.13.9",
"semver": "7.3.7",
"typescript": "4.7.2"
"typescript": "4.7.3"
},
"devDependencies": {
"@actions/core": "1.2.6",
Expand Down
8 changes: 2 additions & 6 deletions src/components/Sidebar/FooterMenu.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default class FooterMenu extends React.Component {

toggle() {
let pos = Position.inWindow(this.moreRef.current);
pos.x += 24;
pos.x += 95;
this.setState({
show: true,
position: pos
Expand All @@ -50,11 +50,7 @@ export default class FooterMenu extends React.Component {
position={this.state.position}
onExternalClick={() => this.setState({ show: false })}>
<div className={styles.popup}>
<a href={`${mountPath}logout`}>Log Out <span className={styles.emoji}>👋</span></a>
<a target='_blank' href='http://docs.parseplatform.org/parse-server/guide/'>Server Guide <span className={styles.emoji}>📚</span></a>
<a target='_blank' href='http://stackoverflow.com/questions/tagged/parse.com'>Code-level Questions <span className={styles.emoji}>❓</span></a>
<a target='_blank' href='http://stackoverflow.com/questions/tagged/parse-server'>Server Questions <span className={styles.emoji}>❓</span></a>
<a target='_blank' href='http://serverfault.com/tags/parse'>Deployment/Maintenance <span className={styles.emoji}>⚡️</span></a>
<a href={`${mountPath}logout`}>➡️ Log out</a>
</div>
</Popover>
);
Expand Down
7 changes: 0 additions & 7 deletions src/components/Sidebar/Sidebar.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -179,13 +179,6 @@ const Sidebar = ({
<SidebarHeader isCollapsed={!appsMenuOpen && collapsed} />
{sidebarContent}
<div className={styles.footer}>
{!collapsed && (
<>
<a target='_blank' href='http://parseplatform.org/'>Open Source Hub</a>
<a target='_blank' href='https://github.com/parse-community'>GitHub</a>
<a target='_blank' href='http://docs.parseplatform.org/'>Docs</a>
</>
)}
<FooterMenu isCollapsed={!appsMenuOpen && collapsed} />
</div>
</div>
Expand Down
12 changes: 6 additions & 6 deletions src/components/Sidebar/Sidebar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -363,16 +363,16 @@ a.subitem {
content: '';
position: absolute;
bottom: -6px;
right: 11px;
right: 94px;
}

a {
@include NotoSansFont;
display: block;
height: 30px;
line-height: 31px;
height: 40px;
line-height: 41px;
font-size: 13px;
text-align: right;
text-align: center;
border-bottom: 1px solid #e0e0ea;
color: $mainTextColor;
padding-right: 8px;
Expand All @@ -381,12 +381,12 @@ a.subitem {
}

&:first-child {
border-radius: 5px 5px 0 0;
border-radius: 5px 5px 5px 5px;
}

&:last-child {
border-bottom: 0;
border-radius: 0 0 5px 5px;
border-radius: 5px 5px 5px 5px;
}

.emoji{
Expand Down