Releases: hlf20010508/miniopy-async
Releases · hlf20010508/miniopy-async
1.13
- Completely removed
Unclosed client session
warning by wrapping aiohttp sessions withasync with
to ensure the session is cleaned up. (by @nkukard, @hlf20010508 in #15)
1.12
- Fix custom metadata auto transforming to
list
type, which is unsupported byaiohttp
. (by @HakierGrzonzo in #12) - Abandon _attach_finalizer(), since it caused more trouble. The warnings
Unclosed client session
andUnclosed connector
is not critical. (by @hlf20010508)
1.11
- Fix
fput_object()
downloads zero size file. (by @chasezheng in #10) - Change father module of
iscoroutinefunction()
frominspect
toasyncio
. (by @chasezheng in #10)
1.10
- Support aysnc for
read()
inread_part_data()
. (by @chasezheng in #8)
1.9
- Fix
response.read
andresponse.text
cannot be used by large file. (by @miss85246 in #5)
1.8
- Reformat code. (by @miss85246 in #4)
- Remove redundant
URL
. (by @miss85246 in #2) - Remove redundant
Minio.close
andMinio._async_http
. (by @hlf20010508) - Use
with
to createaiohttp.ClientSession
. (by @miss85246 in #4) - Fix parameter error of
ServerError
inMinio._url_open
(by @miss85246 in #4)
1.7
- Fix
Unclosed client session
caused byMinio._async_http
not be closed. (by @hlf20010508) - All redundant outputs are removed. (by @miss85246, @hlf20010508 in #2)
1.6
- Rename import package from minio_async to miniopy_async
- Update publish.py, add
.whl
1.3
- Update Apache-2.0 license.
1.2
- Add parameter
progress
forput_object
andfput_object
. Class<Progress>
is provided, you don't have to create it manuly. - Add
num_parallel_uploads
forput_object
andfput_object