Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

services:
mysql:
image: mysql:8.0.35
image: mysql:8.4
ports:
- 3306:3306
env:
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased

### Changed

* Upgraded MySQL version for GitHub CI to 8.4
* Updated the ORM to reflect [changes](https://github.com/wtsi-npg/npg_tracking/pull/969)
to the production database.
* Regenerated the ORM with the current (4.0.3) version of `sqlacodegen`.

## [0.2.0] - 2025-12-12

### Added
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ The code in this package was tested for read-only operations. Business logic
for `create` and `update` operation for different database tables is implemented
in the Perl package. We advise against performing `write` operations using this ORM.

This ORM has been auto-generated with [`sqlacodegen 3.1.1`](https://pypi.org/project/sqlacodegen/3.1.1/)
This ORM has been auto-generated with [`sqlacodegen 4.0.3`](https://pypi.org/project/sqlacodegen/4.0.3/)

```
sqlacodegen --generator declarative mysql+pymysql://user:pass@host:port/dbname > src/npgtracking/db/schema.py
Expand Down
Loading