This is an automated email from the ASF dual-hosted git repository.
jadams 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 97d9521 Update release notes with changes to DAFFODIL-2984
97d9521 is described below
commit 97d95210657c8721b705bb98634d926b6ce9adee
Author: Josh Adams <[email protected]>
AuthorDate: Fri May 23 13:51:02 2025 -0400
Update release notes with changes to DAFFODIL-2984
---
site/_releases/3.11.0.md | 16 +++++++++-------
1 file changed, 9 insertions(+), 7 deletions(-)
diff --git a/site/_releases/3.11.0.md b/site/_releases/3.11.0.md
index 046aa3b..6e6c500 100644
--- a/site/_releases/3.11.0.md
+++ b/site/_releases/3.11.0.md
@@ -1,6 +1,6 @@
---
title: "3.11.0"
-release: rc1
+release: rc2
apache: true
date: 2025-05-21
summary: >
@@ -56,12 +56,14 @@ fixes and process improvements that are included with this
release.
* {% jira 2984 %} Diagnostic API does not allow for getting just the message
- The Diagnostic.getMessage() function no longer returns the diagnostic
- mode, schema location, or data location. It only returns the actual
- message portion of a diagnostic. To get the previous behavior, call
- Diagnostic.toString() instead. A new Diagnostic.getModeName() function
- is added to return just the mode (Schema Definition Warning, Parse
- Error, etc).
+ A new Diagnostic.getMessageOnly() function is added to get just the
+ message portion of a diagnostic, excluding mode, schema location, and
+ data location portions. A future release of Daffodil may change
+ Diagnostic.getMessage() to match this behavior, and getMessageOnly() may
+ be removed. To ensure the current behavior is maintained with future
+ releases, API users should call Diagnostic.toString() instead, which
+ will always include the mode, message, schema location, and data
+ location.
* {% jira 2980 %} MSI files are not reproducible