-
-
Notifications
You must be signed in to change notification settings - Fork 596
feat: Add Parse.Query
option useMaintenanceKey
#2484
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
Conversation
🚀 Thanks for opening this pull request! |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## alpha #2484 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 64 64
Lines 6259 6268 +9
Branches 1466 1456 -10
=========================================
+ Hits 6259 6268 +9 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
How come all checks pass? Is this not part of the integration tests then? |
Just unit tests no integration. The server needs to be update to accept the payload. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks fine, just the conflicts....
@mtrezza Conflicts resolved |
useMaintenanceKey
to query optionsParse.Query
option useMaintenanceKey
# [6.1.0-alpha.2](6.1.0-alpha.1...6.1.0-alpha.2) (2025-03-10) ### Features * Add `Parse.Query` option `useMaintenanceKey` ([#2484](#2484)) ([2ead3f3](2ead3f3))
🎉 This change has been released in version 6.1.0-alpha.2 |
# [6.1.0](6.0.0...6.1.0) (2025-03-17) ### Features * Add `Parse.Query` option `useMaintenanceKey` ([#2484](#2484)) ([2ead3f3](2ead3f3)) * Allow `Parse.Object` field names to begin with underscore `_` to access internal fields of Parse Server ([#2475](#2475)) ([08e43ba](08e43ba)) * Publish TypeScript definitions ([#2491](#2491)) ([fc3e573](fc3e573))
🎉 This change has been released in version 6.1.0 |
Pull Request
Issue
The maintenanceKey has been introduced in Parse Server and can be used via REST API to access internal fields, but not via the Parse JS SDK.
Closes: #2392
Approach
Needs a server side update to work
useMasterKey
Tasks