You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
2.0 KiB

3 years ago
  1. CHANGELOG
  2. =========
  3. 5.2.0
  4. -----
  5. * added support for PHPUnit `--colors` option
  6. * added `VAR_DUMPER_FORMAT=server` env var value support
  7. * prevent replacing the handler when the `VAR_DUMPER_FORMAT` env var is set
  8. 5.1.0
  9. -----
  10. * added `RdKafka` support
  11. 4.4.0
  12. -----
  13. * added `VarDumperTestTrait::setUpVarDumper()` and `VarDumperTestTrait::tearDownVarDumper()`
  14. to configure casters & flags to use in tests
  15. * added `ImagineCaster` and infrastructure to dump images
  16. * added the stamps of a message after it is dispatched in `TraceableMessageBus` and `MessengerDataCollector` collected data
  17. * added `UuidCaster`
  18. * made all casters final
  19. * added support for the `NO_COLOR` env var (https://no-color.org/)
  20. 4.3.0
  21. -----
  22. * added `DsCaster` to support dumping the contents of data structures from the Ds extension
  23. 4.2.0
  24. -----
  25. * support selecting the format to use by setting the environment variable `VAR_DUMPER_FORMAT` to `html` or `cli`
  26. 4.1.0
  27. -----
  28. * added a `ServerDumper` to send serialized Data clones to a server
  29. * added a `ServerDumpCommand` and `DumpServer` to run a server collecting
  30. and displaying dumps on a single place with multiple formats support
  31. * added `CliDescriptor` and `HtmlDescriptor` descriptors for `server:dump` CLI and HTML formats support
  32. 4.0.0
  33. -----
  34. * support for passing `\ReflectionClass` instances to the `Caster::castObject()`
  35. method has been dropped, pass class names as strings instead
  36. * the `Data::getRawData()` method has been removed
  37. * the `VarDumperTestTrait::assertDumpEquals()` method expects a 3rd `$filter = 0`
  38. argument and moves `$message = ''` argument at 4th position.
  39. * the `VarDumperTestTrait::assertDumpMatchesFormat()` method expects a 3rd `$filter = 0`
  40. argument and moves `$message = ''` argument at 4th position.
  41. 3.4.0
  42. -----
  43. * added `AbstractCloner::setMinDepth()` function to ensure minimum tree depth
  44. * deprecated `MongoCaster`
  45. 2.7.0
  46. -----
  47. * deprecated `Cloner\Data::getLimitedClone()`. Use `withMaxDepth`, `withMaxItemsPerDepth` or `withRefHandles` instead.