Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: rmqtt/rmqtt-storage
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.6.0
Choose a base ref
...
head repository: rmqtt/rmqtt-storage
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 18 commits
  • 7 files changed
  • 1 contributor

Commits on Jun 28, 2025

  1. Configuration menu
    Copy the full SHA
    537df4d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5b1bbff View commit details
    Browse the repository at this point in the history
  3. fix(storage): improve TTL feature handling in contains_key operations

    - Added proper conditional compilation for TTL feature in contains_key methods:
      * _self_map_contains_key
      * _self_list_contains_key
      * _self_contains_key
    - Without TTL feature, now directly checks underlying storage:
      * Calls _map_contains_key for map storage
      * Calls _list_contains_key for list storage
      * Calls _kv_contains_key for key-value storage
    - Maintains TTL expiration checks when feature is enabled
    bittcrafter committed Jun 28, 2025
    Configuration menu
    Copy the full SHA
    9c872c9 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #4 from bittcrafter/main

    fix(storage): improve TTL feature handling in contains_key operations
    bittcrafter authored Jun 28, 2025
    Configuration menu
    Copy the full SHA
    0fe4c90 View commit details
    Browse the repository at this point in the history
  5. chore: update Cargo.toml metadata

    - Changed 'categories' from "Database interfaces" to "database"
      * Matches standard Rust crate categories naming
      * More consistent with other crates in ecosystem
    - Maintains all other package metadata
    bittcrafter committed Jun 28, 2025
    Configuration menu
    Copy the full SHA
    e886b37 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    dc3de56 View commit details
    Browse the repository at this point in the history
  7. refactor(storage): major async iterator improvements and redis upgrade

    - Bumped version from 0.6.1 to 0.7.0 (breaking changes)
    - Upgraded redis dependency from 0.27 to 0.32 with new features
    - Improved async iterator implementations:
      * Removed unnecessary lifetime parameters
      * Added proper error handling for all iterator operations
      * Simplified control flow with match expressions
      * Made implementations more consistent across storage backends
    - Fixed key removal handling in Redis map operations
    - Enhanced type safety and error propagation
    - Improved code organization and readability
    bittcrafter committed Jun 28, 2025
    Configuration menu
    Copy the full SHA
    ba3e6f1 View commit details
    Browse the repository at this point in the history

Commits on Jun 29, 2025

  1. refactor(storage): major modularization and feature flag improvements

    - Split storage backends into feature-gated modules
    - Added new 'redis-cluster' feature flag
    - Made sled and redis dependencies optional
    - Improved conditional compilation for all storage backends
    - Added proper error handling for invalid storage types
    - Cleaned up imports and module organization
    - Added compile-time validation for feature combinations
    - Updated test configurations to work with feature flags
    - Improved documentation and type safety
    bittcrafter committed Jun 29, 2025
    Configuration menu
    Copy the full SHA
    b10d2c7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2908319 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #5 from bittcrafter/dev/0.7.0

    Dev/0.7.0
    bittcrafter authored Jun 29, 2025
    Configuration menu
    Copy the full SHA
    7e998c2 View commit details
    Browse the repository at this point in the history
  4. Update README.md

    bittcrafter authored Jun 29, 2025
    Configuration menu
    Copy the full SHA
    13a3929 View commit details
    Browse the repository at this point in the history
  5. chore: update version and refine feature flags

    - Bumped version from 0.7.0 to 0.7.1
    - Added explicit feature flags for sled and redis dependencies
    - Maintained existing redis-cluster feature with its dependencies
    bittcrafter committed Jun 29, 2025
    Configuration menu
    Copy the full SHA
    dab951b View commit details
    Browse the repository at this point in the history
  6. Merge pull request #6 from bittcrafter/main

    chore: update version and refine feature flags
    bittcrafter authored Jun 29, 2025
    Configuration menu
    Copy the full SHA
    e4afbef View commit details
    Browse the repository at this point in the history
  7. chore: bump version to 0.7.2 and add docs.rs metadata

    - Incremented package version from 0.7.1 to 0.7.2
    - Added package.metadata.docs.rs configuration
    - Enabled all features for documentation generation on docs.rs
    bittcrafter committed Jun 29, 2025
    Configuration menu
    Copy the full SHA
    f28e3c5 View commit details
    Browse the repository at this point in the history
  8. chore: simplify docs.rs configuration

    - Replaced explicit feature list with `all-features = true` flag
    - Maintains same documentation coverage but with simpler configuration
    bittcrafter committed Jun 29, 2025
    Configuration menu
    Copy the full SHA
    54141ad View commit details
    Browse the repository at this point in the history
  9. Merge pull request #7 from bittcrafter/dev/0.7.2

    Dev/0.7.2
    bittcrafter authored Jun 29, 2025
    Configuration menu
    Copy the full SHA
    bbbbe9a View commit details
    Browse the repository at this point in the history
  10. chore: version bump and cleanup

    - Bumped version from 0.7.2 to 0.7.3
    - Removed redundant feature check in redis-cluster module
    bittcrafter committed Jun 29, 2025
    Configuration menu
    Copy the full SHA
    ce3fd9b View commit details
    Browse the repository at this point in the history

Commits on Jul 6, 2025

  1. Merge pull request #8 from bittcrafter/dev/0.7.3

    chore: version bump and cleanup
    bittcrafter authored Jul 6, 2025
    Configuration menu
    Copy the full SHA
    0cb9313 View commit details
    Browse the repository at this point in the history
Loading