6.0.0-alpha.1
Pre-release
Pre-release
·
11 commits
to alpha
since this release
6.0.0-alpha.1 (2025-02-16)
Bug Fixes
BREAKING CHANGES
- Removes the error handler option
error
fromParse.Object.set
,Parse.Object.setACL
,Parse.Object.unset
,Parse.Role.setName
and instead throws on validation error. Previously, if theerror
option was set, the handler was invoked if a validation error occurred onParse.Object.set
, and if no handler was set, an error was thrown onParse.Object.save
. The new behavior is that an error is thrown atParse.Object.set
. For example, instead of usingParse.Object.set(key, value, { error: ... })
wrapParse.Object.set(key, value)
into atry/catch
block. (52ddaee)