Skip to content

Commit 397ed9a

Browse files
authored
build: release beta (#2337)
2 parents 98847bb + 9042401 commit 397ed9a

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

changelogs/CHANGELOG_alpha.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# [5.0.0-alpha.8](https://github.com/ParsePlatform/parse-dashboard/compare/5.0.0-alpha.7...5.0.0-alpha.8) (2022-10-24)
2+
3+
4+
### Bug Fixes
5+
6+
* login fails with error `req.session.regenerate is not a function` ([#2196](https://github.com/ParsePlatform/parse-dashboard/issues/2196)) ([a71848c](https://github.com/ParsePlatform/parse-dashboard/commit/a71848ce44fa19e579f9731bab50a7244ab89b11))
7+
8+
### Features
9+
10+
* remove limitation to refresh Cloud Jobs list only after 30 seconds ([#2332](https://github.com/ParsePlatform/parse-dashboard/issues/2332)) ([ad1132f](https://github.com/ParsePlatform/parse-dashboard/commit/ad1132fb13e854a030e769fdf7689f35d363031d))
11+
112
# [5.0.0-alpha.7](https://github.com/ParsePlatform/parse-dashboard/compare/5.0.0-alpha.6...5.0.0-alpha.7) (2022-10-17)
213

314

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "parse-dashboard",
3-
"version": "5.0.0",
3+
"version": "5.0.0-alpha.8",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/ParsePlatform/parse-dashboard"

src/lib/ParseApp.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -532,10 +532,6 @@ export default class ParseApp {
532532
}
533533

534534
getJobStatus() {
535-
// Cache it for a 30s
536-
if (new Date() - this.jobStatus.lastFetched < 30000) {
537-
return Promise.resolve(this.jobStatus.status);
538-
}
539535
let query = new Parse.Query('_JobStatus');
540536
query.descending('createdAt');
541537
return query.find({ useMasterKey: true }).then((status) => {

0 commit comments

Comments
 (0)