forked from mardix/flask-cloudy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCHANGELOG
35 lines (27 loc) · 1.05 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
0.10.0
- Removed LOCAL_PATH configuration. Use CONTAINER as the LOCAL_PATH
- Change config prefix to STORAGE_*
0.6.0
- More pythonic
- implement __contains__ to look for an item in the storage. `if object_name in storage`
- rename Storage:objet to Storage:get().
0.5.1
- Fixed typo
0.5.0
- object_path return the full path of the object when on local
- get_url() can return short url for local file instead of the full domain one
- rename Storage:get_object to Storage:object
0.4.0
- Added: provider_name, container_name, and local_path, object_path to object
0.3.1
- Added the config 'CLOUDSTORAGE_SERVE_FILES_URL_SECURE' in flask to serve
files over https
0.3.0
- Serve local files through Python
- When flask FileStorage type is being uploaded, use the stream method
- Object:get_url() will now return the appropriate url
0.2.0
- Add extension of original file on upload if object_name doesn't have an extension
- Use the original file name as object name, if object name is None
0.1.0
- First