Skip to content

Releases: crccheck/project_runpy

v1.1.2

08 Sep 16:07
Compare
Choose a tag to compare

v1.1.2 (2023-09-08)

Fix

  • fix: update pkg classifiers to test new deploy key (56d297a)

v1.1.1

08 Sep 06:55
Compare
Choose a tag to compare

v1.1.1 (2023-09-08)

Fix

  • fix: add ruff_cache to gitignore (be4a600)

v1.1.0

08 Sep 06:39
Compare
Choose a tag to compare

v1.1.0 (2023-09-08)

Chore

  • chore: Add semantic-release process (#23) (4908db4)

Feature

  • feat: collapse whitespace in multiline sql (#20)

When used in conjunction with the colorizing output, only the first line of the SQL is colored. This is due to the logging filter assuming anything after the first line is a traceback; something to present in without color. Unfortunately, this breaks the intent of the SQL logging.

Linebreaks in SQL logging aren't important. Getting rid of them doesn't hurt readability. In fact, even without the colorization, readability is improved because more lines fit on one screen.

This does not catch all SQL with line breaks... I'll have to update the logic again later if I care. (64c3ca9)

  • feat(ci): add Github Actions instead of TravisCI (#18) (5e18211)

Fix

Refactor

  • refactor: consolidate config in pyproject.toml (#22)

and some basic maintenance on lint checking (9064e17)

  • refactor: enforce Black lint style in CI and delint (#19) (d1e475f)

Unknown

  • add ColorizingNameStreamHandler to color based on logger name (#21) (4b5113c)

v0.3.1

18 Aug 03:51
Compare
Choose a tag to compare
  • fixed how ReadableSqlFilter failed with a SELECT without a FROM
  • updated testing and packaging
  • removed project_dir functionality as I never used it and it was really hacky