Skip to content

Commit

Permalink
Merge pull request #933 from gbirchmeier/i931
Browse files Browse the repository at this point in the history
bugfix in FixToJson example
  • Loading branch information
gbirchmeier authored Jan 31, 2025
2 parents 71ba98e + 05bee4d commit 84602e8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Examples/FixToJson/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ static void FixToJson(
{
line = line.Trim();
msg.FromString(line, false, sessionDataDictionary, appDataDictionary, msgFactory);
Console.WriteLine(comma + msg.ToJSON(convertEnumsToDescriptions: humanReadableValues));
Console.WriteLine(comma + msg.ToJSON(appDataDictionary, convertEnumsToDescriptions: humanReadableValues));
comma = ",";
}
}
Expand Down
3 changes: 2 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ What's New
* #887 - cleanup/nullable-ize FixValues, Session, DataDictionary, DataDictionaryProvider, Message, MessageCracker,
SocketSettings, SslStreamFactory (gbirchmeier)
* DataDictionary.CheckIsInGroup is now static
* Get rid of non-static DataDictionary.Validate functions
* Get rid of non-static DataDictionary.Validate functions; callers must use their static variants

**Non-breaking changes**
* #864 - when multiple threads race to init DefaultMessageFactory,
Expand Down Expand Up @@ -64,6 +64,7 @@ What's New
* #925 - Make ToAdmin() support DoNotSend (zsojma)
* #927 - Remove lock from ScreenLog as Console.WriteLine is thread safe and remove unnecessary Dispose call (Rob-Hague)
* #926 - don't init FileLog writers until first use (Rob-Hague)
* #931 - bugfix in FixToJson example program

### v1.12.0

Expand Down

0 comments on commit 84602e8

Please sign in to comment.