Skip to content

Releases: kristuff/abuseipdb

v1.1

05 Oct 22:19
Compare
Choose a tag to compare
  • Fixed: Update email pattern in cleanMessage() method to handle local addresses without TLD and to allow using the caracter @ in custom message. Close #4 (Thanks @AndisGrossteins)

v1.0

26 Jan 21:30
Compare
Choose a tag to compare

First stable release

v0.9.15

08 Dec 19:48
Compare
Choose a tag to compare

Changes

  • New ApiHandler::setTimeout(int $timeout) method allows to change default timeout before any API request. Timeout is expressed in milliseconds. Overwrites the value passed in constructor, useful when performing multiple queries with same handler but different timeout.

v0.9.14

06 Dec 20:46
Compare
Choose a tag to compare

Changes

  • New: the ApiHandler (and QuietApiHandler) constructor takes now a timeout in third parameter. The timeout is expressed in milliseconds . The timeout will apply to all API request methods (will raise exception if reached out). Default is 0 (no timeout).
  • Formatting

v0.9.13

18 Sep 19:54
Compare
Choose a tag to compare

Changed

  • fix #2 Check properly if property exists to prevent PHP notice. Thanks eydun

v0.9.12

04 Jul 11:17
Compare
Choose a tag to compare
v0.9.12 Pre-release
Pre-release

Changed

  • fix #1 Incorrect return type in ApiResponse::getObject() method (bug introduced in v0.9.8 with PHP strict types). Method now returns stdClass. Thanks 357up
  • cleaning, typos

v0.9.11

23 Feb 19:35
Compare
Choose a tag to compare
v0.9.11 Pre-release
Pre-release

Fixed

  • getCategoryIdByName and getCategoryNameById now return string (instead of array)
  • IoT Targeted report category now named iot (instead of oit)

v0.9.10

29 Jan 19:33
Compare
Choose a tag to compare
v0.9.10 Pre-release
Pre-release

Changed

  • report categories methods related now static
  • SilentApiHandler class renamed QuietApiHandler break change
  • new static method ApiResponse::createErrorResponse

v0.9.9

17 Jan 18:10
Compare
Choose a tag to compare
v0.9.9 Pre-release
Pre-release

Added

  • better exception handling with new class SilentApiHandler: do not raise any exception during API request but instead return an ApiResponse with errors
  • version constant
  • ApiReponse has new errors() and hasError() methods

v0.9.8

16 Jan 17:31
Compare
Choose a tag to compare
v0.9.8 Pre-release
Pre-release

Added

  • ApiResponse class is now the return type for all API endpoint methods break change
  • New parameter confidenceScore in blacklist() method (suscribers feature)

Changed

  • method loadFromConfig and json helper removed (moved to client) break change
  • field userId removed (not used). ApiHandler constructor changed break change
  • clear() and getBlacklist() method renamed to clearAddress() and blacklist() (all method names match now api endpoint in camel case) break change
  • scrict types