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
17 changes: 17 additions & 0 deletions python/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,23 @@ All notable changes to this project will be documented in this file.

This project adheres to [Semantic Versioning](http://semver.org/).

## [v0.9.0] - September 15, 2025
### What's New
#### Parquet Upload Service
Adds support for uploading Parquet files to Sift for ingestion through the addition of the `ParquetUploadService`. See `examples/data_import/parquet` for an example of how to upload Parquet files.

#### TDMS File Metadata Support
Adds a flag to automatically import TDMS file metdadata into Sift Runs.

#### Lazy Flow Creation
Adds the ability to create flows lazily which reduces initialization time of the `IngestService`.

### Full Changelog
- [Lazy flow creation](https://github.com/sift-stack/sift/pull/296)
- [Adds support for bytes](https://github.com/sift-stack/sift/pull/304)
- [Add ParquetUploadService](https://github.com/sift-stack/sift/pull/315)
- [Import TDMS file metadata to Sift Run](https://github.com/sift-stack/sift/pull/317)

## [v0.8.4] - August 18, 2025
- [Add experimental protos for development](https://github.com/sift-stack/sift/pull/291)

Expand Down
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "sift_stack_py"
version = "0.8.5"
version = "0.9.0"
description = "Python client library for the Sift API"
requires-python = ">=3.8"
readme = { file = "README.md", content-type = "text/markdown" }
Expand Down
Loading