summaryrefslogtreecommitdiff
path: root/WHATSNEW
diff options
context:
space:
mode:
authorTaylor Smock <tsmock@fb.com>2022-01-21 08:52:25 -0700
committerJaikiran Pai <jaikiran@apache.org>2022-02-10 08:33:09 +0530
commitaa47924dc2aaac617bfa19731bcbfe6745711eef (patch)
tree7da47f46101714448655f1c8c23df09eb5bdb3af /WHATSNEW
parentb4a91c7fb325080126b4b9692537766fd396157b (diff)
downloadant-aa47924dc2aaac617bfa19731bcbfe6745711eef.tar.gz
Fix an issue in LegacyXmlResultFormatter with ]]> in stacktraces
Bugzilla Report 65833 This occurs when the stacktrace message contains ]]>, which is the CDATA end code. There is no escape, so it must be replaced with `]]` + `]]>` + `<![CDATA[` + `>`, which means that the CDATA section is split. Signed-off-by: Taylor Smock <tsmock@fb.com> This closes #175 pull request at github.com/apache/ant
Diffstat (limited to 'WHATSNEW')
-rw-r--r--WHATSNEW3
1 files changed, 3 insertions, 0 deletions
diff --git a/WHATSNEW b/WHATSNEW
index 9ea8607fc..dee8ed63c 100644
--- a/WHATSNEW
+++ b/WHATSNEW
@@ -18,6 +18,9 @@ Fixed bugs:
PropertyHelper implementations - for example when using AntXtras.
Bugzilla Report 65799
+* legacy-xml reporter of the junitlauncher task now escapes ]]> when writing CDATA.
+ Bugzilla Report 65833
+
Other changes:
--------------