Changelogο
v1.2.0 - January 26, 2026ο
π Python Version Update
Breaking Changes:
Dropped Python 3.8 support (reached end-of-life October 2024)
Dropped PyPy support (compatibility issues with modern tooling)
Minimum required Python version is now 3.9
Improvements:
Fixed unclosed file handles in test suite
Added
.venvandvenvto.gitignoreand black exclude patternsPinned black to 25.x for consistent formatting across all supported Python versions
Updated download count to 150,000+
v1.1.1 - September 20, 2025ο
π Documentation Enhancement
Documentation Improvements:
Fixed all Sphinx documentation build errors and formatting issues
Updated Read the Docs configuration for v2 compliance
Improved docstring formatting throughout codebase
Added comprehensive performance section with technical details
v1.1.0 - September 20, 2025ο
π Major Performance and Bug Fix Release
New Features:
Optimized insert_multiple Performance: Added configurable batched processing with
batch_sizeparameter (default: 1,000)Reduces fsync operations from O(n) to O(n/batch_size) for significant performance improvements
Memory-efficient iterator-based processing supports large datasets and generators
Maintains correct index state management during batch operations
Addresses issue #54: βOptimize db.insert_multiple(points) Execution Timeβ
Enhanced Data Validation: Added comprehensive
batch_sizevalidation with proper error handlingbatch_sizemust be >= 1, raisesValueErrorwith descriptive message for invalid valuesConsistent validation across both
TinyFlux.insert_multiple()andMeasurement.insert_multiple()
Bug Fixes:
Fixed Critical Measurement Filtering Bug: Resolved issue where
get_field_values()returned incorrect resultsIndex path was returning field values from all measurements instead of filtering by specified measurement
Now ensures perfect parity between storage path and index path behaviors across all get_* methods
Fixes issue #58: βget_field_values not working correctlyβ
Testing & Quality:
Achieved 100% test coverage with 175 passing tests
Added comprehensive test suites for batching, validation, and measurement filtering
Verified consistency across all storage types (Memory, CSV) and access patterns
Enhanced test fixtures to reduce code duplication and improve maintainability
Documentation:
Updated Sphinx documentation with detailed
batch_sizeparameter usage and performance considerationsAdded examples demonstrating optimal batch sizes for different use cases
v1.0.1 - September 19, 2025ο
Updated Python support: Removed Python 3.7, added Python 3.13 support
Updated CI/CD workflows to test against Python 3.9-3.13
Updated GitHub Actions to latest versions for better security and performance
Updated documentation and package metadata for new Python version requirements
Fixed decorator bug in temp_storage_op that was introduced in decorator refactoring
Updated download count to reflect 150,000+ downloads
v1.0.0 - April 13, 2024ο
Official Release π. TinyFlux has been stable for over 20 months.
v0.4.1 - September 25, 2023ο
Spelling bug fix in support of issue #44.
v0.4.0 - March 27, 2023ο
Tags and Fields can be removed from individual points. See the documentation for more (resolves issue #27).
v0.3.1 (2023-3-27)ο
Fixed bug that allowed user to delete key/field tags with .update() and .update_all(). (resolves issue #36).
v0.3.0 (2023-3-21)ο
Tag and field keys can be compacted when using CSVStorage, saving potentially many bytes per Point (resolves issue #32).
Fixed bug that causes tag values of ββ to be serialized as β_noneβ (resolves issue #33).
v0.2.6 (2023-3-9)ο
TinyFlux is now PEP 561 compliant (resolves issue #31).
v0.2.4 (2023-2-15)ο
Fix bug that prevents updating Points when using a CSVStorage instance.
v0.2.1 (2022-11-22)ο
Fix bug that caused values of 0.0 to be serialized as None/null rather than β0.0β.
v0.2.0 (2022-11-09)ο
Test and verification on Python 3.11 and Windows platforms
Disable universal newlines translation on CSV Storage instances
v0.1.0 (2022-05-16)ο
Initial release