Skip to content

Commit 7dd2626

Browse files
authored
feat: Add ParseObject.toJson() to create a JSON representation (#812)
1 parent e2d0e4e commit 7dd2626

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

packages/dart/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [3.1.8](https://github.com/parse-community/Parse-SDK-Flutter/compare/dart-3.1.7...dart-3.1.8) (2022-12-23)
2+
3+
### Features
4+
5+
* Add `ParseObject.toJson()` to create a JSON representation ([#616](https://github.com/parse-community/Parse-SDK-Flutter/issues/616))
6+
17
## [3.1.7](https://github.com/parse-community/Parse-SDK-Flutter/compare/dart-3.1.6...dart-3.1.7) (2022-12-22)
28

39
### Features

packages/dart/lib/src/base/parse_constants.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
part of flutter_parse_sdk;
22

33
// Library
4-
const String keySdkVersion = '3.1.7';
4+
const String keySdkVersion = '3.1.8';
55
const String keyLibraryName = 'Flutter Parse SDK';
66

77
// End Points

packages/dart/lib/src/objects/parse_base.dart

-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ abstract class ParseBase {
7070
}
7171

7272
/// Converts object to [String] in JSON format
73-
@protected
7473
Map<String, dynamic> toJson({
7574
bool full = false,
7675
bool forApiRQ = false,

packages/dart/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: parse_server_sdk
22
description: Dart plugin for Parse Server, (https://parseplatform.org), (https://back4app.com)
3-
version: 3.1.7
3+
version: 3.1.8
44
homepage: https://github.com/parse-community/Parse-SDK-Flutter
55

66
environment:

0 commit comments

Comments
 (0)