Skip to content

⚡️ Release 1.6.0 #447

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 5 commits into from
Aug 17, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
44 changes: 18 additions & 26 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,44 +1,36 @@
language: php
dist: trusty

php:
- '7.1'
- '7.2'
- '7.3'

- '7.1'
- '7.2'
- '7.3'
cache:
directories:
- node_modules
- vendor

- node_modules
- vendor
before_install:
- nvm install 8.11
- sudo apt-get install graphviz

- nvm install 8.11
- sudo apt-get install graphviz
install:
- composer install
- npm install

- composer install
- npm install
before_script:
- npm start 1>&2
- npm run lint

- npm start 1>&2
- npm run lint
before_deploy:
- npm run document

- npm run document
script:
- npm run test:coverage
- 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

- npm run test:coverage
- 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
deploy:
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN
github:
secure: DthbGgkLRhKwZBrvcxdAjt8j/GLpHsipWdLn9tXMhq4mp5dDKuvKRksZMAB+y2Zn+H8sKFvuYaa184rVATbvV077X18+2OHiOVr5rYjbLDzsAw1fBKl4JD/3HFBA6NExv/KvKgp26ND4Wdqio+zoIoyCbFlZA1lAeZVuJXbzz5g=
local_dir: output
on:
branch: master
php: '7.1'

after_success:
- bash <(curl -s https://codecov.io/bash)

- bash <(curl -s https://codecov.io/bash)
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
## Parse PHP SDK Changelog

### master
[Full Changelog](https://github.com/parse-community/parse-php-sdk/compare/1.5.1...master)
[Full Changelog](https://github.com/parse-community/parse-php-sdk/compare/1.6.0...master)

### 1.6.0
[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)

*About this Release*
Support for PHP < 7 and HHVM has been dropped.

- Support Query withCount (#448)
- Support Query exclude keys (#445)
- Support Query readPreference (#446)
- Support return raw data from Query first (#441)

### 1.5.1
[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)
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ from your PHP app or script. Designed to work with the self-hosted Parse Server
For more information on Parse and its features, see [the website](http://parseplatform.org), [the PHP guide](https://docs.parseplatform.org/php/guide/) or [API Reference](http://parseplatform.org/parse-php-sdk/namespaces/Parse.html).

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.
- [1.6.0 README](https://github.com/parse-community/parse-php-sdk/blob/1.6.0/README.md)
- [1.5.1 README](https://github.com/parse-community/parse-php-sdk/blob/1.5.1/README.md)
- [1.4.0 README](https://github.com/parse-community/parse-php-sdk/blob/1.4.0/README.md)
- [1.3.0 README](https://github.com/parse-community/parse-php-sdk/blob/1.3.0/README.md)
Expand Down
Loading