File tree Expand file tree Collapse file tree 3 files changed +10
-0
lines changed
Expand file tree Collapse file tree 3 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
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+
310## 0.24.0 - 2024-10-22
411
512### Enhancements
Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ struct BatchJob {
3131 SplitDuration split_duration;
3232 std::uint64_t split_size;
3333 bool split_symbols;
34+ // NOTE: deprecated and will be removed in a future version
3435 Packaging packaging;
3536 Delivery delivery;
3637 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 {
8686};
8787
8888// Represents how a batch job will be packaged.
89+ //
90+ // NOTE: Deprecated now that all batch jobs can be downloaded as a ZIP file.
8991enum class Packaging : std::uint8_t {
9092 None = 0 ,
9193 Zip,
You can’t perform that action at this time.
0 commit comments