Skip to content

Release/1.0.18 #153

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 28 commits into from
Apr 14, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
dd90d3c
Added repo example
phillwiggins Mar 24, 2019
f36885f
Corrected repo example
phillwiggins Mar 25, 2019
2be1e1b
ParseResponse accepts list results and count
phillwiggins Mar 26, 2019
2d6bb3a
Private/test (#140)
phillwiggins Mar 28, 2019
0513df2
Private/test (#141)
phillwiggins Mar 30, 2019
45f4f53
Fixed delete
phillwiggins Mar 30, 2019
5fd3b13
Fixed ParseUser setting ParseObject extensions
Apr 1, 2019
71306be
Merge remote-tracking branch 'origin/release/1.0.17' into release/1.0.17
Apr 1, 2019
c2d34a0
Fix lost lat, lng data (#143)
danibjor Apr 1, 2019
e0ecfa5
Merge remote-tracking branch 'origin/release/1.0.17' into release/1.0.17
Apr 2, 2019
c1fda83
Deprecated result
Apr 2, 2019
07bdae4
Corrected logic on response
Apr 2, 2019
4a2756f
ParseFile fix
phillwiggins Apr 2, 2019
2ee4880
Removed protected
phillwiggins Apr 2, 2019
f166bd5
Testing ParseUser conversion
phillwiggins Apr 4, 2019
16a9fbf
Fixed ParseFile code saving
Apr 5, 2019
52de117
ParseInstallation fix
Apr 5, 2019
9c08776
ParseUser supporting custom user objects
phillwiggins Apr 5, 2019
012539b
Add Support to Relational Queries / Counting Objects (#146)
RodrigoSMarques Apr 6, 2019
8a0c334
Update the documentation with Relational Queries and Count Objects (#…
RodrigoSMarques Apr 6, 2019
efe937e
Update README.md - Small typo (#148)
RodrigoSMarques Apr 6, 2019
4c0c56d
BugFix LiveQuery - update readme.md (#150)
RodrigoSMarques Apr 13, 2019
6f9e2fc
Bugfix parseEncode function with ParseObjects in List (#151)
RodrigoSMarques Apr 14, 2019
99ac1ad
1.0.17 - Cody tidy
phillwiggins Apr 14, 2019
20f4ed4
ParseResponse accepts list results and count
phillwiggins Apr 14, 2019
55aeae2
Release 1.0.18 created
phillwiggins Apr 14, 2019
9ef1217
save fix
phillwiggins Apr 14, 2019
4b38be1
Merge branch 'master' into release/1.0.18
phillwiggins Apr 14, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## 1.0.17
## 1.0.18
Bug fix

## 1.0.17
LiveQuery fix
Bug fixes

## 1.0.16
Bug fixes
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Want to get involved? Join our Slack channel and help out! (http://flutter-parse
To install, either add to your pubspec.yaml
```yml
dependencies:
parse_server_sdk: ^1.0.17
parse_server_sdk: ^1.0.18
```
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.

Expand Down
2 changes: 1 addition & 1 deletion 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 = '1.0.17';
const String keySdkVersion = '1.0.18';
const String keyLibraryName = 'Flutter Parse SDK';

// End Points
Expand Down
2 changes: 1 addition & 1 deletion lib/src/objects/parse_object.dart
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class ParseObject extends ParseBase implements ParseCloneable {
} else {
try {
final Uri url = getSanitisedUri(_client, '$_path/$objectId');
final String body = json.encode(toJson(forApiRQ: true));
final String body = json.encode(toJson());
final Response result = await _client.put(url, body: body);
return handleResponse<ParseObject>(
this, result, ParseApiRQ.save, _debug, className);
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: parse_server_sdk
description: Flutter plugin for Parse Server, (https://parseplatform.org), (https://back4app.com)
version: 1.0.16
version: 1.0.18
homepage: https://github.com/phillwiggins/flutter_parse_sdk
author: PhillWiggins <[email protected]>

Expand Down