Skip to content

Files

Latest commit

531484c · Dec 19, 2024

History

History
25 lines (17 loc) · 1.18 KB

CHANGELOG.md

File metadata and controls

25 lines (17 loc) · 1.18 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[Unreleased]

[0.2.0] - 2024-12-19

Changed

  • Breaking: Replace all usages of "drop" with "discard" to align with Sidekiq terminology (#4).
    • To upgrade:
      1. Replace all usages of :drop with :discard
      2. Replace all usages of Sidekiq::Disposal::Client::REDIS_DROP_TARGET_SET with Sidekiq::Disposal::Client::REDIS_DISCARD_TARGET_SET
      3. Replace all usages of Sidekiq::Disposal::JobDropped with Sidekiq::Disposal::JobDiscarded
      4. Replace all usages of Sidekiq::Disposal::Client#drop_target? with Sidekiq::Disposal::Client#discard_target?
      5. In Redis, execute COPY sidekiq-disposal:drop_targets sidekiq-disposal:discard_targets
  • Eliminate round trip time when calling Redis in Sidekiq middleware (#3)

[0.1.0] - 2024-12-13

  • A new thing! The initial release of sidekiq-disposal. 🎉