From 2994a2886a64ef34a23c5244522297cc01bc8acd Mon Sep 17 00:00:00 2001 From: Grant Birchmeier Date: Thu, 3 Oct 2024 10:06:14 -0500 Subject: [PATCH 01/10] add Phung Nhat-Huy --- web/views/about/credits.md | 1 + 1 file changed, 1 insertion(+) diff --git a/web/views/about/credits.md b/web/views/about/credits.md index 113d090cd..ac243b71b 100644 --- a/web/views/about/credits.md +++ b/web/views/about/credits.md @@ -94,4 +94,5 @@ Contributors - Matt Lahner - Nazar Mandzyk - Michal Dachs +- Phung Nhat-Huy From f33ed711c676bfb25a0019e3d7bd4bcf64de6c87 Mon Sep 17 00:00:00 2001 From: Grant Birchmeier Date: Mon, 2 Dec 2024 18:35:14 -0600 Subject: [PATCH 02/10] add VAllens --- web/views/about/credits.md | 1 + 1 file changed, 1 insertion(+) diff --git a/web/views/about/credits.md b/web/views/about/credits.md index ac243b71b..f7367ddf5 100644 --- a/web/views/about/credits.md +++ b/web/views/about/credits.md @@ -95,4 +95,5 @@ Contributors - Nazar Mandzyk - Michal Dachs - Phung Nhat-Huy +- VAllens From 81f29c3919c57f0ff460bc38217f618832deb95f Mon Sep 17 00:00:00 2001 From: Grant Birchmeier Date: Tue, 17 Dec 2024 17:18:13 -0600 Subject: [PATCH 03/10] add Allen Cai and James Kitamirike --- web/views/about/credits.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/views/about/credits.md b/web/views/about/credits.md index f7367ddf5..5d07be7a7 100644 --- a/web/views/about/credits.md +++ b/web/views/about/credits.md @@ -95,5 +95,6 @@ Contributors - Nazar Mandzyk - Michal Dachs - Phung Nhat-Huy -- VAllens +- Allen Cai +- James Kitamirike From 25796605484e25c1257eb68988a84701a9fb6b76 Mon Sep 17 00:00:00 2001 From: Grant Birchmeier Date: Fri, 20 Dec 2024 15:55:19 -0600 Subject: [PATCH 04/10] docs and credit for #913 --- tutorial/repeating-groups.md | 12 ++++++++++++ web/views/about/credits.md | 1 + 2 files changed, 13 insertions(+) diff --git a/tutorial/repeating-groups.md b/tutorial/repeating-groups.md index 9abd989d3..7a00d8a32 100644 --- a/tutorial/repeating-groups.md +++ b/tutorial/repeating-groups.md @@ -72,3 +72,15 @@ for(int grpIndex = 1; grpIndex<= message.GetInt(Tags.NoSides); grpIndex += 1) } ``` +New in 1.13 - ReadGroups() iterator +=================================== + +In v1.13 we introduced a new method, `ReadGroups`, that allows you to iterate through +a set of groups with `foreach`: + +```csharp +foreach (var grp in msg.ReadGroups(552)) { + // ...do stuff with grp... +} +``` + diff --git a/web/views/about/credits.md b/web/views/about/credits.md index 5d07be7a7..78f1235aa 100644 --- a/web/views/about/credits.md +++ b/web/views/about/credits.md @@ -97,4 +97,5 @@ Contributors - Phung Nhat-Huy - Allen Cai - James Kitamirike +- NoviProg From 2597fd014df11e96b8bfd9055c5ca3ea630ce1a2 Mon Sep 17 00:00:00 2001 From: Grant Birchmeier Date: Mon, 30 Dec 2024 16:34:48 -0600 Subject: [PATCH 05/10] credit for #914 --- web/views/about/credits.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/views/about/credits.md b/web/views/about/credits.md index 78f1235aa..a2579268f 100644 --- a/web/views/about/credits.md +++ b/web/views/about/credits.md @@ -97,5 +97,5 @@ Contributors - Phung Nhat-Huy - Allen Cai - James Kitamirike -- NoviProg +- Vasily Petruhin From e200dc3f87839cf31d893169437d8e1564baa35b Mon Sep 17 00:00:00 2001 From: Grant Birchmeier Date: Mon, 30 Dec 2024 17:43:56 -0600 Subject: [PATCH 06/10] credit for #742/#917 --- web/views/about/credits.md | 1 + 1 file changed, 1 insertion(+) diff --git a/web/views/about/credits.md b/web/views/about/credits.md index a2579268f..3f547ce9c 100644 --- a/web/views/about/credits.md +++ b/web/views/about/credits.md @@ -98,4 +98,5 @@ Contributors - Allen Cai - James Kitamirike - Vasily Petruhin +- Ian Lee Claxton From e1fdda87b9bca28a8003eced8f1fa0070e377ca3 Mon Sep 17 00:00:00 2001 From: Grant Birchmeier Date: Tue, 31 Dec 2024 13:45:10 -0600 Subject: [PATCH 07/10] add Hank! @hlibman-connamara --- web/views/about/credits.md | 1 + 1 file changed, 1 insertion(+) diff --git a/web/views/about/credits.md b/web/views/about/credits.md index 3f547ce9c..8a02ca327 100644 --- a/web/views/about/credits.md +++ b/web/views/about/credits.md @@ -99,4 +99,5 @@ Contributors - James Kitamirike - Vasily Petruhin - Ian Lee Claxton +- Hank Libman From f82f3edc2b6d65ea374171ac533ae240a392c00d Mon Sep 17 00:00:00 2001 From: Grant Birchmeier Date: Wed, 22 Jan 2025 19:15:07 -0600 Subject: [PATCH 08/10] per #739: doc for Encoding config setting and dev credit attn: @SNORRIS721 --- tutorial/configuration.md | 15 +++++++++++++++ web/views/about/credits.md | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/tutorial/configuration.md b/tutorial/configuration.md index 23353a7aa..06d9169df 100644 --- a/tutorial/configuration.md +++ b/tutorial/configuration.md @@ -344,6 +344,21 @@ QuickFIX Settings Y + + + Encoding + + Specify an alternate character encoding, if your counterparty is using an encoding other than the FIX-mandated iso-8859-1. +
+ Note: This is a global setting. This setting will apply to ALL sessions. + + + An value that is a valid parameter to `System.Text.Encoding.GetEncoding()` on your platform. + For instance: iso-8859-1, windows-1251, utf-8 + + iso-8859-1 + + diff --git a/web/views/about/credits.md b/web/views/about/credits.md index 8a02ca327..8e0224fcb 100644 --- a/web/views/about/credits.md +++ b/web/views/about/credits.md @@ -100,4 +100,4 @@ Contributors - Vasily Petruhin - Ian Lee Claxton - Hank Libman - +- Sam Norris From 50b4c00469cbe3fed34441f9510a02167369a5be Mon Sep 17 00:00:00 2001 From: Grant Birchmeier Date: Fri, 24 Jan 2025 13:10:18 -0600 Subject: [PATCH 09/10] doc "AllowUnknownEnumValues" setting issue #658 / PR #929 --- tutorial/configuration.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tutorial/configuration.md b/tutorial/configuration.md index 06d9169df..8bb6661d1 100644 --- a/tutorial/configuration.md +++ b/tutorial/configuration.md @@ -501,6 +501,16 @@ QuickFIX Settings N + + AllowUnknownEnumValues + If set to Y, values of enum fields will not be validated against the list of enum values. Unrecognized values will be permitted and not cause a reject. + +
Y
+
N
+ + N + + CheckLatency If Y, messages must be received from the counterparty within a defined number of seconds (see MaxLatency). It is useful to turn this off if a system uses localtime for its timestamps instead of GMT. From 3196e4919285ce4ab346413646a3e7235caa679d Mon Sep 17 00:00:00 2001 From: Grant Birchmeier Date: Fri, 24 Jan 2025 14:34:22 -0600 Subject: [PATCH 10/10] credit for #925 --- web/views/about/credits.md | 1 + 1 file changed, 1 insertion(+) diff --git a/web/views/about/credits.md b/web/views/about/credits.md index 8e0224fcb..c6596dbc1 100644 --- a/web/views/about/credits.md +++ b/web/views/about/credits.md @@ -101,3 +101,4 @@ Contributors - Ian Lee Claxton - Hank Libman - Sam Norris +- ZdeneĢŒk Sojma