diff --git a/.circleci/config.yml b/.circleci/config.yml index 15c570f..5ec15ba 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -19,8 +19,8 @@ workflows: version: 2 build: jobs: - - php73-laravel80 - - php74-laravel80 + - php73-laravel70 + - php72-laravel70 jobs: php72-laravel58-prefer-lowest: @@ -75,6 +75,18 @@ jobs: steps: - install_and_test: laravel: 6.0.* + php72-laravel70: + docker: + - image: circleci/php:7.2 + steps: + - install_and_test: + laravel: 7.0.* + php73-laravel70: + docker: + - image: circleci/php:7.3 + steps: + - install_and_test: + laravel: 7.0.* php73-laravel80: docker: - image: circleci/php:7.3 diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..6066132 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,4 @@ +# Make sure you check the below checklist + +- [ ] Added your changes to `changelog.md` file +- [ ] Make sure you did all commit that fulfill symentic commit rules. \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a2068a..d850f0c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,29 @@ # CHANGELOG + +## 7.0.0 + +**Upgrade package to support laravel 7** [Ref](https://laravel.com/docs/7.x/upgrade) + +- Upgrade packages to support laravel 7. +- php `^7.2.5` or higher +- array-to-xml `~2.14.0`, +- php-dot-notation `^2.x.dev` +- phpunit `8.5` + + +## 6.0.0 + +**Upgrade package to support laravel 6** + +- Syantaxt upgraded to support laravel 6.* + + +## 0.1.30 +- Fixed return type issue when json_decode fails. [Hotfix] + +## 0.1.29 +- Fixed json mapping condition for empty body. [Hotfix] + ## 0.1.28 - Perform json mapping if body is given.