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.

72 lines
2.1 KiB

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