Skip to content

Commit add619e

Browse files
phillwigginsyulingtianxiahellokidderhyperrecursiveqwertyway
authored
Release/1.0.25 (#298)
* Release/1.0.25 - Updated versions * Release/1.0.25 - ParseFile change * Fix whereArrayContainsAll (#260) * Bug fix: 'set' method should force update by default. If someone change a property of object from 'get' method and then 'set' it in ParseObject, it should be dirty. (#262) * Fix About Retrieving Sessions (#263) * ParseObject.update/ParseInstallation.create/ParseSession.installationId (#264) * Fix About Retrieving Sessions * parseObject.update/ParseInstallation.put/ParseSession.installation * Refactored ParseUser.logout - resetting session id and deleting local data are now separate functions (#270) * Update LICENSE (#274) * Update LICENSE * Update LICENSE * Update LICENSE * Fixed permission for ACL's getWriteAccess (#277) * Update LICENSE * Fixed permission for ACL's getWriteAccess Fixes #275 * Optimize LiveQuery (#278) * reconsitution * reconnect when network state changed. * reconnect when resume. (#279) * Setting installationId in _Session object during sign-up (#293) Excellent work! * Release/1.0.25 - Add ParseUser update method * Release/1.0.25 - Add ParseUser update method * example app migration to use Sembast v2 (#294) * Setting installationId in _Session object during sign-up * example app migration to use Sembast v2 * cleanup and fixed a broken code (#295) * Setting installationId in _Session object during sign-up * example app migration to use Sembast v2 * updated .gitignore and cleaned unnecessary files in the repo * fixed broken code after rebase * updated .gitignore * Release/1.0.25 - Update dependencies Co-authored-by: 杨萧玉 <[email protected]> Co-authored-by: kidder <[email protected]> Co-authored-by: matskosan <[email protected]> Co-authored-by: Artem Demyanov <[email protected]> Co-authored-by: mregandla <[email protected]>
1 parent d6aad8a commit add619e

39 files changed

+510
-814
lines changed

.gitignore

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,28 @@
66
pubspec.lock
77
.example/lib/application_constants.dart
88

9+
# IntelliJ related
10+
*.iml
11+
*.ipr
12+
*.iws
13+
.idea/
14+
15+
# Android related
16+
**/android/**/gradle-wrapper.jar
17+
**/android/.gradle
18+
**/android/captures/
19+
**/android/gradlew
20+
**/android/gradlew.bat
21+
**/android/local.properties
22+
**/android/**/GeneratedPluginRegistrant.java
23+
24+
**/ios/Flutter/flutter_export_environment.sh
25+
926
build/
1027
.idea
1128
example/ios/Frameworks/
1229
example/lib/ui/
1330

31+
.flutter-plugins-dependencies
32+
1433
.vscode/

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1+
## 1.0.25
2+
13
## 1.0.24
4+
Fixed lint
25

36
## 1.0.23
47
Fixed LiveQuery

LICENSE

Lines changed: 26 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,31 @@
1-
Copyright 2019 Phill Wiggins
1+
BSD 3-Clause License
22

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

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

7-
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.
9+
1. Redistributions of source code must retain the above copyright notice, this
10+
list of conditions and the following disclaimer.
811

9-
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.
12+
2. Redistributions in binary form must reproduce the above copyright notice,
13+
this list of conditions and the following disclaimer in the documentation
14+
and/or other materials provided with the distribution.
1015

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

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.24
16+
parse_server_sdk: ^1.0.25
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

example/.idea/codeStyles/Project.xml

Lines changed: 0 additions & 29 deletions
This file was deleted.

example/.idea/libraries/Dart_SDK.xml

Lines changed: 0 additions & 19 deletions
This file was deleted.

example/.idea/libraries/Flutter_Plugins.xml

Lines changed: 0 additions & 9 deletions
This file was deleted.

example/.idea/libraries/Flutter_for_Android.xml

Lines changed: 0 additions & 9 deletions
This file was deleted.

example/.idea/misc.xml

Lines changed: 0 additions & 28 deletions
This file was deleted.

example/.idea/modules.xml

Lines changed: 0 additions & 9 deletions
This file was deleted.

example/.idea/runConfigurations/main_dart.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)