Skip to content

Changelog

This is an auto-generated log of all the changes that have been made to the project since the first release, with the latest changes at the top.

This project adheres to Semantic Versioning.

Unreleased

Bug Fixes

  • Ensure context-manager ignores the auto_commit setting. (#43) by seapagan

Full Changelog | Diff | Patch

0.5.0 (September 30, 2024)

Breaking Change!

This release removes the create_pk and primary_key attributes from the Model Meta Class. Now, an auto-incrementing primary key is created by default and the name of the primary key is always pk.

Closed Issues

  • Auto-generated primary key not returned by the Model (#37) by seapagan

Breaking Changes

  • Always create a pk primary auto-incrementing key (#39) by seapagan

Bug Fixes

  • Fix null filter when combined with others and add tests (#40) by seapagan

Documentation

  • Refactor web docs layout and improve content (#36) by seapagan

Full Changelog | Diff | Patch

0.4.0 (September 27, 2024)

New Features

  • Add exists_ok and force flags to create_table (#34) by seapagan
  • Add reset= to SqliterDB(), to drop all existing tables (#33) by seapagan
  • Order by primary key if no field specified to order() (#32) by seapagan
  • Add drop_table method (#31) by seapagan
  • Add debug logging option (#29) by seapagan
  • Create relevant database fields depending on the Model types (#27) by seapagan

Testing

Refactoring

  • Perform some internal refactoring, mostly arranging the tests. (#30) by seapagan

Documentation

  • Add a documentation website and trim down the README (#25) by seapagan

Full Changelog | Diff | Patch

0.3.0 (September 23, 2024)

Breaking Changes

New Features

  • Deprecate 'direction=' for 'reverse=' in order() method. (#24) by seapagan
  • Add improved table name generation (#21) by seapagan
  • Implement an in-memory database option (#15) by seapagan
  • Allow selecting a subset of the database fields instead of all them (#12) by seapagan
  • Improve dev tooling and contributor documentation (#11) by seapagan

Dependency Updates

Full Changelog | Diff | Patch

0.2.0 (September 14, 2024)

New Features

  • Default to auto_create=True, and add 'commit()' & 'close()' methods (#9) by seapagan
  • Add more advanced filtering options (#7) by seapagan

Bug Fixes

  • Ensure context manager commits on exit (#8) by seapagan

Full Changelog | Diff | Patch

0.1.1 (September 12, 2024)

Just a documentation fix - README was old version

Full Changelog | Diff | Patch

0.1.0 (September 12, 2024)

New Features

  • Remove transaction exception (TransactionError) (#4) by seapagan
  • Improve error handling across the library (#3) by seapagan
  • Add 'limit', 'offset' and 'order' methods (#2) by seapagan

Testing

  • Add a full test suite to the existing code. (#1) by seapagan

Dependency Updates


This changelog was generated using github-changelog-md by Seapagan