You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Cpp-C/CHANGELOG.md
+28-11Lines changed: 28 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
This is the change log of the Refinitiv Real-Time SDK (RTSDK) for C++/C. RTSDK consists of Enterprise Message API (EMA) and Enterprise Transport API (ETA). This file contains history starting from version 1.2.0 which is when all components (EMA C++, EMA Java, ETA C, ETA Java) of RTSDK were fully open sourced. Note that RTSDK product version numbers start from 1.2.0 and EMA/ETA version numbers start from 3.2.0.
2
2
3
-
Rebranding NOTE: Refinitiv Real-Time SDK was formerly known as Elekton SDK or ESDK.
3
+
Rebranding NOTE: Refinitiv Real-Time SDK was formerly known as Elektron SDK or ESDK.
4
4
5
5
There are three types of RTSDK releases that append a letter directly followed by a number to the version number.
6
6
@@ -9,23 +9,40 @@ There are three types of RTSDK releases that append a letter directly followed b
9
9
"E" releases (E-Loads) are emergency RTSDK releases that are uploaded to MyRefinitiv and Developer Community but not to GitHub. Also note that emergency releases may only be partial (i.e., Java or C++/C only).
This is a maintenance release consisting of a fix to customer issue.
26
+
27
+
ETA C 3.6.2.G2 Issues Resolved
28
+
--------------------------------
29
+
-[RTSDK-5431] - Permitted RMTES partial updates to be sent without buffering
30
+
31
+
EMA C++ 3.6.2.G2 Issues Resolved
32
+
--------------------------------
33
+
-[RTSDK-5450] - Altered EMA RDP applications (113 & 450) to take URL overrides for token URL and service discovery URL
34
+
35
+
Both ETA C and EMA C++ 3.6.2.G2 Issues Resolved
36
+
-----------------------------------------------
37
+
-[RTSDK-5411] - Change to default location for RTO from us-east to us-east-1 due to addition of us-east-2
38
+
-[RTSDK-5440] - Update to documentation to change default location for RTO from us-east to us-east-1 due to addition of us-east-2
39
+
25
40
--------------------------------------------
26
41
RTSDK C++/C Release 2.0.2.G1 (Aug 6, 2021)
27
42
--------------------------------------------
28
43
44
+
This is a maintenance release consisting of a fix to customer issue.
45
+
29
46
ETA C 3.6.2.G1 Issues Resolved
30
47
--------------------------------
31
48
-[RTSDK-5370] - Added -compressionType and -compressionLevel to ProvPerf and -compressionType to ConsPerf
@@ -39,7 +56,7 @@ Both ETA C and EMA C++ 3.6.2.G1 Issues Resolved
39
56
RTSDK C++/C Release 2.0.2.L1 (Jun 23, 2021)
40
57
--------------------------------------------
41
58
42
-
This is a maintenace release consisting of fixes to customer issues, support for EMA C++ Interactive ProvPerf and EMA C++ NIProvPerf tools and changes to ConsPerf tool to provide overhead of RWF to JSON conversion in application and to improve statistics.
59
+
This is a maintenance release consisting of fixes to customer issues, support for EMA C++ Interactive ProvPerf and EMA C++ NIProvPerf tools and changes to ConsPerf tool to provide overhead of RWF to JSON conversion in application and to improve statistics.
43
60
44
61
EMA C++ 3.6.2.L1 Issues Resolved
45
62
--------------------------------
@@ -236,14 +253,14 @@ EMA C++ 3.5.0.G1 Issues Resolved
236
253
-[RTSDK-3843] Support SO_REUSEADDR to permit server side socket to be reused for loadbalancing
237
254
-[RTSDK-3907] Ema Cons113 Example does NOT work with EncryptedProtocolType::RSSL_WEBSOCKET
238
255
-[RTSDK-3908] Support EMA RDP Websocket encrypted connection example
This release introduces support for Websocket Transport in RTSDK with capabilities like compression, fragmentation and packing. With WS tranport, user can choose either JSON (rssl.json.v2 aka tr_json2; tr_json2 will be deprecated) or RWF (rssl_rwf) data formats to send over the wire. Application layer will continue to receive data in RWF data format. In addition, conversion from RWF to JSON and vice versa is also available as part of librssl and as a separate shared library.
282
+
This release introduces support for Websocket Transport in RTSDK with capabilities like compression, fragmentation and packing. With WS transport, user can choose either JSON (rssl.json.v2 aka tr_json2; tr_json2 will be deprecated) or RWF (rssl_rwf) data formats to send over the wire. Application layer will continue to receive data in RWF data format. In addition, conversion from RWF to JSON and vice versa is also available as part of librssl and as a separate shared library.
Copy file name to clipboardExpand all lines: Cpp-C/Ema/README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ In addition, HTML documentation is available in Cpp-C/Ema/Docs. For addtional do
24
24
25
25
- TCP/IP Connectivity
26
26
27
-
- RMTES Decoder: EMA provides a built in RMTES decoder. IF desired, application may cache RmtesBuffer objects and apply all the received changes to them.
27
+
- RMTES Decoder: EMA provides a built in RMTES decoder. If desired, application may cache RmtesBuffer objects and apply all the received changes to them.
28
28
29
29
- Data::toString(): All OMM containers, primitives and messages may simply be printed out to screen in a standardized output format.
30
30
@@ -98,14 +98,14 @@ Shared library use is similar to static library use, however there are several k
98
98
99
99
Library Name Package Version
100
100
------------ ---------------
101
-
libema.lib ema3.6.2.G1
101
+
libema.lib ema3.6.2.G2
102
102
103
103
##### Shared Library Manifest
104
104
105
105
Library Name Package Version
106
106
------------- ---------------
107
-
libema.lib ema3.6.2.G1
108
-
libema.dll ema3.6.2.G1
107
+
libema.lib ema3.6.2.G2
108
+
libema.dll ema3.6.2.G2
109
109
110
110
#### Linux
111
111
@@ -125,13 +125,13 @@ This will create all necessary soft links for example makefiles to link. It is s
Copy file name to clipboardExpand all lines: Cpp-C/Eta/README.md
+27-27Lines changed: 27 additions & 27 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -140,30 +140,30 @@ Shared library use is similar to static library use, however there are several k
140
140
141
141
Library Name Package Version
142
142
------------ ---------------
143
-
librssl.lib* eta3.6.2.G1
144
-
librsslVA.lib eta3.6.2.G1
145
-
librsslVACache.lib eta3.6.2.G1
146
-
libansi.lib eta3.6.2.G1
147
-
libdacs.lib eta3.6.2.G1
143
+
librssl.lib* eta3.6.2.G2
144
+
librsslVA.lib eta3.6.2.G2
145
+
librsslVACache.lib eta3.6.2.G2
146
+
libansi.lib eta3.6.2.G2
147
+
libdacs.lib eta3.6.2.G2
148
148
149
149
*librssl.lib includes JsonConverter
150
150
151
151
##### Shared Library Manifest
152
152
153
153
Library Name Package Version
154
154
------------- ---------------
155
-
librssl.dll eta3.6.2.G1
156
-
librssl.lib eta3.6.2.G1
157
-
librssl.pdb eta3.6.2.G1
158
-
librsslVA.dll eta3.6.2.G1
159
-
librsslVA.lib eta3.6.2.G1
160
-
librsslVA.pdb eta3.6.2.G1
161
-
librsslVACache.dll eta3.6.2.G1
162
-
librsslVACache.lib eta3.6.2.G1
163
-
librsslVACache.pdb eta3.6.2.G1
164
-
librsslJsonConverter.dll eta3.6.2.G1
165
-
librsslJsonConverter.lib eta3.6.2.G1
166
-
librsslJsonConverter.pdb eta3.6.2.G1
155
+
librssl.dll eta3.6.2.G2
156
+
librssl.lib eta3.6.2.G2
157
+
librssl.pdb eta3.6.2.G2
158
+
librsslVA.dll eta3.6.2.G2
159
+
librsslVA.lib eta3.6.2.G2
160
+
librsslVA.pdb eta3.6.2.G2
161
+
librsslVACache.dll eta3.6.2.G2
162
+
librsslVACache.lib eta3.6.2.G2
163
+
librsslVACache.pdb eta3.6.2.G2
164
+
librsslJsonConverter.dll eta3.6.2.G2
165
+
librsslJsonConverter.lib eta3.6.2.G2
166
+
librsslJsonConverter.pdb eta3.6.2.G2
167
167
168
168
#### Linux
169
169
Shared library use is similar to static library use, however there are several key differences. The shared library can be stored in a different location on the machine than the application using it. Ensure that the shared library location is present in the LD_LIBRARY_PATH being used by the application. The library use can be confirmed by using the ldd command on the application. This will show the shared library dependencies and where they are being resolved to.
@@ -181,22 +181,22 @@ The Transport API provides a helpful script that will create soft links for the
Copy file name to clipboardExpand all lines: Java/CHANGELOG.md
+23-13Lines changed: 23 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
This is the change log of the Refinitiv Real-Time SDK (RTSDK) for Java. RTSDK consists of Enterprise Message API (EMA) and Enterprise Transport API (ETA). This file contains history starting from version 1.2.0 which is when all components (EMA C++, EMA Java, ETA C, ETA Java) of RTSDK were fully open sourced. Note that RTSDK product version numbers start from 1.2.0 and EMA/ETA version numbers start from 3.2.0.
2
2
3
-
Rebranding NOTE: Refinitiv Real-Time SDK was formerly known as Elekton SDK or ESDK.
3
+
Rebranding NOTE: Refinitiv Real-Time SDK was formerly known as Elektron SDK or ESDK.
4
4
5
5
There are three types of RTSDK releases that append a letter directly followed by a number to the version number.
6
6
@@ -9,25 +9,35 @@ There are three types of RTSDK releases that append a letter directly followed b
9
9
"E" releases (E-Loads) are emergency RTSDK releases that are uploaded to MyRefinitiv and Developer Community but not to GitHub. Also note that emergency releases may only be partial (i.e., Java or C++/C only).
This is a maintenace release consisting of a fix to customer issue.
16
-
17
-
Customer Issues Resolved
18
-
------------------------
19
-
-[Case Number: 10057447] - [RTSDK-5292] - NullPointerException in EMA library due to improper login request initialization upon re-submit (submit fails under load) with session mgmt enabled
20
-
15
+
This is a maintenance release consisting of fixes.
This is a maintenace release consisting of fixes to customer issues, fixes for the Refinitiv Real-Time Market Data Viewer (RRTViewer) and changes to ConsPerf tool to provide overhead of RWF to JSON conversion in application and to improve statistics.
53
+
This is a maintenance release consisting of fixes to customer issues, fixes for the Refinitiv Real-Time Market Data Viewer (RRTViewer) and changes to ConsPerf tool to provide overhead of RWF to JSON conversion in application and to improve statistics.
This is a maintenace release which also introduces the Refinitiv Real-Time Market Data Viewer (RRTViewer), a OMM Consumer application with support for several connection types and connectivity to Advanced Distribution Server, Refinitiv Real-Time - Optimized (RRTO) or an OMM Provider.
98
+
This is a maintenance release which also introduces the Refinitiv Real-Time Market Data Viewer (RRTViewer), a OMM Consumer application with support for several connection types and connectivity to Advanced Distribution Server, Refinitiv Real-Time - Optimized (RRTO) or an OMM Provider.
This release introduces support for Websocket Transport in RTSDK with capabilities like compression, fragmentation and packing. With WS tranport, user can choose either JSON (rssl.json.v2 aka tr_json2; tr_json2 will be deprecated) or RWF (rssl_rwf) data formats to send over the wire. Application layer will continue to receive data in RWF data format. In addition, conversion from RWF to JSON and vice versa is also available as part of librssl and as a separate shared library. This release adds Server Side Encryption support in EMA and ETA.
127
+
This release introduces support for Websocket Transport in RTSDK with capabilities like compression, fragmentation and packing. With WS transport, user can choose either JSON (rssl.json.v2 aka tr_json2; tr_json2 will be deprecated) or RWF (rssl_rwf) data formats to send over the wire. Application layer will continue to receive data in RWF data format. In addition, conversion from RWF to JSON and vice versa is also available as part of librssl and as a separate shared library. This release adds Server Side Encryption support in EMA and ETA.
118
128
119
129
EMA Java 3.6.1.L1 Issues Resolved
120
130
---------------------------------
@@ -288,7 +298,7 @@ ETA Java 3.5.0.G1 Issues Resolved
288
298
-[RTSDK-3618] Dictionary.entry(int fieldId) returns the same DictionaryEntry instance [Case Number: 07697024 and GitHub # 141]
289
299
-[RTSDK-3823] Support release of memory used by reactor events by adding maxEventsInPool
0 commit comments