geoip redirection for superforex.com.au
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CHANGELOG.md 2.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. CHANGELOG
  2. =========
  3. 0.6.0 (2019-12-12)
  4. ------------------
  5. * Curl handles are now reused across requests. Pull request by Willem
  6. Stuursma-Ruwen. GitHub #24.
  7. * PHP 5.6 is now required.
  8. 0.5.0 (2018-02-12)
  9. ------------------
  10. * Refer to account IDs using the terminology "account" rather than "user".
  11. 0.4.0 (2017-07-10)
  12. ------------------
  13. * PHP 5.4 is now required.
  14. 0.3.1 (2016-08-10)
  15. ------------------
  16. * On Mac OS X when using a curl built against SecureTransport, the certs
  17. in the system's keychain will now be used instead of the CA bundle on
  18. the file system.
  19. 0.3.0 (2016-08-09)
  20. ------------------
  21. * This package now uses `composer/ca-bundle` by default rather than a CA
  22. bundle distributed with this package. `composer/ca-bundle` will first try
  23. to use the system CA bundle and will fall back to the Mozilla CA bundle
  24. when no system bundle is available. You may still specify your own bundle
  25. using the `caBundle` option.
  26. 0.2.1 (2016-06-13)
  27. ------------------
  28. * Fix typo in code to copy cert to temp directory.
  29. 0.2.0 (2016-06-10)
  30. ------------------
  31. * Added handling of additional error codes that the web service may return.
  32. * A `USER_ID_UNKNOWN` error will now throw a
  33. `MaxMind\Exception\AuthenticationException`.
  34. * Added support for `proxy` option. Closes #6.
  35. 0.1.0 (2016-05-23)
  36. ------------------
  37. * A `PERMISSION_REQUIRED` error will now throw a `PermissionRequiredException`
  38. exception.
  39. * Added a `.gitattributes` file to exclude tests from Composer releases.
  40. GitHub #7.
  41. * Updated included cert bundle.
  42. 0.0.4 (2015-07-21)
  43. ------------------
  44. * Added extremely basic tests for the curl calls.
  45. * Fixed broken POSTs.
  46. 0.0.3 (2015-06-30)
  47. ------------------
  48. * Floats now work with the `timeout` and `connectTimeout` options. Fix by
  49. Benjamin Pick. GitHub PR #2.
  50. * `curl_error` is now used instead of `curl_strerror`. The latter is only
  51. available for PHP 5.5 or later. Fix by Benjamin Pick. GitHub PR #1.
  52. 0.0.2 (2015-06-09)
  53. ------------------
  54. * An exception is now immediately thrown curl error rather than letting later
  55. status code checks throw an exception. This improves the exception message
  56. greatly.
  57. * If this library is inside a phar archive, the CA certs are copied out of the
  58. archive to a temporary file so that curl can use them.
  59. 0.0.1 (2015-06-01)
  60. ------------------
  61. * Initial release.