Parse-SDK-JS: Parse.User.save() does not work in parse@3.5.0
New Issue Checklist
- I am not disclosing a vulnerability.
- I am not just asking a question.
- I have searched through existing issues.
- I can reproduce the issue with the version 4.5.0 of Parse Server and the latest version of Parse JS SDK.
Issue Description
Parse.User.save() does not work in parse@3.5.0
Steps to reproduce
let user = new Parse.User(); user.set(“username”, “xx”); user.set(“email”, “xx@xx.xx”); user.set(“password”, “xx”); saveduser = await user.save();
Actual Outcome
It is saved/updated in the local session but not in the backend/server.
Expected Outcome
Update the data in the backend/server.
Environment
Server
- Parse Server version:
4.5.0 - Local or remote host (AWS, Azure, Google Cloud, Heroku, Digital Ocean, etc):
Back4app
Client
- Parse JS SDK version:
3.5.0
About this issue
- Original URL
- State: closed
- Created 2 years ago
- Reactions: 1
- Comments: 19 (11 by maintainers)
Just confirmed using
3.5.1-alpha.2resolved theParse.User.signUpproblem I was having.Thank you very much!
Thank you for the reply. I am confident I was using
3.5.1-alpha.2Anyways. The issue is now gone when using
4.0.0.alpha.3. Thanks again.I confirm that the issue is fixed with parse@3.5.1-alpha.2.
This should be fixed with https://github.com/parse-community/Parse-SDK-JS/releases/tag/3.5.1-alpha.2, could you try it out and let us know?