Skip to content

v1.1.32

Compare
Choose a tag to compare
@limingxinleo limingxinleo released this 21 May 07:13
· 3204 commits to master since this release
15ce2cd

Fixed

  • #1734 Fixed the bug that the morph association is empty and cannot be queried.
  • #1739 Fixed the wrong bitwise operator in oss hook.
  • #1743 Fixed the wrong refId for grafana.json.
  • #1748 Fixed concurrent.limit does not works when using another pool.
  • #1750 Fixed the incorrent number of current connections when close failed.
  • #1754 Fixed the wrong start info for base server.
  • #1764 Fixed datetime validate failed when the value is null.
  • #1769 Fixed a notice when client initiate disconnects in socketio-server.

Added

  • #1724 Added Model::orWhereHasMorph ,Model::whereDoesntHaveMorph and Model::orWhereDoesntHaveMorph.
  • #1741 Added Hyperf\Command\Command::choiceMultiple(): array method, because the return type of choice method is string, so the methed cannot handle the multiple selections, even though setted $multiple argument.
  • #1742 Added Custom Casts for model.
    • Added interface Castable, CastsAttributes and CastsInboundAttributes.
    • Added Model\Builder::withCasts.
    • Added Model::loadMorph, Model::loadMorphCount and Model::syncAttributes.