Commit 3b5f748 1 parent 04ce85b commit 3b5f748 Copy full SHA for 3b5f748
File tree 3 files changed +10
-0
lines changed
3 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 0.25.0 - TBD
4
+
5
+ ### Deprecations
6
+ - Deprecated ` Packaging ` enum and ` packaging ` field on ` BatchJob ` . These will be
7
+ removed in a future version. All files from a batch job can be downloaded with the
8
+ ` BatchDownload ` method on the historical client
9
+
3
10
## 0.24.0 - 2024-10-22
4
11
5
12
### Enhancements
Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ struct BatchJob {
31
31
SplitDuration split_duration;
32
32
std::uint64_t split_size;
33
33
bool split_symbols;
34
+ // NOTE: deprecated and will be removed in a future version
34
35
Packaging packaging;
35
36
Delivery delivery;
36
37
std::uint64_t record_count;
Original file line number Diff line number Diff line change @@ -86,6 +86,8 @@ enum class SplitDuration : std::uint8_t {
86
86
};
87
87
88
88
// Represents how a batch job will be packaged.
89
+ //
90
+ // NOTE: Deprecated now that all batch jobs can be downloaded as a ZIP file.
89
91
enum class Packaging : std::uint8_t {
90
92
None = 0 ,
91
93
Zip,
You can’t perform that action at this time.
0 commit comments