-
-
Notifications
You must be signed in to change notification settings - Fork 596
fix: Duplicate pending operations on nested fields #2162
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
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Thanks for opening this pull request! |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## alpha #2162 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 64 64
Lines 6360 6364 +4
Branches 1534 1510 -24
=========================================
+ Hits 6360 6364 +4 ☔ View full report in Codecov by Sentry. |
parseplatformorg
pushed a commit
that referenced
this pull request
Jun 7, 2024
# [5.2.0-alpha.2](5.2.0-alpha.1...5.2.0-alpha.2) (2024-06-07) ### Bug Fixes * Duplicate pending operations on nested fields ([#2162](#2162)) ([df6df7c](df6df7c))
🎉 This change has been released in version 5.2.0-alpha.2 |
parseplatformorg
pushed a commit
that referenced
this pull request
Jun 24, 2024
# [5.2.0-beta.1](5.1.0...5.2.0-beta.1) (2024-06-24) ### Bug Fixes * `LiveQueryClient.resubscribe` with Parse Server 7 causes many open connections ([#2184](#2184)) ([71b4d17](71b4d17)) * `Parse.Installation` not working when installation is deleted on server ([#2126](#2126)) ([22360b4](22360b4)) * Duplicate pending operations on nested fields ([#2162](#2162)) ([df6df7c](df6df7c)) ### Features * Support dot notation on array fields ([#2120](#2120)) ([25ec684](25ec684))
🎉 This change has been released in version 5.2.0-beta.1 |
parseplatformorg
pushed a commit
that referenced
this pull request
Jun 29, 2024
# [5.2.0](5.1.0...5.2.0) (2024-06-29) ### Bug Fixes * `LiveQueryClient.resubscribe` with Parse Server 7 causes many open connections ([#2184](#2184)) ([71b4d17](71b4d17)) * `Parse.Installation` not working when installation is deleted on server ([#2126](#2126)) ([22360b4](22360b4)) * Dot notation on JSON arrays doesn't work on `PushStatus` offset fields ([#2194](#2194)) ([e0eb6f0](e0eb6f0)) * Duplicate pending operations on nested fields ([#2162](#2162)) ([df6df7c](df6df7c)) ### Features * Support dot notation on array fields ([#2120](#2120)) ([25ec684](25ec684))
🎉 This change has been released in version 5.2.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
state:released
Released as stable version
state:released-alpha
Released as alpha version
state:released-beta
Released as beta version
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Pull Request
Issue
#1453 Introduced a bug that effected all fields not just nested fields. This results in breaking cloud code and prevents the latest SDK version from merging with the server.
Closes: parse-community/parse-server#9131
Approach
Revert changes in #1453 and properly handle pending operations on nested fields only as the are handled by
get attributes
.Tasks