Skip to content

Latest commit

 

History

History
66 lines (51 loc) · 3.19 KB

CHANGELOG.md

File metadata and controls

66 lines (51 loc) · 3.19 KB

wiji changelog:

most recent version is listed first.

version: v0.3.1

  • Update to latest python versions: #86

version: v0.3.0

  • bugfix: wiji.broker.InMemoryBroker was leaking memory: #74
  • accept logging.NOTSET as a loglevel: #75

version: v0.2.0

  • added tests for Task._broker_check: #67
  • cache asyncio eventloop in Task.synchronous_delay: #68
  • add documentation on how users of wiji can write tests for their tasks: #69

version: v0.1.9

  • change default Task loglevel to INFO from DEBUG: #62
  • bugfix: ISO 8601 datetime formatting: #63

version: v0.1.8

  • rename TaskDelayError to TaskQueueingError: #58

version: v0.1.7

  • hook and ratelimiter should have access to queuing metrics : #57

version: v0.1.6

  • add better error messages : #54
  • Stop capturing SIGINT signal : #55
  • rename CLI option, --config to --app : #52
  • bugfix, task.task_options is stale
    We had a case where broker.done would get called with task_id==''(empty string) : #39
  • add timestamp to log events: #45
  • remove wiji.task.WijiRetryError.
    we replace it with a wiji.task.Task._RETRYING boolean.: #46
  • rename wiji conf file: #47
  • wiji no longer requires task instances in order to start running : #49

version: v0.1.6-beta.5

  • add better error messages : #54
  • Stop capturing SIGINT signal : #55

version: v0.1.6-beta.4

  • rename CLI option, --config to --app : #52

version: v0.1.6-beta.3

  • bugfix, task.task_options is stale
    We had a case where broker.done would get called with task_id==''(empty string) : #39
  • add timestamp to log events: #45
  • remove wiji.task.WijiRetryError.
    we replace it with a wiji.task.Task._RETRYING boolean.: #46
  • rename wiji conf file: #47
  • wiji no longer requires task instances in order to start running : #49

version: v0.1.5

  • fix examples broker which was broken by last PR: #35

version: v0.1.4

  • wiji.broker.BaseBroker interface should have a method that is called during shutdown and wiji.Worker calls this method when it receives a shutdown signal like SIGTERM: #34

version: v0.1.3

  • all task invocations should have unique task_id: #32

version: v0.1.2

  • first release