This document will help you upgrading from a version into another. For more detailed informations about the breaking changes click the issue detail link, there you can see examples of how to change your code.
- #61 PHP 7.1 is official dropped in unit tests. The code should still work with PHP 7.1 until next major release.
- #60 Changed the behavior of
nadar\quill\listener\Link
. Property$wrapper
has been removed and replaced by$wrapperOpen
,$wrapperMiddle
and$wrapperClose
. If you are not overriding or have a customized setup theLink
listenere, upgrading is safe.
- #18 The input values from are now safely encoded by default. This might be a problem when using script or other raw html code inside your text(quill delta). To achieve the same output as behavior as before set
$lexer->escapeInput = false
. This will turn off input encoding but is not recommend.