- Add support for new DOM extension classes in
DOMCaster
- Add argument
$label
toVarDumper::dump()
- Require explicit argument when calling
VarDumper::setHandler()
- Remove display of backtrace in
Twig_Template
, onlyTwig\Template
is supported
- Dump uninitialized properties
- Add caster for
WeakMap
- Add support of named arguments to
dd()
anddump()
to display the argument name - Add support for
Relay\Relay
- Add display of invisible characters
- Add support for
FFI\CData
andFFI\CType
- Deprecate calling
VarDumper::setHandler()
without arguments
- Add ability to style integer and double values independently
- Add casters for Symfony's UUIDs and ULIDs
- Add support for
Fiber
- added support for PHPUnit
--colors
option - added
VAR_DUMPER_FORMAT=server
env var value support - prevent replacing the handler when the
VAR_DUMPER_FORMAT
env var is set
- added
RdKafka
support
- added
VarDumperTestTrait::setUpVarDumper()
andVarDumperTestTrait::tearDownVarDumper()
to configure casters & flags to use in tests - added
ImagineCaster
and infrastructure to dump images - added the stamps of a message after it is dispatched in
TraceableMessageBus
andMessengerDataCollector
collected data - added
UuidCaster
- made all casters final
- added support for the
NO_COLOR
env var (https://no-color.org/)
- added
DsCaster
to support dumping the contents of data structures from the Ds extension
- support selecting the format to use by setting the environment variable
VAR_DUMPER_FORMAT
tohtml
orcli
- added a
ServerDumper
to send serialized Data clones to a server - added a
ServerDumpCommand
andDumpServer
to run a server collecting and displaying dumps on a single place with multiple formats support - added
CliDescriptor
andHtmlDescriptor
descriptors forserver:dump
CLI and HTML formats support
- support for passing
\ReflectionClass
instances to theCaster::castObject()
method has been dropped, pass class names as strings instead - the
Data::getRawData()
method has been removed - the
VarDumperTestTrait::assertDumpEquals()
method expects a 3rd$filter = 0
argument and moves$message = ''
argument at 4th position. - the
VarDumperTestTrait::assertDumpMatchesFormat()
method expects a 3rd$filter = 0
argument and moves$message = ''
argument at 4th position.
- added
AbstractCloner::setMinDepth()
function to ensure minimum tree depth - deprecated
MongoCaster
- deprecated
Cloner\Data::getLimitedClone()
. UsewithMaxDepth
,withMaxItemsPerDepth
orwithRefHandles
instead.