- Add parameter `request_headers` for `stat_object`. (by hlf20010508 in 21)
1.16
- Fix ignored session argument in api._execute. (by erny in 18) - Remove `aiostream` for `tests.select_object_content`. (by hlf20010508 in 19)
1.15
- Fix timeout error caused by `_get_region`. (by johannesloibl in 17)
1.14
- 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)