Releases: parse-community/parse-php-sdk
2.4.0
2.3.2
2.3.1
2.3.0
2.2.0
2.1.0
2.0.0
1.6.0
Release 1.5.1
About this Release
This point release is to fix 1.5.0 which was released incorrectly.
Version 1.5.1 is reverse compatible with 1.4.0, so you're good for upgrading 👍 . Just keep in mind that some new features may not be available depending on your version of parse server.
What's new?
- Avoid session fixation by regenerating session id on user promotion (#414)
- Enable login with POST (#430)
- Properly handle null query response (#425)
- Fix queries equalTo with null values (#406)
- Add sort option to GeoQueries (#424)
- Add encode option to ParseQuery:find (#423)
- Add batchSize to saveAll / destroyAll (#422)
- Add includeAll to query (#421)
- Add And / Nor query (#419)
- Add 'containedBy' query (#418)
- Add 'containsAllStartingWith' query (#417)
- Remove anonymous auth data from User table when user registers. Match other SDK behavior (#417)
- Fix bug in mime type guessing due to case mishandling (#399)
- Use registered subclass when creating a ParseUser (#394)
Release 1.4.0
About this Release
Release 1.4.0 contains quite a few new features that we hope you'll enjoy! Please keep in mind that relative time queries, aggregate queries and index management are only available in later versions of parse server (versions 2.6.5 and above, and versions 2.7.0 and above for index management). The other features present here have been available in parse server for some time and have now been hooked up into this sdk.
Version 1.4.0 is reverse compatible with 1.3.0, so you're good for upgrading 👍 . Just keep in mind that some new features may not be available depending on your version of parse server. You can check your version of parse server from this sdk using ParseServerInfo::getVersion
to check if you don't know for sure (version checking is compatible with older versions of parse server).
All new features have been added into the Table of Contents in our README for your reading convenience.
What's new?
- Fixes encode/decode method descriptors
- Adds Relative Time Queries (#360)
- Adds Server Info (#361)
- README and code cleanup, adds CHANGELOG and CODE_OF_CONDUCT
- Adds Purge & Polygon to ParseSchema (#365)
- Adds Parse Server Health Check (#366)
- Adds the ability to upgrade to a revocable session (#368)
- Adds ability to Request Verification Emails (#369)
- Adds the ability to set/save in
ParseConfig
(#371) - Adds
ParseLogs
(#370) - Adds
ParseAudience
(#372) - Adds jobs to
ParseCloud
(#373) - Adds support for aggregate queries (#355) (thanks to Diamond Lewis)
- Fix npm license warning (thanks to Arthur Cinader)
- Updates parse-server-test dependency to 1.3.6
- Support for managing indexes via ParseSchema (#357) (thanks to Diamond Lewis)
- Slight test adjustments