Skip to content

Release/1.0.28 #460

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 37 commits into from
Oct 11, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
31e54d0
Release 1.0.28 - Create new release branch
phillwiggins Aug 28, 2020
7462a01
Replace devicelocale by Platform.localeName call (#430)
nstrelow Aug 29, 2020
efbb9c6
Livequery: combine both implementations (#433)
fischerscode Sep 1, 2020
a0b6020
Seperate the dart and the flutter parts of this sdk (#434)
fischerscode Sep 4, 2020
d9a6171
Add WEB-support for CoreStoreSembastImp (#436)
fischerscode Sep 4, 2020
f07909f
fix getInstance of CoreStoreSembastImp (#438)
fischerscode Sep 4, 2020
9c76d67
Merge pull request #1 from parse-community/release/1.0.28
Sep 5, 2020
bfc7615
Reset _isConnected var
Sep 5, 2020
d0d12e5
Fixed bad type
Sep 5, 2020
a6c3367
Preparing the repository for seperated dart and flutter package (#439)
fischerscode Sep 5, 2020
9186e86
Merge remote-tracking branch 'upstream/release/1.0.28' into release/1…
Sep 5, 2020
3af7531
Merge branch 'release/1.0.28' of https://github.com/FNPCMDs/Parse-SDK…
Sep 5, 2020
745b054
Merge pull request #440 from FNPCMDs/release/1.0.28
phillwiggins Sep 9, 2020
d41596a
Small changes and improvements (#441)
fischerscode Sep 11, 2020
6239620
Fix links (#443)
fischerscode Sep 11, 2020
6e0f0b4
Fix infinite connecting on web
fischerscode Sep 13, 2020
996c8c0
delete old example folder
fischerscode Sep 16, 2020
056ae2a
fixing travis tests (#447)
fischerscode Sep 16, 2020
6bbc156
Fixed throw in live list stream (#448)
fischerscode Sep 17, 2020
b9f51a6
ParseUser: store password in field (#446)
fischerscode Sep 17, 2020
fca5cb8
fix for issue #456 (#457)
fischerscode Sep 25, 2020
fd52b84
LiveList: preloadedColumns (#458)
fischerscode Oct 2, 2020
74c4845
creat migration guide for version 1.0.28 (#445)
fischerscode Oct 2, 2020
6e01d28
Move ParseHTTPClient to Dio (#459)
fischerscode Oct 8, 2020
95c83b5
improve readme (#468)
fischerscode Oct 8, 2020
583bfb8
Update CHANGELOG.md (#462)
fischerscode Oct 8, 2020
e8e1bb6
allow signup without email (#469)
fischerscode Oct 8, 2020
ee68a84
Update migrate-1-0-28.md (#471)
fischerscode Oct 9, 2020
65b5a48
SignUp encoding data to JSON (#470)
fischerscode Oct 9, 2020
ceb17f6
Add disclaimer to not use Masterkey on client side (#474)
nstrelow Oct 9, 2020
4622e29
LiveList: fix setState after dispose (#475)
fischerscode Oct 9, 2020
eee69fc
Querybuilder: whereMatchesKeyInQuery bugfix (#476)
fischerscode Oct 10, 2020
b0dd5b8
fixed liveListRetryIntervals in flutter
fischerscode Oct 10, 2020
4d43411
Rel 1.0.28: Add license to sub-projects
phillwiggins Oct 11, 2020
e648f0a
Rel 1.0.28: Add dependencies required for rel
phillwiggins Oct 11, 2020
9d0d888
1.0.28/fix publish warnings (#472)
fischerscode Oct 11, 2020
9eca393
flutter: added dio to pubspec.yaml
fischerscode Oct 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
8 changes: 5 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,14 @@ dart:

install:
- git clone https://github.com/flutter/flutter.git -b stable --depth 1
- export PATH=./flutter/bin:$PATH
- export PATH=~/build/parse-community/Parse-SDK-Flutter/flutter/bin:$PATH
- flutter doctor

script:
- flutter packages get
- flutter test --no-pub test/
- (cd packages/dart && pub get)
- (cd packages/dart && pub run test)
- (cd packages/flutter && flutter pub get)
- (cd packages/flutter && flutter test --no-pub test/)

cache:
directories:
Expand Down
Loading