Quickfixgo Quickfix Versions Save

The Go FIX Protocol Library :rocket:

v0.9.3

1 week ago

BUG FIXES

FEATURES

v0.9.2

3 weeks ago

0.9.2 (April 23, 2024)

BUG FIXES

v0.9.1

1 month ago

0.9.1 (April 15, 2024)

v0.9.0

6 months ago

0.9.0 (November 13, 2023)

FEATURES

The message store types external to a quickfix-go application have been refactored into individual sub-packages within quickfix. The benefit of this is that the dependencies for these specific store types are no longer included in the quickfix package itself, so many projects depending on the quickfix package will no longer be bloated with large indirect dependencies if they are not specifically implemented in your application. This applies to the mongo (MongoDB), file (A file on-disk), and sql (Any db accessed with a go sql driver interface). The memorystore (in-memory message store) syntax remains unchanged. The minor drawback to this is that with some re-packaging came some minor syntax changes. See https://github.com/quickfixgo/quickfix/issues/547 and https://github.com/quickfixgo/quickfix/pull/592 for more information. The relevant examples are below.

MONGO

import "github.com/quickfixgo/quickfix"

...
acceptor, err = quickfix.NewAcceptor(app, quickfix.NewMongoStoreFactory(appSettings), appSettings, fileLogFactory)

becomes

import (
  "github.com/quickfixgo/quickfix"
  "github.com/quickfixgo/quickfix/store/mongo"
)

...
acceptor, err = quickfix.NewAcceptor(app, mongo.NewStoreFactory(appSettings), appSettings, fileLogFactory)

FILE

import "github.com/quickfixgo/quickfix"

...
acceptor, err = quickfix.NewAcceptor(app, quickfix.NewFileStoreFactory(appSettings), appSettings, fileLogFactory)

becomes

import (
  "github.com/quickfixgo/quickfix"
  "github.com/quickfixgo/quickfix/store/file"
)

...
acceptor, err = quickfix.NewAcceptor(app, file.NewStoreFactory(appSettings), appSettings, fileLogFactory)

SQL

import "github.com/quickfixgo/quickfix"

...
acceptor, err = quickfix.NewAcceptor(app, quickfix.NewSQLStoreFactory(appSettings), appSettings, fileLogFactory)

becomes

import (
  "github.com/quickfixgo/quickfix"
  "github.com/quickfixgo/quickfix/store/sql"
)

...
acceptor, err = quickfix.NewAcceptor(app, sql.NewStoreFactory(appSettings), appSettings, fileLogFactory)

ENHANCEMENTS

BUG FIXES

v0.8.1

6 months ago

0.8.1 (October 27, 2023)

BUG FIXES

  • Remove initiator wait GH 587
  • for xml charset and bug of "Incorrect NumInGroup" GH 368, 363, 365, 366
  • Allow time.Duration or int for timeouts GH 477
  • Trim extra non-ascii characters that can arise from manually editing GH 463, 464

v0.8.0

6 months ago

0.8.0 (October 25, 2023)

ENHANCEMENTS

  • Remove tag from field map GH 544
  • Add message.Bytes() to avoid string conversion GH 546
  • Check RejectInvalidMessage on FIXT validation GH 572

BUG FIXES

  • Fix repeating group read tags lost GH 462
  • Acceptance test result must be predictable GH 577, 578
  • Makes event timer stop idempotent GH 580, 581
  • Added WaitGroup Wait in Initiator GH 584

v0.7.0

1 year ago

0.7.0 (January 3, 2023)

FEATURES

ENHANCEMENTS

  • Add SocketUseSSL parameter to allow SSL/TLS without client certs GH 311
  • Support for RejectInvalidMessage configuration GH 336
  • Add deep copy for Messages GH 338
  • Add Go Module support GH 340
  • Support timeout on ssl connection GH 347, 349
  • Dynamic Sessions GH 521
  • Upgrade Mongo Driver to support transactions GH 527

BUG FIXES

  • header and trailer templates use rootpath GH 302
  • Initiator stop panic if stop chan's already closed GH 359
  • Connection closed when inbound logon has a too-low sequence number GH 369
  • TLS server name config GH 384
  • Fix concurrent map write GH 436
  • Race condition during bilateral initial resend request GH 439
  • Deadlock when disconnecting dynamic session GH 524
  • Align session's ticker with round second GH 533
  • Seqnum persist and increment fix GH 528

v0.6.0

6 years ago

0.6.0 (August 14, 2017)

FEATURES

  • CheckLatency [GH 241, 266]
  • ResendRequestChunkSize [GH 243, 245]
  • EnableLastMsgSeqNumProcessed [GH 253, 256]

ENHANCEMENTS

  • config.SocketTLSForTesting(bool) [GH 235]
  • API Interface Enhancements [GH 251, 252, 254, 255, 257, 258, 259]
  • Misc. Performance Optimizations [GH 260, 261, 263, 264, 265, 268, 270, 271, 272, 273, 274, 275]
  • TLS Configuration [GH 279, 280]
  • Use data dictionary for parsing fix messages [GH 281]

BUG FIXES

  • Resend logon fix [GH 244]
  • PossDup messages with seqnum too low should not be sent to FromCallbacks [GH 246, 247]
  • Router should not reject admin messages or business rejects [GH 249, 250]
  • Fixes file log output for incoming, outgoing [GH 262]
  • message.String() returns rawMessage if set, builds otherwise [GH 269]
  • Use timestamp with time zone for postgres sql [GH 286]

v0.5.0

7 years ago

0.5.0 (September 1, 2016)

FEATURES

  • Session Scheduling [GH 31, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 211, 212, 218, 220]
  • TimeZone configuration [GH 206]
  • StartDay, EndDay for week long sessions [GH 207, 239]
  • Support for connection over SSL [GH 63, 193]
  • SocketConnectHost/Port [GH 65, 217]
  • ResetOnLogout Configuration enhancement [GH 67, 192]
  • SocketAcceptAddress, ipv6 support [GH 83, 215]
  • RefreshOnLogon [GH 214]

ENHANCEMENTS

  • Reject Logon Support [GH 57, 225]
  • FIX Decimal [GH 114, 223, 224, 227, 228]
  • test refactoring, leveraging testify mock assertions [GH 186]
  • KISS on registry, session management [GH 208]
  • moving and renaming test jigs [GH 210]
  • Config Enhancements [GH 216]
  • travis uses go 1.7 [GH 219]
  • adds 'generated.go' suffix to generated source [GH 221]
  • vendored deps GH [GH 222, 226]
  • renames SQLStore config settings [GH 229]
  • Add FieldMap.{SetInt, SetString} [GH 236]

BUG FIXES

  • DefaultApplVerID Configuration not translating enum names [GH 89, 213]
  • Dropped issues in logout state [GH 187, 188]
  • correctly increments in target seq num on logout for in session state [GH 189]
  • SendToTarget should return an error if toApp returns DoNotSend [GH 190, 191]
  • Logon fix [GH 194]
  • onlogout calls depend on session state [GH 199]
  • fixes bug in resend state where resend response is processed incomplete [GH 230]
  • fixes logic around logon message with sequence number too high [GH 231]
  • SequenceReset, Resent Messages not hitting ToAdmin/ToApp [GH 232, 233]
  • Next MsgSeqNo after received ResetSeqNumFlag=Y [GH 238, 240]

v0.4.0

7 years ago

0.4.0 (August 1, 2016)

FEATURES

  • ReconnectInterval Initiator Configuration [GH 66, 161]

ENHANCEMENTS

  • Generate Getters for messages [GH 118]
  • Drop generate-* apps into cmd/ [GH 125, 150]
  • Misc field type refactoring [GH 145]
  • Cmd gen [GH 146, 147]
  • refactoring enum generation [GH 148]
  • pipelining generation [GH 149]
  • Sending a message to an unlogged-in session, results an error [GH 173, 182]
  • adds event logging related to session events [GH 175]
  • Error handling around session code enhancement [GH 176]
  • refactoring of session code [GH 183]
  • Gen header beginstring [GH 184]

BUG FIXES

  • Do not incr target seq num when seq num too high [GH 151]
  • can't parse securitylist message [GH 153, 155]
  • Concurrent map operations on Acceptor.Stop() [GH 156]
  • Return requiredConfigurationMissing when "FileStorePath" not found [GH 157]
  • Checks around HeartBtInt configuration [GH 158]
  • Removed complexity around closing Initiator sessions [GH 159]
  • Proper FIX logout sequence [GH 160]
  • Session logic doesn't account for a failure when calling messageStore methods (e.g. persisting a message) [GH 162]
  • Session event loop [GH 164]
  • Session event loop follow up [GH 165]
  • Handle OnLogon/Logout callbacks in user space [GH 167]
  • Session deadlocks if both initiator and acceptor enter the resend state [GH 169, 179]
  • Initiator.Stop() does not wait for Acceptor's logout response, causing a resend on next logon [GH 170, 172]
  • Reset peer timer after logon [GH 171]
  • Ensure OnLogon is called even if seq num too high [GH 174]
  • increment target seq num on logout [GH 177]
  • fixes bogus resend logic [GH 178]
  • Session forgets it is in resend state [GH 180, 181]
  • fixes donotsend logic [GH 185]