Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release Notes

## 7.0.2

- When a Sample path is not found and the value is treated as inline content, emit a diagnostic warning message (fixes #953)

## 7.0.1

- Revert "fix potential XXE vulnerability in XML parsing by @Thorium in #1596"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,11 @@ module internal ProviderHelpers =

if not uri.IsAbsoluteUri then
// even if it's a valid uri, it could be sample text
eprintfn
"FSharp.Data: the path '%s' was not found; treating the value as inline %s content."
valueToBeParsedOrItsUri
formatName

try
{ Spec = parseFunc "" valueToBeParsedOrItsUri
IsUri = false
Expand Down
Loading