File tree 9 files changed +32
-6
lines changed
9 files changed +32
-6
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
+
2
3
All notable changes to this project will be documented in this file.
3
4
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
6
20
7
21
## [ 0.1.3] - 2022-08-23
8
22
9
23
---
10
24
11
25
### Added
26
+
12
27
- Add ` thumbnail_size ` property to ImageField by @jowilf https://github.com/jowilf/sqlalchemy-file/pull/9
13
28
14
29
## [ 0.1.2] - 2022-08-11
15
30
16
31
---
17
32
18
33
### Added
34
+
19
35
- 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.
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
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
+
7
19
## [ 0.1.3] - 2022-08-23
8
20
9
21
---
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
5
5
repo_url : https://github.com/jowilf/sqlalchemy-file
6
6
theme :
7
7
name : material
8
- icon :
9
- logo : material/file-cloud
10
8
palette :
11
9
- media : " (prefers-color-scheme: light)"
12
10
scheme : default
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " sqlalchemy-file"
3
- version = " 0.1.3 "
3
+ version = " 0.1.4 "
4
4
description = " SQLAlchemy-file is a SQLAlchemy extension for attaching files to SQLAlchemy model and uploading them to various storage."
5
5
authors = [
" Jocelin Hounon <[email protected] >" ]
6
6
license = " MIT"
Original file line number Diff line number Diff line change 1
- __version__ = "0.1.3 "
1
+ __version__ = "0.1.4 "
2
2
3
3
from .file import File as File
4
4
from .types import FileField as FileField
You can’t perform that action at this time.
0 commit comments