Skip to content

Commit d99b00b

Browse files
feat(log): Allow monolog v3 (#19)
1 parent 3864921 commit d99b00b

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,22 @@ As far as possible, we try to adhere to [Symfony guidelines](https://symfony.com
1313

1414
---
1515

16+
## [3.6.0](https://github.com/crowdsecurity/php-lapi-client/releases/tag/v3.6.0) - 2025-01-31
17+
[_Compare with previous release_](https://github.com/crowdsecurity/php-lapi-client/compare/v3.5.0...v3.6.0)
18+
19+
### Changed
20+
21+
- Allow Monolog 3 package (Use `crowdsec/common` `^3.0.0` dependency)
22+
23+
---
24+
1625
## [3.5.0](https://github.com/crowdsecurity/php-lapi-client/releases/tag/v3.5.0) - 2025-01-16
1726
[_Compare with previous release_](https://github.com/crowdsecurity/php-lapi-client/compare/v3.4.0...v3.5.0)
1827

1928
### Changed
2029

2130
- Allow Symfony 7 packages
2231

23-
2432
---
2533

2634
## [3.4.0](https://github.com/crowdsecurity/php-lapi-client/releases/tag/v3.4.0) - 2025-01-09

composer.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,9 @@
3737
},
3838
"require": {
3939
"php": "^7.2.5 || ^8.0",
40-
"crowdsec/common": "^2.4.0",
40+
"crowdsec/common": "^3.0.0",
4141
"ext-json": "*",
42-
"symfony/config": "^4.4.44 || ^5.4.11 || ^6.0.11 || ^7.2.0",
43-
"monolog/monolog": "^1.17 || ^2.1"
42+
"symfony/config": "^4.4.44 || ^5.4.11 || ^6.0.11 || ^7.2.0"
4443
},
4544
"require-dev": {
4645
"phpunit/phpunit": "^8.5.30 || ^9.3",

src/Constants.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,5 @@ class Constants extends CommonConstants
4949
/**
5050
* @var string The current version of this library
5151
*/
52-
public const VERSION = 'v3.5.0';
52+
public const VERSION = 'v3.6.0';
5353
}

0 commit comments

Comments
 (0)