From 04b52659144d0f7725368f3828b0a24713322e10 Mon Sep 17 00:00:00 2001 From: Michael Ackley Date: Mon, 13 Nov 2023 12:35:56 -0600 Subject: [PATCH] Adds v0.9.0 release notes --- CHANGELOG.md | 74 ++++++++++++++++++++++++++++++++++++++++++++++++++++ README.md | 6 ++++- 2 files changed, 79 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 21792d0bc..d6a74b19f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,77 @@ +## 0.9.0 (November 13, 2023) + +### FEATURES +* Add Weekdays config setting as included in QuickFIX/J https://github.com/quickfixgo/quickfix/pull/590 +* `MessageStore` Refactor + +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 +```go +import "github.com/quickfixgo/quickfix" + +... +acceptor, err = quickfix.NewAcceptor(app, quickfix.NewMongoStoreFactory(appSettings), appSettings, fileLogFactory) +``` +becomes +```go +import ( + "github.com/quickfixgo/quickfix" + "github.com/quickfixgo/quickfix/store/mongo" +) + +... +acceptor, err = quickfix.NewAcceptor(app, mongo.NewStoreFactory(appSettings), appSettings, fileLogFactory) +``` + +FILE +```go +import "github.com/quickfixgo/quickfix" + +... +acceptor, err = quickfix.NewAcceptor(app, quickfix.NewFileStoreFactory(appSettings), appSettings, fileLogFactory) +``` +becomes +```go +import ( + "github.com/quickfixgo/quickfix" + "github.com/quickfixgo/quickfix/store/file" +) + +... +acceptor, err = quickfix.NewAcceptor(app, file.NewStoreFactory(appSettings), appSettings, fileLogFactory) +``` + +SQL + +```go +import "github.com/quickfixgo/quickfix" + +... +acceptor, err = quickfix.NewAcceptor(app, quickfix.NewSQLStoreFactory(appSettings), appSettings, fileLogFactory) +``` +becomes +```go +import ( + "github.com/quickfixgo/quickfix" + "github.com/quickfixgo/quickfix/store/sql" +) + +... +acceptor, err = quickfix.NewAcceptor(app, sql.NewStoreFactory(appSettings), appSettings, fileLogFactory) +``` + + +### ENHANCEMENTS +* Acceptance suite store type expansions https://github.com/quickfixgo/quickfix/pull/596 and https://github.com/quickfixgo/quickfix/pull/591 +* Support Go v1.21 https://github.com/quickfixgo/quickfix/pull/589 + + +### BUG FIXES +* Resolves outstanding issues with postgres db creation syntax and `pgx` driver https://github.com/quickfixgo/quickfix/pull/598 +* Fix sequence number bug when storage fails https://github.com/quickfixgo/quickfix/pull/432 + + ## 0.8.1 (October 27, 2023) BUG FIXES diff --git a/README.md b/README.md index a7d9ced48..27c436963 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,10 @@ Open Source [FIX Protocol](http://www.fixprotocol.org/) library implemented in Go +### Looking for help with `MessageStore` syntax changes? +See v0.9.0 release notes [here](https://github.com/quickfixgo/quickfix/releases/tag/v0.9.0) + + ## About

QuickFIX/Go is a FIX Protocol Community implementation for the Go programming language.

@@ -24,7 +28,7 @@ Open Source [FIX Protocol](http://www.fixprotocol.org/) library implemented in G
-Sponsored by Connamara +Sponsored by Connamara ## Installation