Skip to content

Commit b940f51

Browse files
mtrezzadavimacedo
authored andcommitted
Fix: Feature "masterkey parameters" requires Parse Server >= 3.9.0 (#1281)
* fixed required pare server version for feature "masterkey parameters" * changed to parse server 3.9.0 * changelog
1 parent 10b8f87 commit b940f51

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
[Full Changelog](https://github.com/parse-community/parse-dashboard/compare/2.0.2...master)
55

66
* _Contributing to this repo? Add info about your change here to be included in next release_
7+
* Fix: Feature "masterkey parameters" requires Parse Server >= 3.9.0
78

89
### 2.0.2
910
[Full Changelog](https://github.com/parse-community/parse-dashboard/compare/2.0.1...2.0.2)

src/dashboard/Data/Config/ConfigDialog.react.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -236,10 +236,10 @@ export default class ConfigDialog extends React.Component {
236236

237237
{
238238
/*
239-
Add `Requires master key` field if parse-server version >= 3.8.0,
239+
Add `Requires master key` field if parse-server version >= 3.9.0,
240240
that is the minimum version that supports this feature.
241241
*/
242-
semver.valid(this.props.parseServerVersion) && semver.gte(this.props.parseServerVersion, '3.8.0')
242+
semver.valid(this.props.parseServerVersion) && semver.gte(this.props.parseServerVersion, '3.9.0')
243243
? <Field
244244
label={
245245
<Label

0 commit comments

Comments
 (0)