Skip to content

Release/1.0.25 #298

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 19 commits into from
Jan 11, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
5fce651
Release/1.0.25 - Updated versions
phillwiggins Aug 23, 2019
eae57f5
Release/1.0.25 - ParseFile change
phillwiggins Aug 24, 2019
0f64a3d
Fix whereArrayContainsAll (#260)
RodrigoSMarques Aug 27, 2019
880a4aa
Bug fix: 'set' method should force update by default. If someone chan…
yulingtianxia Aug 29, 2019
069048d
Fix About Retrieving Sessions (#263)
hellokidder Sep 2, 2019
31d874b
ParseObject.update/ParseInstallation.create/ParseSession.installation…
hellokidder Sep 3, 2019
3b11ac9
Refactored ParseUser.logout - resetting session id and deleting local…
hyperrecursive Sep 11, 2019
110b3e2
Update LICENSE (#274)
yulingtianxia Sep 23, 2019
35d4f06
Fixed permission for ACL's getWriteAccess (#277)
qwertyway Sep 23, 2019
859204a
Optimize LiveQuery (#278)
yulingtianxia Sep 26, 2019
44e30f6
reconnect when resume. (#279)
yulingtianxia Sep 26, 2019
e7dd150
Setting installationId in _Session object during sign-up (#293)
mregandla Dec 14, 2019
e58a7a9
Release/1.0.25 - Add ParseUser update method
phillwiggins Dec 16, 2019
9ad18ce
Merge remote-tracking branch 'origin/release/1.0.25' into release/1.0.25
phillwiggins Dec 16, 2019
a2cc66c
Release/1.0.25 - Add ParseUser update method
phillwiggins Dec 16, 2019
ac9ff8a
example app migration to use Sembast v2 (#294)
mregandla Dec 17, 2019
1f42d5c
cleanup and fixed a broken code (#295)
mregandla Dec 22, 2019
989839d
Release/1.0.25 - Update dependencies
phillwiggins Jan 11, 2020
7bb691b
Merge branch 'master' into release/1.0.25
phillwiggins Jan 11, 2020
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
19 changes: 19 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,28 @@
pubspec.lock
.example/lib/application_constants.dart

# IntelliJ related
*.iml
*.ipr
*.iws
.idea/

# Android related
**/android/**/gradle-wrapper.jar
**/android/.gradle
**/android/captures/
**/android/gradlew
**/android/gradlew.bat
**/android/local.properties
**/android/**/GeneratedPluginRegistrant.java

**/ios/Flutter/flutter_export_environment.sh

build/
.idea
example/ios/Frameworks/
example/lib/ui/

.flutter-plugins-dependencies

.vscode/
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
## 1.0.25

## 1.0.24
Fixed lint

## 1.0.23
Fixed LiveQuery
Expand Down
32 changes: 26 additions & 6 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,11 +1,31 @@
Copyright 2019 Phill Wiggins
BSD 3-Clause License

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Copyright (c) 2019, Phill Wiggins.
All rights reserved.

1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.

3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3. Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

=======
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.24
parse_server_sdk: ^1.0.25
```
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
29 changes: 0 additions & 29 deletions example/.idea/codeStyles/Project.xml

This file was deleted.

19 changes: 0 additions & 19 deletions example/.idea/libraries/Dart_SDK.xml

This file was deleted.

9 changes: 0 additions & 9 deletions example/.idea/libraries/Flutter_Plugins.xml

This file was deleted.

9 changes: 0 additions & 9 deletions example/.idea/libraries/Flutter_for_Android.xml

This file was deleted.

28 changes: 0 additions & 28 deletions example/.idea/misc.xml

This file was deleted.

9 changes: 0 additions & 9 deletions example/.idea/modules.xml

This file was deleted.

6 changes: 0 additions & 6 deletions example/.idea/runConfigurations/main_dart.xml

This file was deleted.

Loading