summaryrefslogtreecommitdiffstats
path: root/vendor/maxmind/web-service-common/CHANGELOG.md
blob: 1f1b9a59db731a03c4e64c3150884be70e4fb790 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
CHANGELOG
=========

0.9.0 (2022-03-28)
------------------

* Improved internal type hint usage.

0.8.1 (2020-11-02)
------------------

* We now correctly handle responses without a `Content-Type` header. In 0.8.0,
  such responses could lead to a type error. In particular, this affected the
  minFraud Report Transaction endpoint, which returns a response with no
  content. Reported by Dmitry Malashko. GitHub #99 on
  `maxmind/minfraud-api-php`.

0.8.0 (2020-10-01)
------------------

* PHP 7.2 or greater is now required.
* Added additional type hints.

0.7.0 (2020-05-06)
------------------

* Responses with a 204 status code are accepted as successes.

0.6.0 (2019-12-12)
------------------

* Curl handles are now reused across requests. Pull request by Willem
  Stuursma-Ruwen. GitHub #24.
* PHP 5.6 is now required.

0.5.0 (2018-02-12)
------------------

* Refer to account IDs using the terminology "account" rather than "user".

0.4.0 (2017-07-10)
------------------

* PHP 5.4 is now required.

0.3.1 (2016-08-10)
------------------

* On Mac OS X when using a curl built against SecureTransport, the certs
  in the system's keychain will now be used instead of the CA bundle on
  the file system.

0.3.0 (2016-08-09)
------------------

* This package now uses `composer/ca-bundle` by default rather than a CA
  bundle distributed with this package. `composer/ca-bundle` will first try
  to use the system CA bundle and will fall back to the Mozilla CA bundle
  when no system bundle is available. You may still specify your own bundle
  using the `caBundle` option.

0.2.1 (2016-06-13)
------------------

* Fix typo in code to copy cert to temp directory.

0.2.0 (2016-06-10)
------------------

* Added handling of additional error codes that the web service may return.
* A `USER_ID_UNKNOWN` error will now throw a
  `MaxMind\Exception\AuthenticationException`.
* Added support for `proxy` option. Closes #6.

0.1.0 (2016-05-23)
------------------

* A `PERMISSION_REQUIRED` error will now throw a `PermissionRequiredException`
  exception.
* Added a `.gitattributes` file to exclude tests from Composer releases.
  GitHub #7.
* Updated included cert bundle.

0.0.4 (2015-07-21)
------------------

* Added extremely basic tests for the curl calls.
* Fixed broken POSTs.

0.0.3 (2015-06-30)
------------------

* Floats now work with the `timeout` and `connectTimeout` options. Fix by
  Benjamin Pick. GitHub PR #2.
* `curl_error` is now used instead of `curl_strerror`. The latter is only
  available for PHP 5.5 or later. Fix by Benjamin Pick. GitHub PR #1.


0.0.2 (2015-06-09)
------------------

* An exception is now immediately thrown curl error rather than letting later
  status code checks throw an exception. This improves the exception message
  greatly.
* If this library is inside a phar archive, the CA certs are copied out of the
  archive to a temporary file so that curl can use them.

0.0.1 (2015-06-01)
------------------

* Initial release.