Skip to content

Releases: dgilman/gspread_asyncio

1.5.0

09 Oct 18:31
Compare
Choose a tag to compare
  • Support gspread 4.0.
  • Fixed type hint for append_rows(). Thanks to @yevhen-molchanov for the bug report.
  • Added worksheet.update() function. Thanks to @imasters11 for the patch.

1.4.0

20 Feb 19:38
Compare
Choose a tag to compare
  • Support gspread 3.7
  • Add insert_cols method to worksheet
  • Add insert/update/clear_note methods to worksheet

1.3.0

03 Feb 01:42
Compare
Choose a tag to compare
  • Drop support for Python 3.5.
  • Add missing folder_id argument to Client.create(). Thanks to @azjps for the patch!
  • Document how to use gspread_asyncio with google-auth. Thanks to @kraptor for the patch!

1.2.0

06 Sep 19:58
Compare
Choose a tag to compare
  • Fix bug with clearing of caches when deleting spreadsheets and worksheets
  • Add PEP-484 function signature type hints to the API
  • Remove setup.py dependency on oauth2client. gspread 3.6 allows you to use objects from the new google.auth library.
  • Miscellaneous documentation fixes

1.1.0

28 May 05:04
Compare
Choose a tag to compare

New APIs:

  • add_protected_range
  • append_rows
  • batch_get
  • batch_update
  • insert_rows

Thanks to Egor Panfilov for the implementation.

Other minor changes:

  • Fixes to documentation
  • Internally use the post-Python 3.7 asyncio APIs when appropriate