Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 1.23 KB

CHANGELOG.md

File metadata and controls

22 lines (17 loc) · 1.23 KB

Change Log

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

version 1.1.0

2022-01-21

BREAKING

  • Auctify::BiddingCloserJob is no longer enqueued on start_sale or requeued itself when auction end is in future. All is handled by Auctify::EnsureAuctionsClosingJob which should be run (by Your app) regulary in periods equals at least half of Auctify.configuration.auction_prolonging_limit_in_seconds. Auctify::EnsureAuctionsClosingJob look forward to future (in lenght of auction_prolonging_limit_in_seconds) and setup closing jobs for all auctions ending before that point. So each auction should have at least 2 enqueued closing job. Dont forget to run at start of Your app (just for sure).

version 1.0.3

2021-09-17

BREAKING

  • renamed Auctify.configuration.auction_prolonging_limit to Auctify.configuration.auction_prolonging_limit_in_seconds (to be more descriptive)
  • added ability to set auction prolonging limit for sale pack. Time is taken from sales_pack.auction_prolonging_limit_in_seconds, or from Auctify.configuration.auction_prolonging_limit_in_seconds

version 1.0.2

2021-09-08

  • added with_advisory_lock block when closing of auction (and gem with_advisory_lock)