This is an automated email from the ASF dual-hosted git repository.
olabusayoT pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/daffodil-site.git
The following commit(s) were added to refs/heads/main by this push:
new 4ac629b Correct release notes for InfosetWalkerMode and decimal type
output formatting.
4ac629b is described below
commit 4ac629becb764131e5cceb7c4ca82e0af538b192
Author: olabusayoT <[email protected]>
AuthorDate: Wed Jul 1 10:39:55 2026 -0400
Correct release notes for InfosetWalkerMode and decimal type output
formatting.
---
site/_releases/4.2.0.md | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/site/_releases/4.2.0.md b/site/_releases/4.2.0.md
index 024d9fc..59b92a1 100644
--- a/site/_releases/4.2.0.md
+++ b/site/_releases/4.2.0.md
@@ -35,7 +35,7 @@ that in cases of large infosets or if memory is a concern,
the default
`infosetWalkerMode` of "streaming" should be used.
* {% jira 182 %} - option for having xsi:type added to infoset
-* {% jira 3070 %} - Investigate non-streaming InfosetWalker
+* {% jira 3070 %} - Support non-streaming InfosetWalker
* {% jira 3082 %} - Make GZIP layer compression level configurable
# Miscellaneous Bugs/Improvements
@@ -65,14 +65,14 @@ that in cases of large infosets or if memory is a concern,
the default
Previous versions of Daffodil used the ScalaXMLInfosetInputter/Outputter as
the
default inputter/outputter for TDML Runner, this version changed it to
XMLTextInfosetInputter/Outputter
since it supports the stringsAsXml feature. Note that for this
implementation, we check the
- actual infoset for the presence of XMLTextInfoset.stringAsXML(currently
stringAsXML)
+ actual infoset for the presence of XMLTextInfoset.stringAsXML (currently
stringAsXML)
and don't normalize CRLF to LF for that element
* {% jira 182 %} - option for having xsi:type added to infoset
Previous versions of Daffodil could sometimes use scientific notation
when outputting elements with an xs:decimal type, which XSD does not
- allow. Daffodil now always outputs xs:deicmal types using standard
+ allow. Daffodil now always outputs xs:decimal types using standard
decimal notation without any exponent part.