Skip to content

dart-5.0.0

Compare
Choose a tag to compare
@mtrezza mtrezza released this 13 May 21:55
· 63 commits to master since this release
72b11a1

5.0.0 (2023-05-14)

BREAKING CHANGES

  • The minimum required Dart SDK version is 2.18.0. (#867)
  • Performing an atomic update on a key of a Parse Object now returns the prospective value, instead of a map of the operation that will be sent to the server; for example for a Parse Object obj with a key count, the atomic update obj.setIncrement('count', 1); previously returned the value {__op: Increment, amount: 1} but now returns the prospective result of the operation, which would be 1 if the key's previous value was 0. (#860)

Bug Fixes

  • Incorrect Dart and Flutter SDKs compatibility range (#867)
  • Setting atomic operation on Parse Object returns operation instead of prospective value (#860)