Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,25 @@
# Changelog

## 0.49.0 - 2026-02-17

### Enhancements
- Added `encode_records` to `EncodeRecord` and `AsyncEncodeRecord` traits for more
efficient batch encoding
- Added `encode_record_refs` to `EncodeRecordRef` and `AsyncEncodeRecordRef` traits with
more efficient vectored I/O implementation for DBN
- Added support for decompressing Zstd in the Python `DBNDecoder` and new optional
`compression` parameter

### Breaking changes
- Moved `encode_records` method from the `EncodeDbn` trait to `EncodeRecord`

## 0.48.0 - 2026-01-27

### Enhancements
- Added initial support for splitting DBN files:
- Added new `SplitEncoder` that supports synchronous and asynchronous encoding
- Added new `Splitter` trait that allows for extensible splitting of files while
reusing the `SplitEncoder` boilerplate.
reusing the `SplitEncoder` boilerplate
- Added `SchemaSplitter`, `SymbolSplitter`, and `TimeSplitter` which allow for
different methods of splitting DBN files
- Added split support to the CLI. For example:
Expand Down
Loading