Skip to content

Commit fa132ca

Browse files
authored
⚡️ Release 1.6.0 (#447)
* ⚡️ Release 1.6.0 * add withCount * add github token * pin packages, run against latest parse, mongo 4.0.4
1 parent 6fd4f00 commit fa132ca

File tree

6 files changed

+304
-250
lines changed

6 files changed

+304
-250
lines changed

.travis.yml

+18-26
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,36 @@
11
language: php
22
dist: trusty
3-
43
php:
5-
- '7.1'
6-
- '7.2'
7-
- '7.3'
8-
4+
- '7.1'
5+
- '7.2'
6+
- '7.3'
97
cache:
108
directories:
11-
- node_modules
12-
- vendor
13-
9+
- node_modules
10+
- vendor
1411
before_install:
15-
- nvm install 8.11
16-
- sudo apt-get install graphviz
17-
12+
- nvm install 8.11
13+
- sudo apt-get install graphviz
1814
install:
19-
- composer install
20-
- npm install
21-
15+
- composer install
16+
- npm install
2217
before_script:
23-
- npm start 1>&2
24-
- npm run lint
25-
18+
- npm start 1>&2
19+
- npm run lint
2620
before_deploy:
27-
- npm run document
28-
21+
- npm run document
2922
script:
30-
- npm run test:coverage
31-
- if [[ ${TRAVIS_PHP_VERSION:0:3} == "7.1" ]]; then npm run document-check && if [[ `cat "output/checkstyle.xml" | grep "<error "` != "" ]]; then exit 1; fi fi
32-
23+
- npm run test:coverage
24+
- if [[ ${TRAVIS_PHP_VERSION:0:3} == "7.1" ]]; then npm run document-check && if [[
25+
`cat "output/checkstyle.xml" | grep "<error "` != "" ]]; then exit 1; fi fi
3326
deploy:
3427
provider: pages
3528
skip_cleanup: true
36-
github_token: $GITHUB_TOKEN
29+
github:
30+
secure: DthbGgkLRhKwZBrvcxdAjt8j/GLpHsipWdLn9tXMhq4mp5dDKuvKRksZMAB+y2Zn+H8sKFvuYaa184rVATbvV077X18+2OHiOVr5rYjbLDzsAw1fBKl4JD/3HFBA6NExv/KvKgp26ND4Wdqio+zoIoyCbFlZA1lAeZVuJXbzz5g=
3731
local_dir: output
3832
on:
3933
branch: master
4034
php: '7.1'
41-
4235
after_success:
43-
- bash <(curl -s https://codecov.io/bash)
44-
36+
- bash <(curl -s https://codecov.io/bash)

CHANGELOG.md

+12-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,18 @@
11
## Parse PHP SDK Changelog
22

33
### master
4-
[Full Changelog](https://github.com/parse-community/parse-php-sdk/compare/1.5.1...master)
4+
[Full Changelog](https://github.com/parse-community/parse-php-sdk/compare/1.6.0...master)
5+
6+
### 1.6.0
7+
[See the diff between 1.5.1 and 1.6.0](https://github.com/parse-community/parse-php-sdk/compare/1.5.1...1.6.0)
8+
9+
*About this Release*
10+
Support for PHP < 7 and HHVM has been dropped.
11+
12+
- Support Query withCount (#448)
13+
- Support Query exclude keys (#445)
14+
- Support Query readPreference (#446)
15+
- Support return raw data from Query first (#441)
516

617
### 1.5.1
718
[See the diff between 1.5.0 and 1.5.1](https://github.com/parse-community/parse-php-sdk/compare/1.5.0...1.5.1)

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
For more information on Parse and its features, see [the website](https://parseplatform.org), [the PHP guide](https://docs.parseplatform.org/php/guide/) or [API Reference](https://parseplatform.org/parse-php-sdk/namespaces/Parse.html).
2727

2828
Please note that this documentation contains the latest changes that may as of yet be unreleased. To see the README for your release please use the list below.
29+
- [1.6.0 README](https://github.com/parse-community/parse-php-sdk/blob/1.6.0/README.md)
2930
- [1.5.1 README](https://github.com/parse-community/parse-php-sdk/blob/1.5.1/README.md)
3031
- [1.4.0 README](https://github.com/parse-community/parse-php-sdk/blob/1.4.0/README.md)
3132
- [1.3.0 README](https://github.com/parse-community/parse-php-sdk/blob/1.3.0/README.md)

0 commit comments

Comments
 (0)