Skip to content

Latest commit

 

History

History
135 lines (82 loc) · 7.31 KB

HISTORY.md

File metadata and controls

135 lines (82 loc) · 7.31 KB

1.7.1 (2023-11-11)

Bug Fixes

  • fixed the type for job.save function (#719) (77a5dac)

1.7.0 (2023-11-06)

Features

1.6.0 (2023-11-02)

Features

1.5.0 (2022-11-28)

Features

  • tests: add docker-test.sh for running tests in a Docker container (#554) (1932b39)

Bug Fixes

1.4.3 (2022-11-23)

Bug Fixes

  • queues stop working when there are more than 8k jobs with the same timestamp (#550) (28ca743)

1.4.2 (2022-11-22)

Bug Fixes

1.4.1 (2022-11-22)

Bug Fixes

  • If the brpoplpush commands fails, wait before retrying (#162) (657eb1f)

1.4.0 (2021-05-19)

Features

  • job: store progress with the whole job data (#339) (6df8b5a)

Bug Fixes

1.3.1 (2020-11-04)

Bug Fixes

  • scale: bound unpack arguments count (#297) (4108e5e)
  • types: fix typescript definitions errors (#311) (3bc3f31)

1.3.0 (2020-11-03)

Features

  • implement Queue#saveAll feature (#198) (851f09d)
  • support custom strategies on a queue (#134) (926de9d)
  • types: add generics to type definitions (a565d3d)
  • types: add isRunning (c488385)
  • types: add ready handler (32c4b1e)

Bug Fixes

  • backoff: allow no delay arg when setting immediate strategy (#154) (6f1d62f)
  • queue: remove error event listener on close (#231) (36b4904)
  • removeJob: remove job from stored jobs (#230) (a8c9d87)
  • types: support progress events using arbitrary data (#140) (bc8aa52)
  • types: update createJob handler for consistency (b71a993)
  • types: update redis option type (#290) (e80c51d)
  • types: update type declaration (#252) (1dce7ca)
  • misc edge case fixes (a2df983)
  • update typescript declarations and add documentation (#187) (cec1498), closes #138

1.2.3 / 2020-01-28

  • Allow arbitrary values for progress (#109).
  • Fix cleanup of event redis client (#178).
  • Fix bluebird warning spam (#85).
  • Update Typescript definition for Queue#close method (#180).
  • Remove Node 4, 6 from CI (#156, 223151c).

1.2.2 / 2018-01-25

  • Update Typescript type definitions (thanks @brickyang for #98).

1.2.1 / 2018-01-15

  • Update Typescript type definitions (thanks @brickyang for #94).

1.2.0 / 2018-01-10

  • Add Typescript type definitions (thanks @pbadenski for #80 and @martinwepner for #89).

1.1.0 / 2017-08-12

  • Support sharing the redis command client between Queues.
  • Add documentation, add tests for expected behavior.

1.0.0 / 2017-06-30

  • Upgrade node-redis to 2.7.1 Note that redis connection options now match the latest redis.
  • Implement delayed jobs
  • Implement fixed, exponential backoff strategies
  • Add promise support
  • Fix race conditions in tests
  • Add new performance settings
  • Emit stalled event for stalled jobs
  • Implement graceful shutdown
  • Support user-specified jobids (should be non-numeric)
  • Add timeout, stacktraces to job options

0.3.0 / 2015-09-01

  • Bump node-redis dependency to 1.0.0

0.2.0 / 2015-06-12

  • Initial release

0.1.0 / 2015-01-26

  • Early development