-
-
Couldn't load subscription status.
- Fork 1.4k
feat: Add Parse Server version compatibility detection #3004
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
feat: Add Parse Server version compatibility detection #3004
Conversation
|
🚀 Thanks for opening this pull request! We appreciate your effort in improving the project. Please let us know once your pull request is ready for review. |
|
Caution Review failedThe pull request is closed. 📝 WalkthroughWalkthroughAdded a Parse Server version compatibility check (driven by package.json) that attaches warnings to app serverInfo; updated UI to surface version warnings in app cards; reworked README compatibility table and added the supportedParseServerVersion field to package.json; related styling/layout adjusted. Changes
Sequence Diagram(s)sequenceDiagram
autonumber
participant UI as Dashboard UI
participant AppSvc as App Loader
participant Server as Parse Server
participant Semver as semver + package.json
UI->>AppSvc: load apps list
AppSvc->>Server: fetch serverInfo for each app
Server-->>AppSvc: serverInfo (includes parseServerVersion)
AppSvc->>Semver: read supportedParseServerVersion & validate(serverVersion)
alt version satisfies range
Semver-->>AppSvc: ok
AppSvc-->>UI: attach serverInfo (no warning)
else version does NOT satisfy
Semver-->>AppSvc: incompatible
AppSvc-->>UI: attach serverInfo with versionWarning
UI-->>UI: render .versionWarning in AppCard
end
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~20 minutes Potential attention points:
Pre-merge checks and finishing touches❌ Failed checks (2 warnings, 1 inconclusive)
📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Pro 📒 Files selected for processing (5)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
✅ Snyk checks have passed. No issues have been found so far.
💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse. |
|
BREAKING CHANGE: This increases the required version to Parse Server 7. |
Uffizzi Ephemeral Environment
|
# [7.6.0-alpha.13](7.6.0-alpha.12...7.6.0-alpha.13) (2025-10-25) ### Features * Add Parse Server version compatibility detection ([#3004](#3004)) ([9a7a60f](9a7a60f))
|
🎉 This change has been released in version 7.6.0-alpha.13 |
New Pull Request Checklist
Issue Description
Upgrade of Parse JS SDK in #3003 increases required minimum version to Parse Server 7. The PR wasn't merged as breaking change, as planned in #2749.
This adds a feature to specify the compatible Parse Server versions in package.json. If a server is unsupported, a warning message is shown:
Approach
Add server compat table.
Summary by CodeRabbit