Skip to content

Latest commit

 

History

History
42 lines (22 loc) · 1.55 KB

File metadata and controls

42 lines (22 loc) · 1.55 KB

Changelog

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

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[Unreleased]

Changed

  • Tags are now limited to 255 characters in length, and should match the regex \A[\w][\w\-]+[\w]\z (importantly, they can't contain commas). PR #23.

[0.3.0] - 2024-07-04

Added

  • Implement insert_many and insert_many_tx. PR #22.

[0.2.0] - 2024-07-04

Changed

  • Rename Args to JobArgs and add JobArgsWithInsertOpts protocol. PR #20.

[0.1.2] - 2024-07-04

Changed

  • Add usage instructions README, add job state constants, and change return value of insert_many() and insert_many_tx() to an integer instead of a list of jobs. PR #19.

[0.1.1] - 2024-07-04

Fixed

  • Fix pyproject.toml description and add various URLs like to homepage, docs, and GitHub repositories. PR #18.

[0.1.0] - 2024-07-04

Added

  • Initial release, supporting insertion through SQLAlchemy and its underlying Postgres drivers like psycopg2 or asyncpg (for async).