Releases: netreconlab/Parse-Swift
Releases · netreconlab/Parse-Swift
5.9.2
Fixes
5.9.2-alpha.1
What's Changed
Full Changelog: 5.9.1...5.9.2-alpha.1
5.9.1
Fixes
5.9.0
5.8.2
Fixes
5.8.1
Fixes
- There was an issue where Parse pointers were not sending includeKeys to the server (#133), thanks to @proj-sashido.
5.8.0
New features
- Add concrete types: ParseHookTrigger and ParseHookFunction to reduce code developers need to write. Deprecate triggerName in favor of trigger where possible. The SDK also yields for 0.5 second as oppose to 1 second, which can lead to faster app starts (#122), thanks to @cbaker6.
Fixes
- There was a problem when the developer did not implement merge() on a ParseObject and depended on the internal mergeAutomatically() to merge. If the developer used mergeAutomatically() indirectly for objects with different objectId's, the method allowed the merge. Now the method throws the proper error (#122), thanks to @cbaker6.
5.7.4
Fixes
5.7.3
Fixes
5.7.2
Fixes
- ParsePolygon encoding during a save and decoding resulted in (longitude, latitude) when it should be (latitude, longitude). If a developer used ParseSwift <= 5.7.1 to save/update ParsePolygon's, they will need to update the respective ParseObjects by swapping the latitude and longitude manually. Deprecated withinPolygon() query constraint for geoPoint() and polygonContains() for polygon() (#118), thanks to @cbaker6.