Skip to content

Releases: omarryhan/aiogoogle

2.1.0

15 Aug 13:18
8fd6b73
Compare
Choose a tag to compare

Features

Add the option to upload bytes object

Thanks to

Andrea Ghensi @sanzoghenzo

v2.0.1

30 Jul 17:50
Compare
Choose a tag to compare

Bug fixes

  • Fixed a bug were multipart headers for content-type were incorrectly configured. Also, now adding JSON to all multipart requests even if it's empty.
  • closes #46
  • closes #64

v2.0.0

18 Jul 11:58
cd6b80a
Compare
Choose a tag to compare

Bug fixes

Now quoting path parameters with urllib.quote instead of urllib.quote_plus

Will my stuff break?

Unless you are passing strings as url path parameters in POST requests (which is unlikely), you should upgrade to v2 without a thought. Otherwise, please read this issue for more details: #63 (comment)

v1.1.15

13 Jul 10:37
Compare
Choose a tag to compare

Features

Now defaulting to chunked file downloads as it's more efficient.

v1.1.14

06 May 10:18
Compare
Choose a tag to compare

Features

Now supports repeated argument. If an URL argument is repeatable, you can pass an array (or a tuple or a set) and Aiogoogle will split them into repeated URL args, instead of serializing the whole array as a JSON array.

v1.1.13

17 Mar 18:36
Compare
Choose a tag to compare

Bug fixes

  • Fixed an issue were because uri_params reference was only passed and not copied for building the URL (excluding the query), it popped query parameters as well which caused some URI params to get deleted unintentionally.

v1.1.12

01 Mar 09:30
Compare
Choose a tag to compare

Bug fixes

  • Fixed bug where the existing refresh token isn't added to UserCreds when refreshed. It should add it because sometimes, when UserCreds is refreshed, only an access token is returned and not a refresh token.

v1.1.11

27 Feb 08:20
99bcadc
Compare
Choose a tag to compare

Bug fixes

  • Use all valid ISS values during JWT token validation

Note

  • This is the same as the previous release, but I forgot to bump the version before publishing the previous one. This should fix the Pypi package update problem.

v1.1.10

27 Feb 08:16
ca5d29f
Compare
Choose a tag to compare

Bug fixes

  • Use all valid ISS values during JWT token validation

v1.1.9

17 Feb 22:22
4b9ec6b
Compare
Choose a tag to compare

Validation bug fix and enum validation feature

Features

  • Now validating discovery doc enum

Bug fixes

  • Fixed a bug where minimum and maximum validation where mutually exclusive. i.e. a field can have both and a min and max, but it wasn't being validated as such.