Skip to content

Releases: pjongy/jasyncq

v1.1.2

07 May 12:17

Choose a tag to compare

Implement ignoring tasks' dependency flag (Fetch with ignoring dependency is faster than not)(dde541a)

v1.1.1

30 Apr 02:57

Choose a tag to compare

Fix deadlock probability (f77c854)

  • as-is: LOCK TABLE ...; COMMIT; SELECT ... ; COMMIT; UPDATE ...; COMMIT;
  • to-be: LOCK TABLE ...; SELECT ...; UPDATE ...; COMMIT;

v1.1.0

26 Apr 11:54

Choose a tag to compare

  • Change deserializer to pydantic.
  • Support dependencies between tasks. #4
  • Support task priority through is_urgent flag. #2