Skip to content

v0.9.0

Choose a tag to compare

@github-actions github-actions released this 04 Sep 23:22
· 213 commits to main since this release
3ebaef0

New features

  • Added retry mechanism for failed search operations with exponential backoff
  • Implemented real-time success/failure progress tracking during search
  • Added paginated search processing for large time ranges to handle memory efficiently

Performance improvements

  • Database bootstrap performance improvements
    • Added proper transaction management for bulk inserts
    • Replaced string-based SQL with prepared statements
    • Added database indexes for common query patterns
    • Enabled SQLite performance optimizations (WAL mode, cache tuning)
    • Impact: BGP data insertion ~10x faster, as2org bootstrap ~100x faster (3+ minutes → 1-2 seconds)

Bug fixes

  • Fixed network error handling in multi-file processing to prevent thread panics

Code improvements

  • Replaced unwrap/expect calls with proper error handling
  • Added clippy lints to deny unsafe unwrap_used and expect_used patterns
  • Updated CI workflow to include formatting and clippy checks
  • Enhanced database operations with proper Result types
  • Improved RPKI validator error handling