From f72392d0e6eb855118f5a84e89ac2d257c704abd Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Mon, 29 Jul 2013 00:38:30 +0200 Subject: [PATCH] Update changelog/readme --- CHANGELOG.mdown | 18 ++++++++++++++++++ README.mdown | 10 ++++++++++ 2 files changed, 28 insertions(+) diff --git a/CHANGELOG.mdown b/CHANGELOG.mdown index 2710fdc4..2df1e0f1 100644 --- a/CHANGELOG.mdown +++ b/CHANGELOG.mdown @@ -1,3 +1,21 @@ +### 1.6.0 (2013-07-29) + + * Added HipChatHandler to send logs to a HipChat chat room + * Added ErrorLogHandler to send logs to PHP's error_log function + * Added NewRelicHandler to send logs to NewRelic's service + * Added Monolog\ErrorHandler helper class to register a Logger as exception/error/fatal handler + * Added ChannelLevelActivationStrategy for the FingersCrossedHandler to customize levels by channel + * Added stack traces output when normalizing exceptions (json output & co) + * Added Monolog\Logger::API constant (currently 1) + * Added support for ChromePHP's v4.0 extension + * Added support for message priorities in PushoverHandler, see $highPriorityLevel and $emergencyLevel + * Added support for sending messages to multiple users at once with the PushoverHandler + * Fixed RavenHandler's support for batch sending of messages (when behind a Buffer or FingersCrossedHandler) + * Fixed normalization of Traversables with very large data sets, only the first 1000 items are shown now + * Fixed issue in RotatingFileHandler when an open_basedir restriction is active + * Fixed minor issues in RavenHandler and bumped the API to Raven 0.5.0 + * Fixed SyslogHandler issue when many were used concurrently with different facilities + ### 1.5.0 (2013-04-23) * Added ProcessIdProcessor to inject the PID in log records diff --git a/README.mdown b/README.mdown index 56f3177f..9d205469 100644 --- a/README.mdown +++ b/README.mdown @@ -194,6 +194,16 @@ Processors - _ProcessIdProcessor_: Adds the process id to a log record. - _UidProcessor_: Adds a unique identifier to a log record. +Utilities +--------- + +- _ErrorHandler_: The `Monolog\ErrorHandler` class allows you to easily register + a Logger instance as an exception handler, error handler or fatal error handler. +- _ErrorLevelActivationStrategy_: Activates a FingersCrossedHandler when a certain log + level is reached. +- _ChannelLevelActivationStrategy_: Activates a FingersCrossedHandler when a certain + log level is reached, depending on which channel received the log record. + About =====