Skip to content

Commit 86722f2

Browse files
committed
Update CHANGELOG and TODO
Signed-off-by: Grant Ramsay <seapagan@gmail.com>
1 parent 273ee95 commit 86722f2

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ project since the first release, with the latest changes at the top.
66
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88

9+
## [Unreleased](https://github.com/seapagan/sqliter-py/tree/HEAD)
10+
11+
**New Features**
12+
13+
- Add some useful properties to the SqliterDB class instance ([#48](https://github.com/seapagan/sqliter-py/pull/48)) by [seapagan](https://github.com/seapagan)
14+
15+
[`Full Changelog`](https://github.com/seapagan/sqliter-py/compare/0.6.0...HEAD) | [`Diff`](https://github.com/seapagan/sqliter-py/compare/0.6.0...HEAD.diff) | [`Patch`](https://github.com/seapagan/sqliter-py/compare/0.6.0...HEAD.patch)
16+
917
## [0.6.0](https://github.com/seapagan/sqliter-py/releases/tag/0.6.0) (October 12, 2024)
1018

1119
**New Features**

TODO.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
# TODO
22

3+
Items marked with :fire: are high priority.
4+
35
## General Plans and Ideas
46

5-
- add (optional) `created_at` and `updated_at` fields to the BaseDBModel class
7+
- :fire: add (optional) `created_at` and `updated_at` fields to the BaseDBModel class
68
which will be automatically updated when a record is created or updated.
79
- add an 'execute' method to the main class to allow executing arbitrary SQL
810
queries which can be chained to the 'find_first' etc methods or just used
@@ -12,12 +14,12 @@
1214
addition to the `delete` method in the main class which deletes a single
1315
record based on the primary key.
1416
- add a `rollback` method to the main class to allow manual rollbacks.
15-
- allow adding foreign keys and relationships to each table.
17+
- :fire: allow adding foreign keys and relationships to each table.
1618
- add a migration system to allow updating the database schema without losing
1719
data.
1820
- add more tests where 'auto_commit' is set to False to ensure that commit is
1921
not called automatically.
20-
- support structures like, `list`, `dict`, `set` etc. in the model. These will
22+
- :fire: support structures like, `list`, `dict`, `set` etc. in the model. These will
2123
need to be `pickled` first then stored as a BLOB in the database . Also
2224
support `date` which can be stored as a Unix timestamp in an integer field.
2325

0 commit comments

Comments
 (0)