Releases: omise/omise-php
Releases · omise/omise-php
v2.18.0
What's Changed
- Remove codeowners by @muthuswamyopn in #162
- Update README.md by @muthuswamyopn in #163
- Language edits by @muthuswamyopn in #164
- Update README.md by @muthuswamyopn in #166
- Fix the latest version link in README. by @aashishgurung in #167
- Add #[AllowDynamicProperties] to not emit deprecation notice. by @aashishgurung in #168
New Contributors
- @muthuswamyopn made their first contribution in #162
Full Changelog: v2.17.0...v2.18.0
v2.12.0
v2.17.0
What's Changed
- Added support for partial capture by @AnasNaouchi in #157
- Bump v2.17.0 by @AnasNaouchi in #159
New Contributors
- @AnasNaouchi made their first contribution in #157
Full Changelog: v2.16.1...v2.17.0
v2.16.1
What's Changed
- [ENGA3-357] Added Code Coverage with Sonarcloud by @ajzkk in #146
- [ENGA3-357] : change dynamic date to fixed date to use same fixture by @ajzkk in #147
- [ENGA3-357] : Sonar coverage exclusion by @ajzkk in #148
- Do not overwrite publickey and secretkey as null for OmiseSearch::scope by @nicodemuz in #149
- [ENGA3-1134]: Removed the predefined installment minimum value by @aashishgurung in #151
- Bump v2.16.1 by @ajzkk in #152
New Contributors
- @nicodemuz made their first contribution in #149
Full Changelog: v2.16.0...v2.16.1
v2.16.0
What's Changed
- [ENGA3-292] by @aashishgurung in #144
- Prepare release of v2.16.0. by @aashishgurung in #145
New Contributors
- @aashishgurung made their first contribution in #144
Full Changelog: v2.15.0...v2.16.0
v2.15.0
v2.14.0
v2.13.0
v2.11.1
v2.9.1
last updated: Mar 21, 2018
🚀 Enhancements
• Be able to limit items that will be shown at the Search Object. (PR #75)
There was a new parameter that Omise-PHP hasn't supported yet on the Search API.
So, this PR is to support per_page
attribute on Search API.
Ref: https://www.omise.co/search-api
👾 Bug Fixes
• Fix PHP v7.2 raise a warning message when execute OmiseApiResource::execute() with non-array assigned at the first argument. (PR #71)
A warning message
Warning: count(): Parameter must be an array or an object that implements Countable in
/var/www/html/omise/omise-php/lib/omise/res/OmiseApiResource.php on line 295
will be raised if using Omise-PHP library with PHP v7.2
.
This issue happened because PHP v7.2 has been improved the count
function and more strict with a parameter that will be passed with. So if we execute OmiseCharge::retrieve('id');
this will be error (the first arg is a string not array).
Contributors: @forfunza, @keeratita