Releases: parse-community/Parse-SDK-JS
Releases · parse-community/Parse-SDK-JS
v1.10.0
- Restoring functionality with the latest RN.
- Adds Parse.Query.fromJSON to build queries
- Fixes issue affecting cached data with selected queries and skipped fields
- Improves string representations of Parse.Error
v1.9.2
v1.9.1
Fixes:
- Correct detection of Electron environments
- Allow custom specification of Content-Type on file uploads
- Ensure that
set()
calls ininitialize()
work in single-instance mode
Under the hood:
- All code once again passes Flow typechecking
- Cleaned up some of the CoreManager logic
v1.8.5
v1.8.4
v1.8.3
v1.8.2
- Fix React Native support for Live Queries.
- Ensure traverse is only called on objects
- Ensure current user's token is not lost on refetch
- Tests added for session preservation and array of string
v1.8.1
v1.8.0
New Features:
- Live Queries, allowing clients to subscribe to live updates from a
parse-server
instance Parse.Object
now has anewInstance()
method, which creates a duplicate copy of any object- Complete compatibility with ES6 promises, adding
.all()
,.race()
, and.catch()
- Custom Installation Ids can be passed to
User.signUp()
with theinstallationId
option, for servers that process signup requests from clients - Destroying the current user will also log you out
Also, test coverage of Promises was significantly increased, and a large suite of integration tests against parse-server
were introduced as part of the TravisCI build process.
v1.7.1
Changes:
- Force strings as inputs for username and password at login
- Adds an option to force https when retrieving the url for a Parse File:
file.url({ forceSecure: true })
- Run in browser compatibility mode in Electron
Fixes:
- Make sure old, deleted fields are removed when fetching from the server
- Ensure clone() works with readonly properties