Changelog History
Page 1
-
v1.3.1 Changes
May 21, 2022- ๐ Fix MsgSeqNum(34) handling on SequenceReset(4) (Vadim Platonov, Jussi Virtanen)
Do not increment the outgoing MsgSeqNum(34) value when sending a SequenceReset(4) message.
- ๐ Improve Logout(5) handling (Vadim Platonov, Jussi Virtanen)
Handle a Logout(5) message with too low MsgSeqNum(34) value, but still send a ResendRequest(2) message when receiving a Logout(5) message with too high MsgSeqNum(34) value.
-
v1.3.0 Changes
May 21, 2021- ๐ Improve
FIXValueTest
(Jussi Virtanen)
Make test cases that rely on the side effect of an attempt to read an incomplete value from a buffer partially populating the value container to actually read a complete value.
Improve test coverage for all
FIXValue
methods.- โก๏ธ Optimize
FIXValue
(Jussi Virtanen)
Decrease the bytecode size of the
FIXValue#setDigits
method from 44 to 31 bytes, which is within HotSpot's default maximum inline size of 35 bytes. This makes the following methods faster:FIXValue#setCheckSum
FIXValue#setDate
FIXValue#setTimeOnly
FIXValue#setTimestamp
Decrease the bytecode size of the
FIXValue#setInt
method from 102 to 79 bytes, making it faster.Decrease the bytecode size of the
FIXValue#setFloat
method from 177 to 161 bytes, making it faster.โ Add
FIXMessage(FIXConfig)
(Jussi Virtanen)โ Add
FIXValue#toString
(Jussi Virtanen)โ Add
FIXMessage#valueOf(int,int)
andFIXMessage#indexOf(int,int)
(Kasimir Torri)
Make it possible to get the index or the value container of the first instance of a field with a specific tag, starting from a specific index.
- โก๏ธ Optimize
FIXTimestamps
(Jussi Virtanen)
Decrease the bytecode size of the
FIXTimestamps.setDigits
method from 36 to 28 bytes, which is within HotSpot's default maximum inline size of 35 bytes. This makes theFIXTimestamps.append
method faster.โ Add
FIXValue#asString(Appendable)
(Jussi Virtanen)โ Add
FIXValue#contentEquals
(Jussi Virtanen)โ Add FIX Orchestra support to Philadelphia Code Generator (Jussi Virtanen)
โ Add FIX Latest support (Jussi Virtanen)
๐ Improve
FIXMessageParser
(Jussi Virtanen)
Optimize parsing of the BeginString(8), BodyLength(9), and CheckSum(10) values, making message parsing faster.
- ๐ Fix EndSeqNo(16) handling (Marcus Harte, Jussi Virtanen)
Handle the value 0 for the EndSeqNo(16) field in a ResendRequest(2) message correctly. This value represents infinity and corresponds to all subsequent messages after the message referred to by the BeginSeqNo(7) field.
- ๐ Improve BeginSeqNo(7) handling (Marcus Harte, Jussi Virtanen)
Respond with a Reject(3) message if the BeginSeqNo(7) value in a ResendRequest(2) message exceeds the current MsgSeqNum(34) value.
- ๐ Improve NewSeqNo(36) handling (Marcus Harte, Jussi Virtanen)
Limit the NewSeqNo(36) value in a subsequent SequenceReset(4) message to the current MsgSeqNum(34) if the EndSeqNo(16) value in the preceding ResendRequest(2) message exceeds it.
- ๐ Improve
-
v1.2.0 Changes
March 03, 2020๐ Release Notes
โฌ๏ธ See the upgrade instructions.
๐ Improve MsgType(35) handling (Jonathan Heusser, Jussi Virtanen)
When checking for SequenceReset(4), check the first byte of the MsgType(35) value before checking its length. This avoids one conditional check for most messages.
โ Remove a dead branch from the MsgType(35) switch statement following the MsgSeqNum(34) handling.
๐ Fix
send
command in Philadelphia Terminal Client (Jussi Virtanen)๐ Make it possible to send a message containing a field with whitespace characters.
๐ Improve
FIXValue#asFloat
andFIXValue#setFloat
(Jussi Virtanen)๐ Improve
FIXValueTest
(Jussi Virtanen)๐ Improve
FIXConfigTest
(Jan Nielsen)โ Add example script for Philadelphia Terminal Client (Jussi Virtanen)
๐ Mark
FIXValue#asCheckSum()
as deprecated (Jussi Virtanen)๐ Improve Philadelphia Terminal Client documentation (Jussi Virtanen)
๐ Improve
FIXMessageParserBenchmark
(Jussi Virtanen)โ Add a benchmark for when the incoming CheckSum(10) check is disabled.
๐ Improve
FIXMessageParser
(Jussi Virtanen)๐ Having the incoming CheckSum(10) check in a separate method makes message parsing 9.6% faster in the performance test when the incoming CheckSum(10) check is disabled and 3.7% faster when it is enabled.
๐ Inlining parsing of BeginString(8), BodyLength(9), and CheckSum(10) tags makes message parsing further 5.9% faster in the performance test when the incoming CheckSum(10) check is disabled and 6.1% faster when it is enabled.
๐ Fix
wait
command in Philadelphia Terminal Client (Jussi Virtanen)The
wait
command looked at received messages at an interval, stopping if the last received message had a matching MsgType(35) value. If two or more messages were received within one interval, thewait
command might have missed a matching MsgType(35) value and erroneously continued waiting.โ Remove transitive Joda-Time dependency (Jussi Virtanen)
Replace the transitive Joda-Time 2.10.5 dependency with a Joda-Time 2.x dependency. This makes it possible for applications to manage their Joda-Time 2.x and Philadelphia Core dependencies independently.
๐ Improve
FIXValue#asTimeOnly
(Jussi Virtanen)Set the fields all at once rather than one by one. This makes the method 33% faster.
Maven
The following artifacts are available in the Central Repository:
Name Artifact ID Version Philadelphia Core philadelphia-core
1.2.0
Philadelphia FIX 4.2 philadelphia-fix42
1.2.0
Philadelphia FIX 4.3 philadelphia-fix43
1.2.0
Philadelphia FIX 4.4 philadelphia-fix44
1.2.0
Philadelphia FIX 5.0 philadelphia-fix50
1.2.0
Philadelphia FIX 5.0 SP1 philadelphia-fix50sp1
1.2.0
Philadelphia FIX 5.0 SP2 philadelphia-fix50s2p
1.2.0
Philadelphia FIXT 1.1 philadelphia-fixt11
1.2.0
The Group ID for all artifacts is
com.paritytrading.philadelphia
. -
v1.1.1 Changes
June 25, 2019๐ Release Notes
๐ Fix message header buffer handling (Jussi Virtanen)
Before manipulating the message header, invoke
ByteBuffer#clear()
to reset the buffer's limit back to its capacity.Maven
The following artifacts are available in the Central Repository:
Name Artifact ID Version Philadelphia Core philadelphia-core
1.1.1
Philadelphia FIX 4.2 philadelphia-fix42
1.1.1
Philadelphia FIX 4.3 philadelphia-fix43
1.1.1
Philadelphia FIX 4.4 philadelphia-fix44
1.1.1
Philadelphia FIX 5.0 philadelphia-fix50
1.1.1
Philadelphia FIX 5.0 SP1 philadelphia-fix50sp1
1.1.1
Philadelphia FIX 5.0 SP2 philadelphia-fix50s2p
1.1.1
Philadelphia FIXT 1.1 philadelphia-fixt11
1.1.1
The Group ID for all artifacts is
com.paritytrading.philadelphia
. -
v1.1.0 Changes
June 21, 2019๐ Release Notes
๐ Improve
FIXValue
class (Jonathan Heusser, Jussi Virtanen)๐ Make
FIXValue#set()
work correctly if the specified value container contains a value at a non-zero offset.โก๏ธ Optimize the bytecode sizes of various methods so that they are under HotSpot's default maximum inline size of 35 bytes. Move the logic to construct and throw exceptions off the fast path. Replace a modulo operation with a bitwise AND operation.
๐ Improve
FIXConnection
class (Jussi Virtanen)๐ Simplify message header and trailer handling. Move the logic to handle unexpected MsgSeqNum(34) values as well as construct and throw exceptions off the fast path. Simplify TestRequest(1) and SequenceReset(4) handling.
โ After sending a TestRequest(1) message, consider the keep-alive procedure successful on receiving any data from the other party, not just a Heartbeat(0) message.
โก๏ธ Optimize the bytecode sizes of
FIXConnection#update()
andFIXConnection#updateCompID()
so that they are under HotSpot's default maximum inline size of 35 bytes. Note that after this change, these methods will throw aNullPointerException
instead of anIllegalStateException
if any of the required fields are not found.โก๏ธ Optimize
FIXMessage
class (Jussi Virtanen)๐ Move the logic to construct and throw exceptions off the fast path.
โก๏ธ Optimize
FIXTimestamps
class (Jussi Virtanen)โ Add a buffer to make formatting operations faster.
๐ Improve
FIXMessageParser
class (Jonathan Heusser, Sergey Khomich, Jussi Virtanen)๐ Make the class public. Replace a modulo operation with a bitwise AND operation. Add a performance test.
โ Add
FIXValue#asBoolean()
andFIXValue#setBoolean()
methods (Jussi Virtanen)โก๏ธ Optimize
FIXTags
class (Jussi Virtanen)๐ Move the logic to construct and throw exceptions off the fast path.
๐ Improve code quality (Jan Nielsen, Jussi Virtanen)
๐ Clean up project dependencies. Clean up imports. Remove superfluous
public
modifiers. Usefinal
modifier.๐ Improve Philadelphia Code Generator (Jussi Virtanen)
๐ Make Philadelphia Code Generator's version track Philadelphia's version. Add a comment to output files indicating that they have been automatically generated.
๐ Improve Philadelphia Terminal Client (Jussi Virtanen)
๐ Handle Ctrl+C and Ctrl+D. Fix command completion.
๐ Improve Philadelphia Example Initiator (Arturo Salinas)
๐ Fix coordinated omission: instead of sending the next message right after receiving the previous message, send messages at regular intervals.
โฌ๏ธ Upgrade to Joda-Time 2.10.2 (Jussi Virtanen)
Maven
The following artifacts are available in the Central Repository:
Name Artifact ID Version Philadelphia Core philadelphia-core
1.1.0
Philadelphia FIX 4.2 philadelphia-fix42
1.1.0
Philadelphia FIX 4.3 philadelphia-fix43
1.1.0
Philadelphia FIX 4.4 philadelphia-fix44
1.1.0
Philadelphia FIX 5.0 philadelphia-fix50
1.1.0
Philadelphia FIX 5.0 SP1 philadelphia-fix50sp1
1.1.0
Philadelphia FIX 5.0 SP2 philadelphia-fix50s2p
1.1.0
Philadelphia FIXT 1.1 philadelphia-fixt11
1.1.0
The Group ID for all artifacts is
com.paritytrading.philadelphia
. -
v1.0.0 Changes
August 17, 2018๐ Release Notes
- โ Remove
FIXField
class - โ Add
FIXMessage#tagAt()
method - โ Add
FIXMessage#valueAt()
method - ๐ Rename
FIXMessage#findIndex()
method toindexOf()
- ๐ Rename
FIXMessage#findField()
method tovalueOf()
- โก๏ธ Optimize TCP socket handling
- โ Add
FIXMessage.fromString()
method - ๐ Rename
FIXSession
class toFIXConnection
- ๐ Rename
FIXStatusListener
class toFIXConnectionStatusListener
- โฌ๏ธ Upgrade to Joda-Time 2.10
โฌ๏ธ See the upgrade instructions for more details.
Maven
The following artifacts are available in the Central Repository:
Name Artifact ID Version Philadelphia Core philadelphia-core
1.0.0
Philadelphia FIX 4.2 philadelphia-fix42
1.0.0
Philadelphia FIX 4.3 philadelphia-fix43
1.0.0
Philadelphia FIX 4.4 philadelphia-fix44
1.0.0
Philadelphia FIX 5.0 philadelphia-fix50
1.0.0
Philadelphia FIX 5.0 SP1 philadelphia-fix50sp1
1.0.0
Philadelphia FIX 5.0 SP2 philadelphia-fix50s2p
1.0.0
Philadelphia FIXT 1.1 philadelphia-fixt11
1.0.0
The Group ID for all artifacts is
com.paritytrading.philadelphia
. - โ Remove
-
v0.7.0 Changes
June 25, 2018๐ Release Notes
- โ Add comment support to Philadelphia Terminal Client
- โ Add input file support to Philadelphia Terminal Client
- ๐ Improve
messages
command in Philadelphia Terminal Client - โ Add
sleep
command to Philadelphia Terminal Client - โ Add
wait
command to Philadelphia Terminal Client - ๐ Make
Clock
interface public - โ Add
FIXMessage#findIndex
method - Clean up MatchType(574) handling in Philadelphia FIX 5.0
- โ Add Philadelphia Code Generator
Maven
The following artifacts are available in the Central Repository:
Name Artifact ID Version Philadelphia Core philadelphia-core
0.7.0
Philadelphia FIX 4.2 philadelphia-fix42
0.7.0
Philadelphia FIX 4.3 philadelphia-fix43
0.7.0
Philadelphia FIX 4.4 philadelphia-fix44
0.7.0
Philadelphia FIX 5.0 philadelphia-fix50
0.7.0
Philadelphia FIX 5.0 SP1 philadelphia-fix50sp1
0.7.0
Philadelphia FIX 5.0 SP2 philadelphia-fix50s2p
0.7.0
Philadelphia FIXT 1.1 philadelphia-fixt11
0.7.0
The Group ID for all artifacts is
com.paritytrading.philadelphia
. -
v0.6.1 Changes
March 06, 2018๐ Release Notes
- โ Add
FIXMessage#toString()
method - โ Add
FIXConfig#toString()
method - ๐ Use
System.arraycopy()
inFIXValue#set()
method
Maven
The following artifacts are available in the Central Repository:
Name Artifact ID Version Philadelphia Core philadelphia-core
0.6.1
Philadelphia FIX 4.2 philadelphia-fix42
0.6.1
Philadelphia FIX 4.3 philadelphia-fix43
0.6.1
Philadelphia FIX 4.4 philadelphia-fix44
0.6.1
Philadelphia FIX 5.0 philadelphia-fix50
0.6.1
Philadelphia FIX 5.0 SP1 philadelphia-fix50sp1
0.6.1
Philadelphia FIX 5.0 SP2 philadelphia-fix50s2p
0.6.1
Philadelphia FIXT 1.1 philadelphia-fixt11
0.6.1
The Group ID for all artifacts is
com.paritytrading.philadelphia
. - โ Add
-
v0.6.0 Changes
August 13, 2017๐ Release Notes
- Extract Philadelphia FIX 4.2 module
- Extract Philadelphia FIX 4.3 module
- Extract Philadelphia FIX 4.4 module
- Extract Philadelphia FIX 5.0 module
- Extract Philadelphia FIX 5.0 SP1 module
- Extract Philadelphia FIX 5.0 SP2 module
- Extract Philadelphia FIXT 1.1 module
- โ Add alias for CxlRejResponseTo(434) value
- โ Add
FIXValue#copyTo
method - Clean up QuoteCondition(276) values
- ๐ Make incoming CheckSum(10) check optional
- ๐ Use direct byte buffer
- ๐ Improve
FIXSession
performance - ๐ Improve project structure
- โฌ๏ธ Upgrade to Joda-Time 2.9.9
Maven
The following artifacts are available in the Central Repository:
Name Artifact ID Version Philadelphia Core philadelphia-core
0.6.0
Philadelphia FIX 4.2 philadelphia-fix42
0.6.0
Philadelphia FIX 4.3 philadelphia-fix43
0.6.0
Philadelphia FIX 4.4 philadelphia-fix44
0.6.0
Philadelphia FIX 5.0 philadelphia-fix50
0.6.0
Philadelphia FIX 5.0 SP1 philadelphia-fix50sp1
0.6.0
Philadelphia FIX 5.0 SP2 philadelphia-fix50s2p
0.6.0
Philadelphia FIXT 1.1 philadelphia-fixt11
0.6.0
The Group ID for all artifacts is
com.paritytrading.philadelphia
. -
v0.5.0 Changes
August 23, 2016- ๐ Fix links in documentation
- โ Add access to byte by index