tp6混合easyswoole DLL 多应用模式 修改版
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.

53 lines
1.8 KiB

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