Skip to content

Commit 8b13e1a

Browse files
committed
Updated version to RTSDK 2.3.1.G1 which is EMA/ETA 3.9.1.1 and updated Java/CHANGELOG
1 parent a3f539c commit 8b13e1a

File tree

4 files changed

+29
-11
lines changed

4 files changed

+29
-11
lines changed

CMake/rtsdkInfo.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ unset(rtsdk_DEPENDS_LIST)
1313
set(rtsdk_INTERNAL_API_VERSION_MAJOR 3)
1414
set(rtsdk_INTERNAL_API_VERSION_MINOR 9)
1515
set(rtsdk_INTERNAL_API_VERSION_PATCH 1)
16-
set(rtsdk_INTERNAL_API_VERSION_TWEAK 0)
17-
set(rtsdk_INTERNAL_RELEASE_TWEAK L1)
16+
set(rtsdk_INTERNAL_API_VERSION_TWEAK 1)
17+
set(rtsdk_INTERNAL_RELEASE_TWEAK G1)
1818
set(rtsdk_RELEASE_TYPE rrg)
1919

2020
set( librssl_SO_VERSION 29 )

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ cmake_minimum_required (VERSION 3.22.0)
88
# guarantee of a successful build if changed.
99

1010
project (rtsdk
11-
VERSION 2.3.1.0
11+
VERSION 2.3.1.1
1212
LANGUAGES C CXX)
1313

1414
set(rtsdk_CMAKE_DIR "${rtsdk_SOURCE_DIR}/CMake")

Java/CHANGELOG.md

Lines changed: 23 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,41 @@ There are three types of RTSDK releases that append a letter directly followed b
99
"E" releases (E-Loads) are emergency RTSDK releases that are uploaded to MyAccount and Developer Community but not to GitHub. Also note that emergency releases may only be partial (i.e., Java or C++/C only).
1010

1111
----------------------------------------------------------------------------------------
12-
CURRENT RELEASE HIGHLIGHTS - RTSDK Java 2.3.1.L1 aka EMA/ETA 3.9.1.L1 aka 3.9.1.0
12+
CURRENT RELEASE HIGHLIGHTS - RTSDK Java 2.3.1.G1 aka EMA/ETA 3.9.1.G1 aka 3.9.1.1
1313
----------------------------------------------------------------------------------------
1414

15-
This release has support for the Preferred Host feature which applies to both channelset/connection-recovery and warm standby: the feature allows a switch back to a preferred host in channelSet configuration or a preferred group in warm standby configuration.
16-
17-
In this release is added support for update filtering feature which permits API users to request a filter on update type in the Login Request message. Used with a server side that supports this feature, there is a potential for bandwidth saving by limiting traffic to certain update types.
15+
This is a maintenance release with critical fixes for customer issues.
1816

19-
In addition, this serves as a maintenance release with fixes.
17+
Customer Issues Resolved
18+
------------------------
19+
- [Case Number: 15088925] - [RTSDK-10072] - Fixes to exceptions with multiple Consumers started in one application
20+
- [Case Number: 15242251] - [RTSDK-10184] - EMA Java com.refinitiv.eta.json.util.UtilQueue.growPool threw ArrayIndexOutOfBoundsException
2021

2122
----------------------------------------------------------------------------------------
2223
FULL CHANGELOG
2324
----------------------------------------------------------------------------------------
2425

26+
--------------------------------------------
27+
RTSDK Java Release 2.3.1.G1 (Sep 30, 2025)
28+
--------------------------------------------
29+
30+
This is a maintenance release with critical fixes for customer issues.
31+
32+
Both ETA Java and EMA Java 3.9.1.L2 Issues Resolved
33+
---------------------------------------------------
34+
- [RTSDK-10072] - Fixes to exceptions with multiple Consumers started in one application [Case Number: 15088925]
35+
- [RTSDK-10184] - EMA Java com.refinitiv.eta.json.util.UtilQueue.growPool threw ArrayIndexOutOfBoundsException [Case Number: 15242251]
36+
2537
--------------------------------------------
2638
RTSDK Java Release 2.3.1.L1 (Sep 9, 2025)
2739
--------------------------------------------
2840

41+
This release has support for the Preferred Host feature which applies to both channelset/connection-recovery and warm standby: the feature allows a switch back to a preferred host in channelSet configuration or a preferred group in warm standby configuration.
42+
43+
In this release is added support for update filtering feature which permits API users to request a filter on update type in the Login Request message. Used with a server side that supports this feature, there is a potential for bandwidth saving by limiting traffic to certain update types.
44+
45+
In addition, this serves as a maintenance release with fixes.
46+
2947
EMA Java 3.9.1.L1 Issues Resolved
3048
---------------------------------
3149
- [RTSDK-8152] - New Feature: EMAJ: Enhance RmtesBuffer to add getAsHex

Java/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@ repositories {
3838
ext.YEAR = '2025'
3939

4040
ext.BuildDate = 'Wed Jul 30 8:00:00 CDT ' + "$YEAR"
41-
ext.SpecificationVersion = '3.9.1.0'
41+
ext.SpecificationVersion = '3.9.1.1'
4242
ext.SpecificationVersionShort = '3.9.1'
4343

4444
// Comment out line below to publish offical release
4545
// ext.SpecificationVersion = "$SpecificationVersion" + "-SNAPSHOT"
4646

4747
// Update below to L1.all.rrg, G1.all.gload, or E1.all.eload when needed
48-
ext.etaImplementationVersion = 'etaj' + "$SpecificationVersionShort" + '.L1.all.rrg'
49-
ext.emaImplementationVersion = 'emaj' + "$SpecificationVersionShort" + '.L1.all.rrg'
48+
ext.etaImplementationVersion = 'etaj' + "$SpecificationVersionShort" + '.G1.all.rrg'
49+
ext.emaImplementationVersion = 'emaj' + "$SpecificationVersionShort" + '.G1.all.rrg'
5050

5151
// NOTE! update with new asset version
5252
ext.BINARY_PACK_VERSION_TO_DOWNLOAD = '2.3.1.L1'

0 commit comments

Comments
 (0)