Skip to content

Commit

Permalink
fix: ParseObject.fromJson does not send proper payload to server (#818
Browse files Browse the repository at this point in the history
)
  • Loading branch information
mbfakourii authored Feb 1, 2023
1 parent 2afa2ad commit 664689c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
6 changes: 6 additions & 0 deletions packages/dart/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [3.1.12](https://github.com/parse-community/Parse-SDK-Flutter/compare/dart-3.1.11...dart-3.1.12) (2023-02-01)

### Bug Fixes

* `ParseObject.fromJson` does not send proper payload to server ([#688](https://github.com/parse-community/Parse-SDK-Flutter/issues/688))

## [3.1.11](https://github.com/parse-community/Parse-SDK-Flutter/compare/dart-3.1.10...dart-3.1.11) (2023-01-21)

### Features
Expand Down
2 changes: 1 addition & 1 deletion packages/dart/lib/src/base/parse_constants.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
part of flutter_parse_sdk;

// Library
const String keySdkVersion = '3.1.11';
const String keySdkVersion = '3.1.12';
const String keyLibraryName = 'Flutter Parse SDK';

// End Points
Expand Down
1 change: 1 addition & 0 deletions packages/dart/lib/src/objects/parse_base.dart
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ abstract class ParseBase {
_getObjectData()[keyVarAcl] = ParseACL().fromJson(value);
} else {
_getObjectData()[key] = parseDecode(value);
_unsavedChanges[key] = _getObjectData()[key];
}
});

Expand Down
2 changes: 1 addition & 1 deletion packages/dart/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: parse_server_sdk
description: Dart plugin for Parse Server, (https://parseplatform.org), (https://back4app.com)
version: 3.1.11
version: 3.1.12
homepage: https://github.com/parse-community/Parse-SDK-Flutter

environment:
Expand Down

0 comments on commit 664689c

Please sign in to comment.