Weave Code
Code Weaver
Helps Laravel developers discover, compare, and choose open-source packages. See popularity, security, maintainers, and scores at a glance to make better decisions.
Feedback
Share your thoughts, report bugs, or suggest improvements.
Subject
Message

Monolog Bundle Laravel Package

symfony/monolog-bundle

View on GitHub
Deep Wiki
Context7
v4.0.2

What's Changed

New Contributors

Full Changelog: https://github.com/symfony/monolog-bundle/compare/v4.0.1...v4.0.2

v3.11.2

What's Changed

Full Changelog: https://github.com/symfony/monolog-bundle/compare/v3.11.1...v3.11.2

v4.0.1
  • Fix rollbar handler to use RollbarLogger
  • Fix monolog.processor tag attributes to use consecutive keys
v3.11.1
  • Fix rollbar handler to use RollbarLogger with Monolog 2+
  • Fix monolog.processor tag attributes to use consecutive keys
v4.0.0
  • Add support for Symfony 8.0
  • Drop support for PHP < 8.2
  • Drop support for Symfony < 7.3
  • Drop support for Monolog < 3.5
  • Remove abstract monolog.activation_strategy.not_found and monolog.handler.fingers_crossed.error_level_activation_strategy service definitions
  • Remove excluded_404s option, use excluded_http_codes instead
  • Remove console_formater_options option, use console_formatter_options instead
  • Remove elasticsearch type, use elastica or elastic_search instead
  • Remove mongo type, use mongodb instead
  • Remove sentry and raven types, use a service type with sentry/sentry-symfony instead
  • Remove DebugHandlerPass
  • Remove support for the DebugHandler
v3.11.0
  • Reorganize files to match the "Reusable Bundles" structure
  • Migrate services configuration to PHP
  • Add console.interactive_only flag
  • Add slack.exclude_fields and slackwebhook.exclude_fields configuration
  • Add a processor to all loggers only when tags do not specify a channel or handler
  • Deprecate abstract monolog.activation_strategy.not_found and monolog.handler.fingers_crossed.error_level_activation_strategy service definitions
  • Drop support for PHP < 8.1
  • Drop support for Symfony < 6.4
  • Add TelegramBotHandler topic support
  • Deprecate sentry and raven handler, use a service handler with sentry/sentry-symfony instead
  • Add configuration for Gelf encoders
  • Fix host configuration for elastic_search handler
  • Add hosts configuration for elastica handler
  • Add enabled option to handlers configuration
  • Add priority field to processor tag
  • Add mongodb handler and deprecate mongo
  • Add monolog.formatter.syslog service definition to format RFC5424-compliant messages
v3.10.0
  • Add configuration support for SamplingHandler
v3.9.0
  • Add support for the WithMonologChannel attribute of Monolog 3.5.0 to autoconfigure the monolog.logger tag
  • Add support for Symfony 7
  • Remove support for Symfony 4
  • Mark classes as internal when relevant
  • Add support for env placeholders in the level option of handlers
v3.8.0
  • Deprecated ambiguous elasticsearch type, use elastica instead
  • Added support for Monolog 3.0 (requires symfony/monolog-bridge 6.1)
  • Added support for AsMonologProcessor to autoconfigure processors
  • Added support for FallbackGroupHandler
  • Added support for ElasticsearchHandler as elastic_search type
  • Added support for ElasticaHandler as elastica type
  • Added support for TelegramBotHandler as telegram
  • Added fill_extra_context flag for sentry handlers
  • Added support for configuring PsrLogMessageProcessor (date_format and remove_used_context_fields)
  • Fixed issue on Windows + PHP 8, workaround for https://github.com/php/php-src/issues/8315
  • Fixed MongoDBHandler support when no client id is provided
v3.7.1
  • Indicate compatibility with Symfony 6
v3.7.0
  • Use ActivationStrategy instead of actionLevel when available
  • Register resettable processors (ResettableInterface) for autoconfiguration (tag: kernel.reset)
  • Drop support for Symfony 3.4
  • Drop support for PHP < 7.1
  • Fix call to undefined method pushProcessor on handler that does not implement ProcessableHandlerInterface
  • Use "use_locking" option with rotating file handler
  • Add ability to specify custom Sentry hub service
v3.6.0
  • Added support for Symfony Mailer
  • Added support for setting log levels from parameters or environment variables
v3.5.0
  • Added support for Monolog 2.0
  • Added sentry type to use sentry 2.0 client
  • Added insightops handler
  • Added possibility for auto-wire monolog channel according to the type-hinted aliases, introduced in the Symfony 4.2
v3.4.0
  • Deprecate "excluded_404s" option
  • Flush loggers on kernel.reset
  • Register processors (ProcessorInterface) for autoconfiguration (tag: monolog.processor)
  • Expose configuration for the ConsoleHandler
  • Fixed psr-3 processing being applied to all handlers, only leaf ones are now processing
  • Fixed regression when app channel is defined explicitly
  • Fixed handlers marked as nested not being ignored properly from the stack
  • Added support for Redis configuration
  • Drop support for Symfony < 3
v3.3.1
  • Fixed compatiblity with Symfony 4.2
v3.3.0
  • Fixed the autowiring of the channel logger in autoconfigured services
  • Added timeouts to the pushover, hipchat, slack handlers
  • Dropped support for PHP 5.3, 5.4, 5.5, and HHVM
  • Added configuration for HttpCodeActivationStrategy
v3.2.0
  • Removed randomness from the container build
  • Fixed support for the monolog.logger tag specifying a channel in combination with Symfony 3.4+ autowiring
  • Fixed visibility of channels configured explicitly in the bundle config (they are now public in Symfony 4 too)
  • Fixed invalid service definitions
v3.1.0
  • Added support for server_log handler
  • Allow configuring VERBOSITY_QUIET in console handlers
  • Fixed autowiring
  • Fixed slackbot handler not escaping channel names properly
  • Fixed slackbot handler requiring slack_team instead of team to be configured
v3.0.3
  • Fixed deprecation notices when using Symfony 3.3+ and PHP7+
v3.0.2
  • Revert disabling DebugHandler in CLI environments
  • Update configuration for slack handlers for Monolog 1.22 new options
  • Revert the removal of the DebugHandlerPass (needed for Symfony <3.2)
v2.12.1
  • Revert disabling DebugHandler in CLI environments
  • Avoid triggering a deprecation warning for Symfony <3.2 users
2.11.1
  • Fixed monolog requirement to make it explicit what version the bundle requires
2.11.0
  • Added support for the new deduplication handler
  • Added use_microseconds option at the top level that lets you optionally disable microseconds across all loggers (small perf boost)
  • Added support for a raven handler release param to call setRelease on the handler
v2.10.0
  • Added auto_stack_logs option to raven (sentry) handler
  • Added app_name option to newrelic handler
  • Added nested option to all handlers to mark them as nested and that they should not be added to the logger instances, only useful if you want to assign them to a given handler you defined as a service.
v2.9.0
  • Added include_stacktraces configuration option to all handlers
  • Added possibility to autowire the default monolog.logger based on Psr\Log\LoggerInterface type hints
  • Added timeout and conection_timeout configuration options to the logentries handler
  • Added host and api_version configuration options to the hipchat handler
  • Added filename_format and date_format configuration options to the rotating_file handler
  • Added options transport, user and password for elasticsearch handler
v2.8.2
  • Avoid a deprecation warning on Symfony 2.8
  • Add the missing ignore_error setting for the elastica handler
2.8.1
  • Fixed regression in swift_mailer handling
v2.8.0

Features:

  • Added a service definition for LogstashFormatter
  • Added support for configuring flush_on_overflow for the BufferHandler
  • Added support for configuring the message format and the usage of ssl for HipchatHandler
  • Added support for DIC parameters in channel names in the monolog.channel tag
  • Added support for disabling the lazy proxy for the swiftmailer handler
  • Added support for Symfony 3.0
  • Improved performance when using the swiftmailer handler for requests not sending any email

Bug fixes:

  • Removed usage of deprecated APIs to run on Symfony 2.7 without warning
  • Fixed the support of multiple mailers when using the spool
v2.7.1
  • Fixed registration of debug handler when running in --no-debug commands
v2.7.0
  • Added preconfigured services for all formatters as monolog.formatter.*
  • Added support for WhatFailureGroupHandler, SlackHandler and ElasticSearchHandler
  • Fixed XSD support for many parameters
Weaver

How can I help you explore Laravel packages today?

Conversation history is not saved when not logged in.
Prompt
Add packages to context
No packages found.
capell-app/block-library
axium/identity
cetria/laravel-dummy-models
cetria/reflection-helper
agropredict/sso-auth-bundle
evolvestudio/spam-protection
directorytree/privacy-filter-classifier
datacore/hub-sdk
develia/commons
cuci/prototurk-sdk
cuci/prototurk-sdk-symfony
develia/geo-bundle
dreamzy/livewire-charts
touchestate-sdk/php-sdk
22h/doctrine-garbage-collection-bundle
agtp/agtp-php
agtp/mod-php
splash/sonata-admin
splash/metadata
splash/openapi