In version 0.90.x, strings inside <![CDATA[ ... ]]> are being encoded, which should not happen.
The content of a CDATA section is supposed to be treated as raw text and preserved as-is, without escaping characters like &.
Example:
Expected:
<![CDATA[?param1=value1¶m2=value2]]>
Actual:
<![CDATA[?param1=value1&param2=value2]]>
This breaks interoperability with systems expecting the original unescaped string inside CDATA sections.
In version
0.90.x, strings inside<![CDATA[ ... ]]>are being encoded, which should not happen.The content of a CDATA section is supposed to be treated as raw text and preserved as-is, without escaping characters like
&.Example:
Expected:
Actual:
This breaks interoperability with systems expecting the original unescaped string inside CDATA sections.