Releases: parse-community/Parse-SDK-Flutter
Releases · parse-community/Parse-SDK-Flutter
flutter-5.0.0
5.0.0 (2023-05-14)
BREAKING CHANGES
- The minimum required Dart SDK version is 2.18.0. (#867)
- Upgrades the dependency
parse_server_sdk
to 5.x.x
. (#868)
- The deprecated parameter
vsync
from AnimatedSize
is removed. (#864)
Features
- Upgrade
parse_server_sdk
to 5.x.x
(#868)
Bug Fixes
- Incorrect Dart and Flutter SDKs compatibility range (#867)
- Remove deprecated parameter
vsync
from AnimatedSize
(#864)
dart-5.1.0
5.1.0 (2023-05-14)
Features
- Downgrade collection dependency to ^1.16.0 for compatibility with Flutter >=3.3 (#880)
dart-5.0.0
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)
dart-4.0.2
4.0.2 (2023-03-23)
Bug Fixes
- Attempt to save
ParseObject
even if its nested ParseObject
failed to save (#859)
dart-4.0.1
4.0.1 (2023-03-20)
Bug Fixes
- Unhandled exception when saving a
ParseObject
but its nested object fails to save (#858)
flutter-4.0.0
4.0.0 (2023-03-19)
BREAKING CHANGES
- The source file name of the Flutter package has changed; to import the Flutter package use
parse_server_sdk_flutter.dart
instead of parse_server_sdk.dart
(#846)
- Dependencies are upgraded to
parse_server_sdk
4.x, dio
5.x, connectivity_plus
3.x and package_info_plus
3.x (#844)
Features
- Rename Flutter package source file to
parse_server_sdk_flutter.dart
(#846)
- Upgrade various dependencies and fix warnings in Flutter package (#844)
dart-4.0.0
4.0.0 (2023-03-07)
BREAKING CHANGES
- Upgrades to dio 5.x (#824)
Feature
- Upgrade various dependencies and fix warnings (#824)
dart-3.1.15
3.1.15 (2023-02-28)
Bug Fixes
- Updating and deleting a ParseObject sends requests even if object ID is null (#829)
dart-3.1.14
3.1.14 (2023-02-26)
Bug Fixes
- Dio error object holds a reference to null values (#774)
dart-3.1.13
3.1.13 (2023-02-15)
Bug Fixes
ParseUser.save
fails when user is logged in (#819)