asyncprawcore follows semantic versioning with the exception that deprecations will not be announced by a minor release.
Changed
- Improved preprocessing for
data
andparams
inSession.request()
.
Changed
- Added preprocessing for
data
andparams
inasyncprawcore.Session.request()
for compatibility withaiohttp
.
Fixed
- Keys with a
None
value in thedata
orparams
parameters forasyncprawcore.Session.request()
are now dropped asaiohttp.ClientSession.request()
does not acceptNone
values indata
andparams
. - Keys with a boolean value in the
params
parameter forasyncprawcore.Session.request()
are now casted to a string asaiohttp.ClientSession.request()
does not accept boolean values inparams
.
Fixed
- How files are handled.
data
is now able to be passed withfiles
since asyncpraw can make requests with both parameters. - Fixed
SpecialException
not able to getresponse.json()
since it is a coroutine.
Fixed
- Documentation errors.
authorize_url
will correctly return astr
instead ofyarl.URL()
.
- Converted from
requests
toaiohttp
for asynchronous operation. - Updated upto version 1.4.0 of prawcore.
- Forked from praw-dev/prawcore