Skip to content

Commit f7a7aa9

Browse files
authored
Release/1.0.18 (#153)
* Added repo example * Corrected repo example * ParseResponse accepts list results and count * Private/test (#140) * ParseResponse accepts list results and count * Corrected toPointer logic * Corrected date issue * Code clean * Code clean * Private/test (#141) * ParseResponse accepts list results and count * Corrected toPointer logic * Corrected date issue * Code clean * Code clean * Code clean * Fixed delete * Fixed ParseUser setting ParseObject extensions * Fix lost lat, lng data (#143) Update so SubClass of ParseObject uses internal Map for value storage. Changes in v1.0.17 breaks ParseGeoPoint. This is tested and seems to fix the issue. * Deprecated result * Corrected logic on response * ParseFile fix * Removed protected * Testing ParseUser conversion * Fixed ParseFile code saving * ParseInstallation fix * ParseUser supporting custom user objects * Add Support to Relational Queries / Counting Objects (#146) * Add Support to Relational Queries Add Support to Relational Queries * Add Support to Counting Objects Add Support to Counting Objects https://docs.parseplatform.org/rest/guide/#counting-objects * Update the documentation with Relational Queries and Count Objects (#147) * Add Support to Relational Queries Add Support to Relational Queries * Add Support to Counting Objects Add Support to Counting Objects https://docs.parseplatform.org/rest/guide/#counting-objects * Update README.md Update documentation with example for Relational Queries and Counting Objects * Update README.md * Update README.md - Small typo (#148) * Add Support to Relational Queries Add Support to Relational Queries * Add Support to Counting Objects Add Support to Counting Objects https://docs.parseplatform.org/rest/guide/#counting-objects * Update README.md Update documentation with example for Relational Queries and Counting Objects * Update README.md * Update README.md * BugFix LiveQuery - update readme.md (#150) * Add Support to Relational Queries Add Support to Relational Queries * Add Support to Counting Objects Add Support to Counting Objects https://docs.parseplatform.org/rest/guide/#counting-objects * Update README.md Update documentation with example for Relational Queries and Counting Objects * Update README.md * Update README.md * BugFix LiveQuery BugFix LiveQuery * Bugfix LiveQuery Bugfix LiveQuery * Update README.md Reorganization of sessions and inclusion of documentation on LiveQuery * Update README.md * Update README.md * Bugfix LiveQuery Bugfix LiveQuery * Changed to make optional clientKey Changed to make optional clientKey * Bugfix parseEncode function with ParseObjects in List (#151) * Add Support to Relational Queries Add Support to Relational Queries * Add Support to Counting Objects Add Support to Counting Objects https://docs.parseplatform.org/rest/guide/#counting-objects * Update README.md Update documentation with example for Relational Queries and Counting Objects * Update README.md * Update README.md * BugFix LiveQuery BugFix LiveQuery * Bugfix LiveQuery Bugfix LiveQuery * Update README.md Reorganization of sessions and inclusion of documentation on LiveQuery * Update README.md * Update README.md * Bugfix LiveQuery Bugfix LiveQuery * Changed to make optional clientKey Changed to make optional clientKey * Bugfix parseEncode function with ParseObjects in List Bugfix parseEncode function with ParseObjects in List * 1.0.17 - Cody tidy * ParseResponse accepts list results and count * Release 1.0.18 created * save fix
1 parent 5e33485 commit f7a7aa9

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1-
## 1.0.17
1+
## 1.0.18
2+
Bug fix
23

4+
## 1.0.17
5+
LiveQuery fix
6+
Bug fixes
37

48
## 1.0.16
59
Bug fixes

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Want to get involved? Join our Slack channel and help out! (http://flutter-parse
1313
To install, either add to your pubspec.yaml
1414
```yml
1515
dependencies:
16-
parse_server_sdk: ^1.0.17
16+
parse_server_sdk: ^1.0.18
1717
```
1818
or clone this repository and add to your project. As this is an early development with multiple contributors, it is probably best to download/clone and keep updating as an when a new feature is added.
1919

lib/src/base/parse_constants.dart

Lines changed: 1 addition & 1 deletion
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 = '1.0.17';
4+
const String keySdkVersion = '1.0.18';
55
const String keyLibraryName = 'Flutter Parse SDK';
66

77
// End Points

lib/src/objects/parse_object.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ class ParseObject extends ParseBase implements ParseCloneable {
8989
} else {
9090
try {
9191
final Uri url = getSanitisedUri(_client, '$_path/$objectId');
92-
final String body = json.encode(toJson(forApiRQ: true));
92+
final String body = json.encode(toJson());
9393
final Response result = await _client.put(url, body: body);
9494
return handleResponse<ParseObject>(
9595
this, result, ParseApiRQ.save, _debug, className);

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: parse_server_sdk
22
description: Flutter plugin for Parse Server, (https://parseplatform.org), (https://back4app.com)
3-
version: 1.0.16
3+
version: 1.0.18
44
homepage: https://github.com/phillwiggins/flutter_parse_sdk
55
author: PhillWiggins <[email protected]>
66

0 commit comments

Comments
 (0)