Skip to content

Latest commit

 

History

History
55 lines (38 loc) · 1.58 KB

CHANGES.rst

File metadata and controls

55 lines (38 loc) · 1.58 KB

Change Log

asyncprawcore follows semantic versioning with the exception that deprecations will not be announced by a minor release.

1.5.1 (2021-01-25)

Changed

  • Improved preprocessing for data and params in Session.request().

1.5.0 (2020-09-28)

Changed

  • Added preprocessing for data and params in asyncprawcore.Session.request() for compatibility with aiohttp.

Fixed

  • Keys with a None value in the data or params parameters for asyncprawcore.Session.request() are now dropped as aiohttp.ClientSession.request() does not accept None values in data 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 in params.

1.4.0.post2 (2020-07-12)

Fixed

  • How files are handled. data is now able to be passed with files since asyncpraw can make requests with both parameters.
  • Fixed SpecialException not able to get response.json() since it is a coroutine.

1.4.0.post1 (2020-07-03)

Fixed

  • Documentation errors.
  • authorize_url will correctly return a str instead of yarl.URL().

1.4.0 (2020-06-20)

  • Converted from requests to aiohttp for asynchronous operation.
  • Updated upto version 1.4.0 of prawcore.
  • Forked from praw-dev/prawcore