|
1 | 1 | # Changelog
|
2 | 2 |
|
| 3 | +## 0.15.1 - 2023-07-05 |
| 4 | + |
| 5 | +#### Bug Fixes |
| 6 | +- Fixed an `ImportError` observed in Python 3.8 |
| 7 | + |
| 8 | +## 0.15.0 - 2023-07-03 |
| 9 | + |
| 10 | +#### Enhancements |
| 11 | +- Added `symbology_map` property to `Live` client |
| 12 | +- Added `optional_symbols_list_to_list` parsing function |
| 13 | +- Changed `Live.add_callback` and `Live.add_stream` to accept an exception callback |
| 14 | +- Changed `Live.__iter__()` and `Live.__aiter__()` to send the session start message if the session is connected but not started |
| 15 | +- Upgraded `databento-dbn` to 0.7.1 |
| 16 | +- Removed exception chaining from exceptions emitted by the library |
| 17 | + |
| 18 | +#### Bug fixes |
| 19 | +- Fixed issue where a large unreadable symbol subscription message could be sent |
| 20 | + |
| 21 | +#### Breaking changes |
| 22 | +- Removed `Encoding`, `Compression`, `Schema`, and `SType` enums as they are now exposed by `databento-dbn` |
| 23 | +- Renamed `func` parameter to `record_callback` for `Live.add_callback` and `Live.add_stream` |
| 24 | +- Removed `optional_symbols_list_to_string` parsing function |
| 25 | + |
3 | 26 | ## 0.14.1 - 2023-06-16
|
| 27 | + |
4 | 28 | - Fixed issue where `DBNStore.to_df()` would raise an exception if no records were present
|
5 | 29 | - Fixed exception message when creating a DBNStore from an empty data source
|
6 | 30 |
|
7 | 31 | ## 0.14.0 - 2023-06-14
|
8 |
| -- Added support for reusing a `Live` client to reconnect |
9 |
| -- Added `metadata` property to `Live` |
| 32 | + |
| 33 | +#### Enhancements |
10 | 34 | - Added `DatatbentoLiveProtocol` class
|
| 35 | +- Added `metadata` property to `Live` |
| 36 | +- Added support for reusing a `Live` client to reconnect |
11 | 37 | - Added support for emitting warnings in API response headers
|
| 38 | +- Relaxed 10 minute minimum request time range restriction |
| 39 | +- Upgraded `aiohttp` to 3.8.3 |
| 40 | +- Upgraded `numpy` to 1.23.5 |
| 41 | +- Upgraded `pandas` to 1.5.3 |
| 42 | +- Upgraded `requests` to 2.28.1 |
| 43 | +- Upgraded `zstandard` to 0.21.0 |
| 44 | + |
| 45 | +#### Breaking changes |
| 46 | +- Removed support for Python 3.7 |
| 47 | +- Renamed `symbol` to `raw_symbol` in definition schema when converting to a DataFrame |
12 | 48 | - Changed iteration of `Live` to no longer yield DBN metadata
|
13 | 49 | - Changed `Live` callbacks to no longer yield DBN metadata
|
| 50 | + |
| 51 | +#### Bug fixes |
14 | 52 | - Fixed issue where `Historical.timeseries.get_range` would write empty files on error
|
15 | 53 | - Fixed issue with `numpy` types not being handled in symbols field
|
16 |
| -- Upgraded `aiohttp` to 3.8.3 |
17 |
| -- Upgraded `numpy` to to 1.23.5 |
18 |
| -- Upgraded `pandas` to to 1.5.3 |
19 |
| -- Upgraded `requests` to to 2.28.1 |
20 |
| -- Upgraded `zstandard` to to 0.21.0 |
21 |
| -- Removed 10 minute minimum request time range restriction |
22 |
| -- Removed support for Python 3.7 |
| 54 | +- Fixed optional `end` parameter for `batch.submit_job(...)` |
23 | 55 |
|
24 | 56 | ## 0.13.0 - 2023-06-02
|
| 57 | + |
| 58 | +#### Enhancements |
25 | 59 | - Added support for `statistics` schema
|
26 | 60 | - Added batch download support data files (`condition.json` and `symbology.json`)
|
27 |
| -- Upgraded `databento-dbn` to 0.6.1 |
28 | 61 | - Renamed `booklevel` MBP field to `levels` for brevity and consistent naming
|
| 62 | +- Upgraded `databento-dbn` to 0.6.1 |
| 63 | + |
| 64 | +#### Breaking changes |
29 | 65 | - Changed `flags` field to an unsigned int
|
30 | 66 | - Changed default of `ts_out` to `False` for `Live` client
|
31 | 67 | - Changed `instrument_class` DataFrame representation to be consistent with other `char` types
|
|
34 | 70 | - Removed support for legacy stypes
|
35 | 71 |
|
36 | 72 | ## 0.12.0 - 2023-05-01
|
| 73 | + |
| 74 | +#### Enhancements |
37 | 75 | - Added `Live` client for connecting to Databento's live service
|
| 76 | +- Added `degraded`, `pending` and `missing` condition variants for `batch.get_dataset_condition` |
| 77 | +- Added `last_modified_date` field to `batch.get_dataset_condition` response |
38 | 78 | - Upgraded `databento-dbn` to 0.5.0
|
39 | 79 | - Upgraded `DBNStore` to support mixed schema types to support live data
|
| 80 | + |
| 81 | +#### Breaking changes |
40 | 82 | - Changed iteration `DBNStore` to return record types from `databento-dbn` instead of numpy arrays
|
41 |
| -- Removed `dtype` property from `DBNStore` |
42 |
| -- Removed `record_size` property from `DBNStore` |
43 | 83 | - Renamed the `cost` field to `cost_usd` for `batch.submit_job` and `batch.list_jobs` (value now expressed as US dollars)
|
44 |
| -- Removed `bad` condition variant from `batch.get_dataset_condition` |
45 |
| -- Added `degraded`, `pending` and `missing` condition variants for `batch.get_dataset_condition` |
46 |
| -- Added `last_modified_date` field to `batch.get_dataset_condition` response |
47 | 84 | - Renamed `product_id` field to `instrument_id`
|
48 | 85 | - Renamed `symbol` field in definitions to `raw_symbol`
|
49 |
| -- Deprecated `SType.PRODUCT_ID` to `SType.INSTRUMENT_ID` |
50 |
| -- Deprecated `SType.NATIVE` to `SType.RAW_SYMBOL` |
51 |
| -- Deprecated `SType.SMART` to `SType.PARENT` and `SType.CONTINUOUS` |
| 86 | +- Removed `dtype` property from `DBNStore` |
| 87 | +- Removed `record_size` property from `DBNStore` |
| 88 | +- Removed `bad` condition variant from `batch.get_dataset_condition` |
52 | 89 | - Removed unused `LiveGateway` enum
|
53 | 90 | - Removed `STATSTICS` from `Schema` enum
|
54 | 91 | - Removed `STATUS` from `Schema` enum
|
55 | 92 | - Removed `GATEWAY_ERROR` from `Schema` enum
|
56 | 93 | - Removed `SYMBOL_MAPPING` from `Schema` enum
|
57 | 94 |
|
| 95 | +#### Deprecations |
| 96 | +- Deprecated `SType.PRODUCT_ID` to `SType.INSTRUMENT_ID` |
| 97 | +- Deprecated `SType.NATIVE` to `SType.RAW_SYMBOL` |
| 98 | +- Deprecated `SType.SMART` to `SType.PARENT` and `SType.CONTINUOUS` |
| 99 | + |
58 | 100 | ## 0.11.0 - 2023-04-13
|
| 101 | + |
59 | 102 | - Changed `end` and `end_date` to optional to support new forward-fill behaviour
|
60 | 103 | - Upgraded `zstandard` to 0.20.0
|
61 | 104 |
|
62 | 105 | ## 0.10.0 - 2023-04-07
|
| 106 | + |
| 107 | +#### Enhancements |
| 108 | +- Added support for `imbalance` schema |
| 109 | +- Added `instrument_class`, `strike_price`, and `strike_price_currency` to definition |
| 110 | + schema |
| 111 | +- Changed parsing of `end` and `end_date` params throughout the API |
| 112 | +- Improved exception messages for server and client timeouts |
63 | 113 | - Upgraded `databento-dbn` to 0.4.3
|
| 114 | + |
| 115 | +#### Breaking changes |
64 | 116 | - Renamed `Bento` class to `DBNStore`
|
65 | 117 | - Removed `metadata.list_compressions` (redundant with docs)
|
66 | 118 | - Removed `metadata.list_encodings` (redundant with docs)
|
67 | 119 | - Removed optional `start` and `end` params from `metadata.list_schemas` (redundant)
|
68 | 120 | - Removed `related` and `related_security_id` from definition schema
|
69 |
| -- Added `instrument_class`, `strike_price`, and `strike_price_currency` to definition |
70 |
| - schema |
71 |
| -- Added support for `imbalance` schema |
72 |
| -- Improved exception messages for server and client timeouts |
73 | 121 |
|
74 | 122 | ## 0.9.0 - 2023-03-10
|
75 |
| -- Removed `record_count` property from Bento class |
76 |
| -- Fixed bug in `Bento` where invalid metadata would prevent iteration |
| 123 | + |
| 124 | +#### Enhancements |
77 | 125 | - Improved use of the logging module
|
| 126 | + |
| 127 | +#### Breaking changes |
| 128 | +- Removed `record_count` property from Bento class |
78 | 129 | - Changed `metadata.get_dataset_condition` response to a list of condition per date
|
79 | 130 |
|
| 131 | +#### Bug fixes |
| 132 | +- Fixed bug in `Bento` where invalid metadata would prevent iteration |
| 133 | + |
80 | 134 | ## 0.8.1 - 2023-03-05
|
81 |
| -- Fixed bug in `Bento` iteration where multiple readers were created |
| 135 | + |
| 136 | +#### Enhancements |
82 | 137 | - Added `from_dbn` convenience alias for loading DBN files
|
83 | 138 |
|
| 139 | +#### Bug fixes |
| 140 | +- Fixed bug in `Bento` iteration where multiple readers were created |
| 141 | + |
84 | 142 | ## 0.8.0 - 2023-03-03
|
85 |
| -- Integrated DBN encoding 0.3.2 |
86 |
| -- Renamed `timeseries.stream` to `timeseries.get_range` |
87 |
| -- Renamed `timeseries.stream_async` to `timeseries.get_range_async` |
88 |
| -- Deprecated `timeseries.stream(...)` method |
89 |
| -- Deprecated `timeseries.stream_async(...)` method |
| 143 | + |
| 144 | +#### Enhancements |
90 | 145 | - Added `batch.list_files(...)` method
|
91 | 146 | - Added `batch.download(...)` method
|
92 | 147 | - Added `batch.download_async(...)` method
|
| 148 | +- Integrated DBN encoding 0.3.2 |
| 149 | + |
| 150 | +#### Breaking changes |
| 151 | +- Dropped support for DBZ encoding |
| 152 | +- Renamed `timeseries.stream` to `timeseries.get_range` |
| 153 | +- Renamed `timeseries.stream_async` to `timeseries.get_range_async` |
93 | 154 | - Changed `.to_df(...)` `pretty_ts` default argument to `True`
|
94 | 155 | - Changed `.to_df(...)` `pretty_px` default argument to `True`
|
95 | 156 | - Changed `.to_df(...)` `map_symbols` default argument to `True`
|
96 |
| -- Drop support for DBZ encoding |
| 157 | + |
| 158 | +#### Deprecations |
| 159 | +- Deprecated `timeseries.stream(...)` method |
| 160 | +- Deprecated `timeseries.stream_async(...)` method |
97 | 161 |
|
98 | 162 | ## 0.7.0 - 2023-01-10
|
| 163 | + |
99 | 164 | - Added support for `definition` schema
|
100 | 165 | - Updated `Flags` enum
|
101 | 166 | - Upgraded `dbz-python` to 0.2.1
|
102 | 167 | - Upgraded `zstandard` to 0.19.0
|
103 | 168 |
|
104 | 169 | ## 0.6.0 - 2022-12-02
|
| 170 | + |
105 | 171 | - Added `metadata.get_dataset_condition` method to `Historical` client
|
106 | 172 | - Upgraded `dbz-python` to 0.2.0
|
107 | 173 |
|
108 | 174 | ## 0.5.0 - 2022-11-07
|
| 175 | + |
109 | 176 | - Fixed dataframe columns for derived data schemas (dropped `channel_id`)
|
110 | 177 | - Fixed `batch.submit_job` requests for `dbz` encoding
|
111 | 178 | - Updated `quickstart.ipynb` jupyter notebook
|
112 | 179 |
|
113 | 180 | ## 0.4.0 - 2022-09-14
|
| 181 | + |
114 | 182 | - Upgraded `dbz-python` to 0.1.5
|
115 | 183 | - Added `map_symbols` option for `.to_df()` (experimental)
|
116 | 184 |
|
117 | 185 | ## 0.3.0 - 2022-08-30
|
| 186 | + |
118 | 187 | - Initial release
|
0 commit comments