Releases: parse-community/Parse-SDK-JS
Releases · parse-community/Parse-SDK-JS
3.4.0-alpha.3
3.4.0
3.4.0-alpha.2
3.4.0-alpha.1
3.4.0-alpha.1 (2021-10-27)
Features
3.3.2-alpha.1
3.3.2-alpha.1 (2021-10-26)
Bug Fixes
3.3.1
3.3.1
Fixes
- Upgraded crypto-js dependency for compatibility with webpack in Parse Dashboard
3.3.0
3.2.0
Breaking Changes
- Remove deletion of Anonymous User on logout (#1324)
See https://community.parseplatform.org/t/anonymous-user-destroyed-on-logout/1425
Improvements
- Allow multiple classNames for
Parse.Object.registerSubclass
(#1315)
const classNames = ['ClassOne', 'ClassTwo', 'ClassThree'];
for (const className of classNames) {
Parse.Object.registerSubclass(className, CustomClass);
}
Fixes
- Fixes build for WeChat WeApp, to reduce package size, see issue/#1331
3.1.0
Breaking Changes
Parse.Push.send
will now return the pushStatusId instead of { result: true }
Features
- Add Server Health Check
Parse.getServerHealth()
(#1307) - Allow saving with custom objectId
Parse.allowCustomObjectId = true
(#1309) Parse.Push.send
now returns pushStatusId (#1302)- Add
Parse.Push.getPushStatus
(#1302)
Improvements
Fixes
3.0.0
Breaking Changes
For security purposes, logIn will default to POST
instead of GET
method. (#1284)
If you need to use GET
set the usePost
option to false.
Parse.User.logIn('username', 'password', { usePost: false })
Features
- Add EventuallyQueue API, object.saveEventually, object.destroyEventually (#1291)
- Add Parse.CLP Object to control ClassLevelPermissions (#1145)
- Add option
{ json: true }
on queries (#1294) - Add IndexedDB Storage Controller (#1297)
- Add Parse.User.isCurrentAsync() for async storage (#1298)
Improvements
- Add useMasterKey option to Parse.File.destroy() (#1285)
- User management on React-Native (#1298)
- Parse.Schema.addField accepts Pointer and Relation types (#1281)
Fixes