- Change param `session` in `get_object` to a positional parameter. (by hlf20010508 in 15, thanks to Mkohl2508)
Usage: py async with aiohttp.ClientSession() as session: response = await client.get_object(bucket_name, object_name, session) response.text()
If `get_object` needs to work alone.
1.13
- Completely removed `Unclosed client session` warning by wrapping aiohttp sessions with `async 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 by `aiohttp`. (by HakierGrzonzo in 12) - Abandon _attach_finalizer(), since it caused more trouble. The warnings `Unclosed client session` and `Unclosed connector` is not critical. (by hlf20010508)
1.11
- Fix `fput_object()` downloads zero size file. (by chasezheng in 10) - Change father module of `iscoroutinefunction()` from `inspect` to `asyncio`. (by chasezheng in 10)
1.10
- Support aysnc for `read()` in `read_part_data()`. (by chasezheng in 8)
1.9
- Fix `response.read` and `response.text` cannot be used by large file. (by miss85246 in 5)