-
-
Notifications
You must be signed in to change notification settings - Fork 204
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
fix: Setting atomic operation on Parse Object returns operation instead of prospective value #860
Conversation
Thanks for opening this pull request!
|
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## master #860 +/- ##
===========================================
+ Coverage 26.71% 38.69% +11.98%
===========================================
Files 47 56 +9
Lines 2905 3277 +372
===========================================
+ Hits 776 1268 +492
+ Misses 2129 2009 -120
☔ View full report in Codecov by Sentry. |
…ving from Array while saving
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.
Maybe this will pass the dry run check. Added "Unreleased" instead of the release date to indicate that it's not an actual release.
@Nidal-Bakir In my understanding #867 is the only other breaking PR we need to merge to make the 5.0.0 release. @mbfakourii Would you agree? |
Yes |
Alright, CI passes, so we can merge this now? |
Sure |
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 good!
@parse-community/flutter-sdk-review Is this ready for merge? |
We are ready to release Dart 5.0.0 |
Alright, everything is good. lets move to the Flutter package |
Hello everyone! Firstly, I would like to express my gratitude to @Nidal-Bakir for the tremendous work done! On another note, I'm currently in the process of migrating to the latest release, and I've encountered two issues: While fetching objects from the database, their relations are automatically resolved. Although this can be a valuable feature, I have multiple bidirectional ties among objects, leading to a stack overflow exception. Is there a way to disable this feature? Could you provide me with a workaround or suggest a more suitable approach? The second problem pertains to ParseRelation. I'm experiencing an issue that has been present in previous versions as well. As far as I understand, when an object is fetched from the database, it brings along the reference of the relationship. However, when the relation is parsed, it is created as a normal Could you please assist me in resolving these concerns? Thank you! |
Hay @juriSacchetta, Thank you for your kind words I appreciate your feedback. Please open an issue with your bug. Thanks |
Really @Nidal-Bakir your work has been invaluable in refining such an important backend tool for Dart. Congratulations and may God continue to give you knowledge and strategy. |
If I understood your problem correctly @juriSacchetta automatically we only have complete data when it is a Pointer and we ask for it via includeObject. For objects in Relation fields we have to request the list separately via another manual query. |
Hello @Nidal-Bakir and @catalunha, Thank you for your responses. Upon further examination of my code, I have realized that the "stack overflow" error is caused by the usage of the Regarding the other problem, I will proceed to open an issue for it. Thank you once again for your assistance. |
From this version there is a bug causing error in server side when doing some queries: This is the error:
|
Please open an issue with your bug. |
New Pull Request Checklist
Issue Description
Closes: #843, #842, #834, #696
Approach
Create a new Class/DataType to handle any parse operation
Why does this PR fixes all these issues?
Well, they all suffer from the same bug (using Maps to store operations). Because every operation needs to be in a new object and the old way of using maps should be removed, keeping both and fixing them one by one could create unexpected behaviors because we would need to use both of them while fixing the bugs.
TODOs before merging