Releases: esanchezros/quickfixj-spring-boot-starter
Releases · esanchezros/quickfixj-spring-boot-starter
3.2.0
What's Changed
- add NestedConfigurationProperty annotations to QuickFixJBootProperties by @McKratt in #193
- Bump org.springframework.boot:spring-boot-dependencies from 3.3.6 to 3.4.2 by @dependabot in #183
- Bump step-security/harden-runner from 2.10.2 to 2.11.0 by @dependabot in #192
- Bump github/codeql-action from 3.28.0 to 3.28.9 by @dependabot in #189
- Bump actions/setup-java from 4.6.0 to 4.7.0 by @dependabot in #186
- Bump org.yaml:snakeyaml from 2.3 to 2.4 by @dependabot in #191
- Updated version in docs to 3.2.0 by @esanchezros in #194
New Contributors
Full Changelog: 3.1.0...3.2.0
3.1.0
What's Changed
- [StepSecurity] Apply security best practices by @step-security-bot in #138
- Bump org.apache.maven.plugins:maven-release-plugin from 2.5.3 to 3.1.1 by @dependabot in #139
- Bump org.apache.maven.plugins:maven-failsafe-plugin from 3.5.0 to 3.5.1 by @dependabot in #145
- Bump org.springframework.boot:spring-boot-dependencies from 3.3.4 to 3.3.5 by @dependabot in #144
- Bump ossf/scorecard-action from 2.3.3 to 2.4.0 by @dependabot in #143
- Bump org.apache.maven.plugins:maven-source-plugin from 3.2.1 to 3.3.1 by @dependabot in #142
- Bump org.apache.maven.plugins:maven-gpg-plugin from 3.0.1 to 3.2.7 by @dependabot in #141
- Bump actions/dependency-review-action from 4.3.4 to 4.3.5 by @dependabot in #140
- Renamed licence template file by @esanchezros in #137
- Bump org.apache.maven.plugins:maven-surefire-plugin from 3.5.0 to 3.5.1 by @dependabot in #146
- Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.4.1 to 3.10.1 by @dependabot in #147
- Bump actions/dependency-review-action from 4.3.5 to 4.4.0 by @dependabot in #149
- Bump github/codeql-action from 3.27.0 to 3.27.2 by @dependabot in #154
- Bump github/codeql-action from 3.27.2 to 3.27.5 by @dependabot in #160
- Bump org.springframework.boot:spring-boot-dependencies from 3.3.5 to 3.3.6 by @dependabot in #158
- Bump org.apache.maven.plugins:maven-surefire-plugin from 3.5.1 to 3.5.2 by @dependabot in #152
- Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.10.1 to 3.11.1 by @dependabot in #151
- Bump step-security/harden-runner from 2.10.1 to 2.10.2 by @dependabot in #157
- Bump org.sonatype.plugins:nexus-staging-maven-plugin from 1.6.13 to 1.7.0 by @dependabot in #148
- Bump org.apache.maven.plugins:maven-failsafe-plugin from 3.5.1 to 3.5.2 by @dependabot in #150
- Bump github/codeql-action from 3.27.5 to 3.28.0 by @dependabot in #171
- Bump actions/setup-java from 4.5.0 to 4.6.0 by @dependabot in #169
- Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.11.1 to 3.11.2 by @dependabot in #164
- Bump actions/upload-artifact from 4.4.3 to 4.5.0 by @dependabot in #168
- Bump org.quickfixj:quickfixj from 2.3.1 to 2.3.2 by @dafriz in #173
- Fix build by @esanchezros in #177
New Contributors
- @step-security-bot made their first contribution in #138
- @dependabot made their first contribution in #139
- @dafriz made their first contribution in #173
Full Changelog: 3.0.1...3.1.0
3.0.1
2.18.0
What's Changed
- Replace quickfixj-messages-all with specific quickfixj-messages version and made them optional by @esanchezros in #133
Thanks to @Svanar for suggesting the improvement
Breaking change
The QuickFIX/J Spring Boot Starter no longer includes quickfixj-messages-all dependency and now includes the standard published FIX specification versions from FIX 4.0 to FIX Latest built by the QuickFIX/J project as an optional dependency. They are no longer specified as runtime dependencies, making it easier to customize QuickFIX/J deployments.
- <dependency>
- <groupId>org.quickfixj</groupId>
- <artifactId>quickfixj-messages-all</artifactId>
- </dependency>
+ <dependency>
+ <groupId>org.quickfixj</groupId>
+ <artifactId>quickfixj-messages-fix40</artifactId>
+ <optional>true</optional>
+ </dependency>
+ <dependency>
+ <groupId>org.quickfixj</groupId>
+ <artifactId>quickfixj-messages-fix41</artifactId>
+ <optional>true</optional>
+ </dependency>
+ <dependency>
+ <groupId>org.quickfixj</groupId>
+ <artifactId>quickfixj-messages-fix42</artifactId>
+ <optional>true</optional>
+ </dependency>
+ <dependency>
+ <groupId>org.quickfixj</groupId>
+ <artifactId>quickfixj-messages-fix43</artifactId>
+ <optional>true</optional>
+ </dependency>
+ <dependency>
+ <groupId>org.quickfixj</groupId>
+ <artifactId>quickfixj-messages-fix44</artifactId>
+ <optional>true</optional>
+ </dependency>
+ <dependency>
+ <groupId>org.quickfixj</groupId>
+ <artifactId>quickfixj-messages-fix50</artifactId>
+ <optional>true</optional>
+ </dependency>
+ <dependency>
+ <groupId>org.quickfixj</groupId>
+ <artifactId>quickfixj-messages-fix50sp1</artifactId>
+ <optional>true</optional>
+ </dependency>
+ <dependency>
+ <groupId>org.quickfixj</groupId>
+ <artifactId>quickfixj-messages-fix50sp2</artifactId>
+ <optional>true</optional>
+ </dependency>
+ <dependency>
+ <groupId>org.quickfixj</groupId>
+ <artifactId>quickfixj-messages-fixt11</artifactId>
+ <optional>true</optional>
+ </dependency>
Full Changelog: 2.17.1...2.18.0
2.17.1
What's Changed
- [ISSUE-122] update: server setting code / manual link by @ChoiJunsik in #123
- Added github permissions by @esanchezros in #125
- Added ossf badge by @esanchezros in #126
- update health actuator property name in readme by @ChoiJunsik in #127
- Fix for Spring Boot 3, Sanitizer compatibililty by @esanchezros in #129
New Contributors
- @ChoiJunsik made their first contribution in #123
Full Changelog: 2.17.0...2.17.1
2.17.0
Full Changelog: 2.16.4...2.17.0
2.16.4
Full Changelog: 2.16.2...2.16.4
2.16.2
Full Changelog: 2.16.1...2.16.2
2.16.1
Full Changelog: 2.15.4...2.16.1
2.15.4
Full Changelog: 2.15.3...2.15.4