Skip to content

Latest commit

 

History

History
159 lines (95 loc) · 3.35 KB

CHANGES.rst

File metadata and controls

159 lines (95 loc) · 3.35 KB

Changes

2.0.0 (2024-12-13)

  • Implement .shutdown(immediate=False) for both sync and async APIs #720

    The change is not fully backward compatible:

    1. If the queue is closed, janus.AsyncQueueShutDown and janus.SyncQueueShutDown exceptions are raised instead of RuntimeError.
    2. Both sync and async .task_done() and .join() don't raise any exception on queue shutdown/closing anymore; it is compatible with shutdown behavior of stdlib sync and async queues.

1.2.0 (2024-12-12)

  • Optimize internal implementation for a little speedup #699
  • Make not-full and not-empty notifications faster #703
  • Add .aclose() async method #709
  • Reduce notifications for a minor speedup #704
  • Allow janus.Queue() instantiation without running asyncio event loop #710
  • Remove sync notifiers for a major speedup #714
  • Fix hang in AsyncQueue.join() #716

1.1.0 (2024-10-30)

  • Drop Python 3.7 and 3.8 support
  • janus now works on Python 3.9-3.13
  • Reexport SyncQueueEmpty, SyncQueueFull, AsyncQueueEmpty, and AsyncQueueFull names #680

1.0.0 (2021-12-17)

  • Drop Python 3.6 support

0.7.0 (2021-11-24)

  • Add SyncQueue and AsyncQueue Protocols to provide type hints for sync and async queues #374

0.6.2 (2021-10-24)

  • Fix Python 3.10 compatibility #358

0.6.1 (2020-10-26)

  • Raise RuntimeError on queue.join() after queue closing. #295
  • Replace timeout type from Optional[int] to Optional[float] #267

0.6.0 (2020-10-10)

  • Drop Python 3.5, the minimal supported version is Python 3.6
  • Support Python 3.9
  • Refomat with black

0.5.0 (2020-04-23)

  • Remove explicit loop arguments and forbid creating queues outside event loops #246

0.4.0 (2018-07-28)

  • Add py.typed macro #89
  • Drop python 3.4 support and fix minimal version python3.5.3 #88
  • Add property with that indicates if queue is closed #86

0.3.2 (2018-07-06)

  • Fixed python 3.7 support #97

0.3.1 (2018-01-30)

  • Fixed bug with join() in case tasks are added by sync_q.put() #75

0.3.0 (2017-02-21)

  • Expose unfinished_tasks property #34

0.2.4 (2016-12-05)

  • Restore tarball deploying

0.2.3 (2016-07-12)

  • Fix exception type

0.2.2 (2016-07-11)

  • Update asyncio.async() to use asyncio.ensure_future() #6

0.2.1 (2016-03-24)

  • Fix python setup.py test command #4

0.2.0 (2015-09-20)

  • Support Python 3.5

0.1.5 (2015-07-24)

  • Use loop.time() instead of time.monotonic()

0.1.1 (2015-06-12)

  • Fix some typos in README and setup.py
  • Add addtional checks for loop closing
  • Mention DataRobot

0.1.0 (2015-06-11)

  • Initial release