Releases: parse-community/Parse-SDK-JS
Releases · parse-community/Parse-SDK-JS
3.4.1
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