v4.0.0-beta #597
Replies: 3 comments 2 replies
-
First of all... Congrats!! I've installed the 4.0 and have an issue (maybe my fault, too late here :-D ) If I use in this way it works:
But if I use through log, it does not work: I added in config/logging.php:
and added the ROLLBAR_TOKEN in the .env, of course ;-) But when I use this: it does not trigger the rollbar channel. Any ideas ? THANK YOU in advance |
Beta Was this translation helpful? Give feedback.
-
I've been testing in a "pre-live" environment for 2 weeks, and works fine! |
Beta Was this translation helpful? Give feedback.
-
Any idea of publishing date ? |
Beta Was this translation helpful? Give feedback.
-
This beta release of 4.0.0 fixes the psr/log v3.0 issue as well as adds a lot of typing improvements to the public interfaces and methods.
With the update to psr/log v3
Rollbar::log()
, and other logging methods defined in the psr/log interface now returnvoid
. If you still need theResponse
return value from those methods, you can now use the newRollbar::report()
method which returnsResponse
.What's Changed
Added
psr/log
v3 by @danielmorell in Added support for psr/log v3 #577.Rollbar::report()
andRollbarLogger::report()
methods to continue to supportResponse
return type requirements after upgrading to psr/log v3 by @danielmorell in Added support for psr/log v3 #577.EncodedPayload
class and payload interfaces by @danielmorell in Added comments and type annotations to the EncodedPayload class and payload interfaces #581.Rollbar
andRollbarLogger
classes by @danielmorell in Added types and method docs toRollbar
andRollbarLogger
classes #585.DataBuilderInterface
by @danielmorell in Added required public methods to theDataBuilderInterface
#586.ResponseHandlerInterface
by @danielmorell in Updated the typing and comments for theResponseHandlerInterface
#588.ScrubberInterface
andScrubber
class by @danielmorell in Added typing / comments to theScrubberInterface
andScrubber
class #591.FilterInterface
by @danielmorell in Added typing / comments to theFilterInterface
and removed the token argument #587.SenderInterface
by @danielmorell in Added typing / comments to theSenderInterface
#592.Changed
IStrategy
toStrategyInterface
updatedTruncation
and changed custom truncation strategy from requiring class extend theAbstractStrategy
to now require it implementStrategyInterface
by @danielmorell in Renamed IStrategy to StrategyInterface updated Truncation #580.FilterInterface::shouldSend()
$accessΤoken
argument with$isUncaught
making it close tocheck_ignore
usage @danielmorell in Added typing / comments to theFilterInterface
and removed the token argument #587.Removed
Rollbar/LevelFactory
by @danielmorell in Removed deprecated log levels and fixed inconsistent use of LevelFactory #578.Rollbar
by @danielmorell in Removed deprecated reporting methods fromRollbar
#579.null
return type fromTransformerInterface::getPayload()
by @danielmorell in Updated theTransformerInterface
#593.Fixed
psr/log
context exception by @danielmorell in Fixed #461 Added support for psr/log context exception #582.handler
configuration parameter is set #469 AddedrequireAccessToken()
method toSenderInterface
by @danielmorell in Fixed #469 AddedrequireAccessToken()
method to senders #595.New Contributors
Full Changelog: v3.1.4...v4.0.0-beta
This discussion was created from the release v4.0.0-beta.
Beta Was this translation helpful? Give feedback.
All reactions