forked from msitt/blpapi-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchangelog.txt
296 lines (235 loc) · 10.1 KB
/
changelog.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
Version 3.19.1:
===============
- Stability and performance improvements
Version 3.19.0:
===============
- Add complete support for elements with bytearray data types ('bytes')
'EventFormatter.setValue(Name, bytes)' can now be used to set elements
of type Bytearray and the value of these elements are retrievable via
'Message.getElementAsBytes(Name)' or 'Element.getElementAsBytes(Name)'
or 'Element.getValueAsBytes()'.
- Encourage usage of 'Name' in setters and getters taking the 'name' argument by string
Developers are encouraged to prefer 'Name' type parameter for methods
that accept either 'Name' or 'str' as the use of 'Name' is more
performant and functionally equivalent to 'str'.
This recommendation is enforced for clients with strict type check enabled.
Classes with such methods include 'Element', 'EventFormatter', 'Message',
'MessageFormatter', 'Request', 'Service', 'Name' and 'Schema'.
- Stability and performance improvements
Version 3.18.3:
===============
- Stability and performance improvements
Version 3.18.2:
===============
- Stability and performance improvements
Version 3.18.1:
===============
- Stability and performance improvements
Version 3.18.0:
===============
- Improved 'Session.subcribe' and 'Session.resubscribe' interface
The current 'Session.subscribe' and 'Session.resubscribe' raise an
exception when one of the subscriptions is invalid, e.g., subscribe
with a duplicate 'CorrelationId'. A new set of overloads are added
with parameter 'SubscriptionPreprocessMode', which could be
- 'FAIL_ON_FIRST_ERROR': an exception is raised on the first
invalid subscription in the list, and the entire batch will be
considered failed.
- 'RETURN_INDIVIDUAL_ERRORS': instead of raising exceptions, a
list of 'SubscriptionPreprocessError' is returned, each
representing an error due to an invalid subscription in the list.
The valid subscriptions will move forward.
- Stability and performance improvements
Version 3.17.1:
===============
- Stability and performance improvements
Version 3.17.0:
===============
- Native-type formatting and message consumption
Add ability to format 'Event's and 'Request's from native Python types
using methods 'EventFormatter.fromPy' and 'Request.fromPy'. Add ability
to convert a 'Message' to 'dict' with 'Message.toPy'. 'Message's and
'Request's have 'dict'-like behavior with '__getitem__' and
'__setitem__'.
- A new method 'correlationId()' is added to 'blpapi.Message'
A new method 'Message.correlationId()' is added to return the
single CorrelationId associated with the message or None if the
message has no CorrelationIds. If the message has multiple
CorrelationIds, the first one is returned.
- Constants for common used `Names`
A new utility class `blpapi.Names` has been added with common
message names.
- Revamped examples
The 'examples' directory now contains 'demoapps' and 'unittests'
subdirectories. The 'demoapps' directory contains a consolidated set of
example applications. Within 'demoapps', the 'snippets' directory contains
sample code for creating and sending requests, and for processing
responses. Also within 'demoapps', the 'util' directory contains common
code shared between examples. The 'unittests' directory has been renamed
from 'mock-test-examples' and contains sample code for using the mock
testing interface.
- End of Python 2 support
Installation and use of BLPAPI Python now requires a Python 3.6+
runtime.
- Stability and performance improvements
Version 3.16.6:
===============
- Stability and performance improvements
Version 3.16.5:
===============
- Stability and performance improvements
Version 3.16.4:
===============
- Stability and performance improvements
Version 3.16.3:
===============
- Stability and performance improvements
Version 3.16.2:
===============
- Stability and performance improvements
Version 3.16.1:
===============
- Stability and performance improvements
Version 3.16.0:
===============
- Attributes are no longer supported in 'blpapi.ResolutionList'
Support for attributes during resolution was never fully implemented
and is now deprecated.
- Provide users ability to unit test applications offline using testing frameworks
The new utility module 'blpapi.test' can be used to create test events
and test messages. The test messages can be generated using Python
dictionaries, XML, JSON, or they can be built in a similar way to how
messages are normally constructed in the SDK.
- Added unique request id to network interactions
A new, globally unique, request id has been added to network
interactions. The request id is a string that can be obtained by
calling 'Request.getRequestId()' before sending a request, and
'Message.getRequestId()' for messages delivered to the application.
Not all requests and messages will have a request id, notably
subscription data messages will *not* have a request id except
for recaps.
This unique identifier will be useful when contacting support as it
will help quickly locate the interactions related to that event.
- Stability and performance improvements
Version 3.15.2:
===============
- Stability and performance improvements
Version 3.15.1:
===============
- 'blpapi.Service.createAdminEvent()' is now deprecated. Use 'blpapi.Service.createPublishEvent()' instead
- Stability and performance improvements
Version 3.15.0:
===============
- Provided a simplified interface to handle authentication and authorization
- Simplified authentication settings through the new set of strongly-typed
overloads described with 'AuthOptions' class.
- Simplified existing multi-phased approach to authorization so that both
token generation and authorization can be done by the SDK.
- If 'AuthOptions' instance is provided to the session through the
newly introduced 'setSessionIdentityOptions' (part of'SessionOptions'),
both token generation and subsequent authorization will be done by the
SDK. Successfully authorized identity would become the default
identity for the session that's used for all future requests unless
a different one is specified explicitly.
- Additionally, two new session methods that simplify creation of
additional identities have been introduced:
- 'generateAuthorizedIdentity' - generates authorized identity
based on the provided 'AuthOptions'.
- 'getAuthorizedIdentity' - returns authorized identity that's
associated with the 'generateAuthorizedIdentity' call.
- Improved usage of network bandwidth through support for compression
- 'blpapi.Message.topicName()' is now deprecated
- Stability and performance improvements
Version 3.14.1:
===============
- Stability and performance improvements
Version 3.14.0:
===============
- Improved usage of network bandwidth for snapshot requests
Optimized the network bandwidth usage between endpoints and Bloomberg data
centers for snapshot requests. Customers can request to disable the
optimization by setting the 'bandwidthSaveModeDisabled' session option.
- Stability and performance improvements
Version 3.13.1:
===============
- Conversions to string using print helpers ignore null-terminators
Previously, when converting an e.g., Element to string explicitly,
or when printing it, null-terminators embedded in strings
would cause the resulting string to be truncated to the first one.
- Format docstrings to be rendered by the Sphinx documentation generator
- Stability and performance improvements
Version 3.13.0:
===============
- Automated network configuration for ZFP over leased lines
Allow customers that leverage leased lines/routers for Bloomberg services
(such as existing Bloomberg terminals) to use this infrastructure to
connect their applications to Zero Foot-Print (ZFP) instances.
A new utility class, 'blpapi.ZfpUtil', can be used to create a
'SessionOptions' object with the appropriate servers. Applications can
update the options, including authorization settings, but should not
change the servers.
Added a new example ZfpOverLeasedLinesSessionExample.py to demonstrate
how to create a session over ZFP leased lines.
- Stability and performance improvements
Version 3.12.3:
===============
- Improve error reporting on failure to load the blpapi package
- Remove dependency on the C++ runtime
Version 3.12.2:
===============
- Stability and performance improvements
Version 3.12.1:
===============
- Stability and performance improvements
Version 3.12.0:
===============
- Add SessionOptions.toString() and SessionOptions.__str__
- Add version helpers
- Python3.7 compatibility
- Deprecated the named parameter 'async' for blpapi.EventFormatter.stop in
favor of 'async_'. 'async' is a reserved keyword with Python3.7.
Version 3.11.0:
===============
- Add support for zero footprint connections
- Add support for fragmented recaps
- Add support for consuming microseconds
Version 3.10.0:
===============
- Documentation change
Clarify the meaning of integer priorities in 'ProviderSession'. Greater
values indicate higher priorities.
- Add support for 3.10 features
- Provide access to the Message recap type
- Enable configuration of service timeouts in SessionOptions
- Add support for publisher terminated subscriptions
For more details on these features, please refer to the C++ release notes
Version 3.9.2:
==============
- Fix Message.fragmentType
Version 3.9.1:
==============
- DPKG support
- Fix argument handling in LocalMktDataSubscriptionExample.py
- Fix ErrorInfo processing bug in SubscriptionWIthEventHandlerExample.py
- Fix missing dependency on the binary package
- Add support PyPI with wheels
- Add Message.fragmentType
Version 3.9.0:
==============
- Support for all new interfaces included in blpapi release 3.9
- Python 3 support
Version 3.7:
==============
- added support for new interfaces in BLPAPI 3.7
Version 3.5.4:
==============
- fix source installation error when building against version 3.7 of C++ SDK
- document system-wide C++ SDK installation
Version 3.5.3:
==============
- preliminary support for Darwin platform (beta)
- added 'Identity.hasEntitlements' and 'Identity.failedEntitlements' functions
- report error if installation is attempted using Python 3
Version 3.5.2:
==============
- Initial public release of Python SDK