Skip to content

Commit 10f8810

Browse files
committed
v0.9.19
- Update dependencies (improve email pattern when cleaning report messages)
1 parent a14d483 commit 10f8810

15 files changed

+32
-24
lines changed

bin/abuseipdb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* For the full copyright and license information, please view the LICENSE
1515
* file that was distributed with this source code.
1616
*
17-
* @version 0.9.18
17+
* @version 0.9.19
1818
* @copyright 2020-2022 Kristuff
1919
*/
2020

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"require": {
1616
"php": ">=7.1",
1717
"kristuff/mishell": "^1.5-stable",
18-
"kristuff/abuseipdb": "^1.0-stable"
18+
"kristuff/abuseipdb": "^1.1-stable"
1919
},
2020
"autoload": {
2121
"psr-4": {

composer.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/conf.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
; \__,_|_.__/\_,_/__/\___|___|_| |___/|___/
55
;
66
; Kristuff\AbuseIPDB-client configuration file.
7-
; v0.9.18 | (c) Kristuff <[email protected]>
7+
; v0.9.19 | (c) Kristuff <[email protected]>
88

99
; -----------------------------------------------------------
1010
; WARNING: In most of the cases you should not modify this

create_package.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/bin/sh
22

3+
set -e
4+
35
# make sure we are in current directory as the script may be run from another location
46
# to use relative path
57
#cd `dirname $0`
@@ -59,5 +61,4 @@ chmod 755 debian/DEBIAN/postinst
5961
chmod 755 debian/DEBIAN/prerm
6062

6163
# finally build the package
62-
dpkg-deb --root-owner-group --build debian .
63-
#dist
64+
dpkg-deb --root-owner-group --build debian dist

deb/changelog

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
1+
abuseipdb-client (0.9.19) unstable; urgency=medium
2+
3+
* Update dependencies (improve email pattern when cleaning report
4+
message)
5+
6+
-- kristuff <[email protected]> Thu, 06 Oct 2022 13:00:00 +0200
7+
18
abuseipdb-client (0.9.18) unstable; urgency=medium
29

3-
* Change: minor change in chaeck report when total reports is 0
10+
* Change: minor change in check report when total reports is 0
411
and lastReportedAt field is not null (could happen when deleting
512
report)
613
* Include Fail2ban action file (abuseipdb.local) in package

deb/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: abuseipdb-client
2-
Version: 0.9.18
2+
Version: 0.9.19
33
Maintainer: kristuff <[email protected]>
44
Architecture: all
55
Depends: php-cli, php-curl

src/AbstractClient.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* For the full copyright and license information, please view the LICENSE
1414
* file that was distributed with this source code.
1515
*
16-
* @version 0.9.18
16+
* @version 0.9.19
1717
* @copyright 2020-2022 Kristuff
1818
*/
1919
namespace Kristuff\AbuseIPDB;
@@ -34,14 +34,14 @@ abstract class AbstractClient extends ShellErrorHandler
3434
const SHORT_ARGUMENTS = "o:GLBK:C:d:R:c:m:l:E:V:hvs:t:";
3535

3636
/**
37-
* @var string
37+
* @var array
3838
*/
3939
const LONG_ARGUMENTS = ['output:', 'config', 'list', 'blacklist', 'check:', 'check-block:', 'days:', 'report:', 'categories:', 'message:', 'limit:', 'clear:',' bulk-report:', 'help', 'verbose', 'score:', 'version', 'timeout:'];
4040

4141
/**
4242
* @var string
4343
*/
44-
const VERSION = 'v0.9.18';
44+
const VERSION = 'v0.9.19';
4545

4646
/**
4747
* @var QuietApiHandler

src/AbuseIPDBClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* For the full copyright and license information, please view the LICENSE
1414
* file that was distributed with this source code.
1515
*
16-
* @version 0.9.18
16+
* @version 0.9.19
1717
* @copyright 2020-2022 Kristuff
1818
*/
1919
namespace Kristuff\AbuseIPDB;

src/BulkReportTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* For the full copyright and license information, please view the LICENSE
1414
* file that was distributed with this source code.
1515
*
16-
* @version 0.9.18
16+
* @version 0.9.19
1717
* @copyright 2020-2022 Kristuff
1818
*/
1919
namespace Kristuff\AbuseIPDB;

0 commit comments

Comments
 (0)