v1.5.0
Changed
- Added preprocessing for
data
andparams
inasyncprawcore.Session.request()
for compatibility withaiohttp
.
Fixed
- Keys with a
None
value in thedata
orparams
parameters for
asyncprawcore.Session.request()
are now dropped as
aiohttp.ClientSession.request()
does not acceptNone
values indata
and
params
. - Keys with a boolean value in the
params
parameter for
asyncprawcore.Session.request()
are now casted to a string as
aiohttp.ClientSession.request()
does not accept boolean values inparams
.