peewee-plus/CHANGELOG.md

50 lines
1.7 KiB
Markdown
Raw Permalink Normal View History

# changelog
See also: [Github Release Page](https://github.com/enpaul/peewee-plus/releases).
2023-05-04 19:26:48 +00:00
## Version 1.3.0
View this release on: [Github](https://github.com/enpaul/peewee-plus/releases/tag/1.3.0),
[PyPI](https://pypi.org/project/peewee-plus/1.3.0/)
- Add field for storing Datetime Timedeltas
- **BREAKING CHANGE**: Update `JSONField` to raise `ValueError` instead of
`IntegrityError` on bad data write
- Update tests to account for more cases and test public API validity
2023-04-13 19:01:13 +00:00
## Version 1.2.1
View this release on: [Github](https://github.com/enpaul/peewee-plus/releases/tag/1.2.1),
[PyPI](https://pypi.org/project/peewee-plus/1.2.1/)
- Add PyPI classifier for Python 3.11
- Fix SQLite variable limit determination to account for changes in SQLite 3.32
2022-11-15 15:10:25 +00:00
## Version 1.2.0
2022-09-07 19:41:16 +00:00
2022-11-15 15:10:25 +00:00
View this release on: [Github](https://github.com/enpaul/peewee-plus/releases/tag/1.2.0),
[PyPI](https://pypi.org/project/peewee-plus/1.2.0/)
2022-09-07 19:41:16 +00:00
2022-11-15 15:10:25 +00:00
- Remove support for Python 3.6
- Update development workflows to use Poetry 1.2
2022-09-07 19:41:16 +00:00
- Fix nullable enums raising an `IntegrityError` when value is `None` (#1)
2022-01-20 06:03:12 +00:00
## Version 1.1.0
View this release on: [Github](https://github.com/enpaul/peewee-plus/releases/tag/1.1.0),
[PyPI](https://pypi.org/project/peewee-plus/1.1.0/)
- Add decorator function for wrapping callables in a flat database transaction
## Version 1.0.0
View this release on: [Github](https://github.com/enpaul/peewee-plus/releases/tag/1.0.0),
[PyPI](https://pypi.org/project/peewee-plus/1.0.0/)
- Add function for calculating SQLite batch size
- Add constants for SQLite default parameters
- Add field for storing JSON-serializable data
- Add field for storing Enums
- Add field for storing paths
- Add field for storing floats with custom precision parameters