File tree Expand file tree Collapse file tree 9 files changed +32
-6
lines changed Expand file tree Collapse file tree 9 files changed +32
-6
lines changed Original file line number Diff line number Diff line change 11# Changelog
2+
23All notable changes to this project will be documented in this file.
34
4- The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5- and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
5+ The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) , and this project adheres
6+ to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7+
8+ ## [ 0.1.4] - 2022-08-30
9+
10+ ---
11+
12+ ### Added
13+
14+ - Add ` upload_storage ` to the default information saved into the database. Before, ` upload_storage ` can be extracted
15+ from ` path ` attribute. Now you can access directly with ` file['upload_storage'] ` by
16+ @jowilf https://github.com/jowilf/sqlalchemy-file/pull/11
17+ - Accept additional metadata from ` File ` object by @jowilf https://github.com/jowilf/sqlalchemy-file/pull/11
18+ - Add section [ Upload File] ( https://jowilf.github.io/sqlalchemy-file/tutorial/using-files-in-models/#upload-file ) to the
19+ documentation
620
721## [ 0.1.3] - 2022-08-23
822
923---
1024
1125### Added
26+
1227- Add ` thumbnail_size ` property to ImageField by @jowilf https://github.com/jowilf/sqlalchemy-file/pull/9
1328
1429## [ 0.1.2] - 2022-08-11
1530
1631---
1732
1833### Added
34+
1935- Add CHANGELOG.md
Original file line number Diff line number Diff line change @@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
55and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
66
7+ ## [ 0.1.4] - 2022-08-30
8+
9+ ---
10+
11+ ### Added
12+
13+ - Add ` upload_storage ` to the default information saved into the database. Before, ` upload_storage ` can be extracted
14+ from ` path ` attribute. Now you can access directly with ` file['upload_storage'] ` in [ #11 ] ( https://github.com/jowilf/sqlalchemy-file/pull/11 )
15+ - Accept additional metadata from ` File ` object in [ #11 ] ( https://github.com/jowilf/sqlalchemy-file/pull/11 )
16+ - Add section [ Upload File] ( https://jowilf.github.io/sqlalchemy-file/tutorial/using-files-in-models/#upload-file ) to the
17+ documentation
18+
719## [ 0.1.3] - 2022-08-23
820
921---
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -5,8 +5,6 @@ repo_name: jowilf/sqlalchemy-file
55repo_url : https://github.com/jowilf/sqlalchemy-file
66theme :
77 name : material
8- icon :
9- logo : material/file-cloud
108 palette :
119 - media : " (prefers-color-scheme: light)"
1210 scheme : default
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " sqlalchemy-file"
3- version = " 0.1.3 "
3+ version = " 0.1.4 "
44description = " SQLAlchemy-file is a SQLAlchemy extension for attaching files to SQLAlchemy model and uploading them to various storage."
55authors = [
" Jocelin Hounon <[email protected] >" ]
66license = " MIT"
Original file line number Diff line number Diff line change 1- __version__ = "0.1.3 "
1+ __version__ = "0.1.4 "
22
33from .file import File as File
44from .types import FileField as FileField
You can’t perform that action at this time.
0 commit comments