-
-
Notifications
You must be signed in to change notification settings - Fork 213
Release V3.1.0 #650
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
Release V3.1.0 #650
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
How to use the ParseUser.forQuery() function
ParseCoreData is only initialized by Parse. Parse sets default values for debug and autoSendSessionId So we can just pipe them down to ParseCoreData
The class members are only set in the init function and the init function is not called at a later point in time. ==> Each variable, if it is not set, is null anyway
Should use late keyword
It is always null when executing init
Should use late keyword
this should break nothing and instead fix forced not-null casts on null objects
this makes the code easier to maintain
this makes the code easier to maintain
this should break nothing and instead fix forced not-null casts on null objects
this should break nothing and instead remove forced not-null casts on null objects
this should break nothing and instead remove forced not-null casts on null objects
I think those where missed when splitting the package.
This fixes a bug where a "Null check operator used on a null value"-error
I've broken this part while removing the not-null casts. My second attempt works :-)
LiveList/LiveQuery nullsafety
…elation.getQuery - New ParseQuery method: whereWithinPolygon - Bugfix ParseQuery methods: whereContainsWholeWord, whereEndsWith, - Bugfix ParseRelation.getQuery() - ParseGeopoint: value validation - Updated Dependencies version in pubspec.yaml
Documentation update: README and CHANGELOG
New method for ParseQuery / Bugfix ParseQuery methods / Bugfix ParseRelation.getQuery
Update dependencies in pubspec.yaml for Release Version
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Bug fixes
General improvements
Updated dependencies