mirror of
https://github.com/Seldaek/monolog.git
synced 2025-08-03 19:57:41 +02:00
Merge branch '1.x'
This commit is contained in:
3
.github/ISSUE_TEMPLATE.md
vendored
Normal file
3
.github/ISSUE_TEMPLATE.md
vendored
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
I am using Monolog version 1|2
|
||||||
|
|
||||||
|
... the problem/suggestion/question here ...
|
6
.php_cs
6
.php_cs
@@ -13,12 +13,6 @@ $finder = PhpCsFixer\Finder::create()
|
|||||||
->files()
|
->files()
|
||||||
->name('*.php')
|
->name('*.php')
|
||||||
->exclude('Fixtures')
|
->exclude('Fixtures')
|
||||||
// The next 4 files are here for forward compatibility, and are not used by
|
|
||||||
// Monolog itself
|
|
||||||
->exclude(__DIR__.'src/Monolog/Handler/FormattableHandlerInterface.php')
|
|
||||||
->exclude(__DIR__.'src/Monolog/Handler/FormattableHandlerTrait.php')
|
|
||||||
->exclude(__DIR__.'src/Monolog/Handler/ProcessableHandlerInterface.php')
|
|
||||||
->exclude(__DIR__.'src/Monolog/Handler/ProcessableHandlerTrait.php')
|
|
||||||
->in(__DIR__.'/src')
|
->in(__DIR__.'/src')
|
||||||
->in(__DIR__.'/tests')
|
->in(__DIR__.'/tests')
|
||||||
;
|
;
|
||||||
|
@@ -1,3 +1,8 @@
|
|||||||
|
### 2.0.1 (xx)
|
||||||
|
|
||||||
|
* Fixed ChromePHPHandler to avoid sending more data than latest Chrome versions allow in headers (4KB down from 256KB).
|
||||||
|
* Fixed type error in BrowserConsoleHandler when the context array of log records was not associative.
|
||||||
|
|
||||||
### 2.0.0 (2019-08-30)
|
### 2.0.0 (2019-08-30)
|
||||||
|
|
||||||
* BC Break: This is a major release, see [UPGRADE.md](UPGRADE.md) for details if you are coming from a 1.x release
|
* BC Break: This is a major release, see [UPGRADE.md](UPGRADE.md) for details if you are coming from a 1.x release
|
||||||
@@ -47,16 +52,18 @@
|
|||||||
* Added support for the PHP 7.x `mongodb` extension in the MongoDBHandler
|
* Added support for the PHP 7.x `mongodb` extension in the MongoDBHandler
|
||||||
* Fixed many minor issues in various handlers, and probably added a few regressions too
|
* Fixed many minor issues in various handlers, and probably added a few regressions too
|
||||||
|
|
||||||
### 1.25.0 (xx)
|
### 1.25.0 (2019-09-06)
|
||||||
|
|
||||||
* Deprecated SlackbotHandler, use SlackWebhookHandler or SlackHandler instead
|
* Deprecated SlackbotHandler, use SlackWebhookHandler or SlackHandler instead
|
||||||
* Deprecated RavenHandler, use sentry/sentry 2.x and their Sentry\Monolog\Handler instead
|
* Deprecated RavenHandler, use sentry/sentry 2.x and their Sentry\Monolog\Handler instead
|
||||||
* Deprecated HipChatHandler, migrate to Slack and use SlackWebhookHandler or SlackHandler instead
|
* Deprecated HipChatHandler, migrate to Slack and use SlackWebhookHandler or SlackHandler instead
|
||||||
|
* Added forward-compatible interfaces and traits FormattableHandlerInterface, FormattableHandlerTrait, ProcessableHandlerInterface, ProcessableHandlerTrait. If you use modern PHP and want to make code compatible with Monolog 1 and 2 this can help. You will have to require at least Monolog 1.25 though.
|
||||||
* Added support for RFC3164 (outdated BSD syslog protocol) to SyslogUdpHandler
|
* Added support for RFC3164 (outdated BSD syslog protocol) to SyslogUdpHandler
|
||||||
* Fixed issue in GroupHandler and WhatFailureGroupHandler where setting multiple processors would duplicate records
|
* Fixed issue in GroupHandler and WhatFailureGroupHandler where setting multiple processors would duplicate records
|
||||||
* Fixed issue in SignalHandler restarting syscalls functionality
|
* Fixed issue in SignalHandler restarting syscalls functionality
|
||||||
* Fixed normalizers handling of exception backtraces to avoid serializing arguments in some cases
|
* Fixed normalizers handling of exception backtraces to avoid serializing arguments in some cases
|
||||||
* Fixed ZendMonitorHandler to work with the latest Zend Server versions
|
* Fixed ZendMonitorHandler to work with the latest Zend Server versions
|
||||||
|
* Fixed ChromePHPHandler to avoid sending more data than latest Chrome versions allow in headers (4KB down from 256KB).
|
||||||
|
|
||||||
### 1.24.0 (2018-11-05)
|
### 1.24.0 (2018-11-05)
|
||||||
|
|
||||||
|
@@ -61,7 +61,7 @@
|
|||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": [
|
"test": [
|
||||||
"parallel-lint . --exclude vendor --exclude src/Monolog/Handler/FormattableHandlerInterface.php --exclude src/Monolog/Handler/FormattableHandlerTrait.php --exclude src/Monolog/Handler/ProcessableHandlerInterface.php --exclude src/Monolog/Handler/ProcessableHandlerTrait.php",
|
"parallel-lint . --exclude vendor",
|
||||||
"phpunit"
|
"phpunit"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
Reference in New Issue
Block a user