Skip to content

Releases: Othoz/gcsfs

Relax unnecessary constraints on dependencies

03 Jun 09:32
c219b9c
Compare
Choose a tag to compare

What's Changed

Full Changelog: 1.4.5...1.5.1

Add missing `requests` dependency

25 Mar 10:33
58ac6de
Compare
Choose a tag to compare
Merge pull request #44 from trendelkampschroer/bugix/add_missing_requ…

…ests_dependency

Add missing `requests` dependency.

Add missing `urllib3` and `packaging` dependencies

25 Mar 09:30
40c1be0
Compare
Choose a tag to compare
Merge pull request #43 from trendelkampschroer/bugfix/add_missing_dep…

…endency_specifications

Bugfix/add missing dependency specifications

Bugfix: Support older versions of `urllib3`

24 Mar 09:10
ae98e90
Compare
Choose a tag to compare

Ensure compatibility with urllib3 versions smaller than 1.26.0 - the first version that introduced the allowed_methods argument and started deprecation of the method_whitelist argument.

1.4.2 - 24.02.2021

24 Feb 17:39
deee759
Compare
Choose a tag to compare
  • GCSFile now exposes a mode attribute as required by the interface
  • Changed keyword argument of underlying dependency urllib3 from method_whitelist to allowed_methods to avoid deprecation warning (#39)

1.4.1

10 Jul 15:11
068216d
Compare
Choose a tag to compare

1.4.1

Fixed

  • Fixed a bug in GCSFile.readinto that surfaced for Python >=3.8 when reading data via e.g. numpy.load.

1.4.0

12 Jun 13:12
0cd5fd9
Compare
Choose a tag to compare

1.4.0 - 12.06.2020

Changed

  • The underlying HTTP client is now configured to automatically retry requests that return a status code of "429 Too Many Requests", "502 Bad Gateway", "503 Service Unavailable" and "504 Gateway Timeout".

Fixed

  • Some tests were still calling get_bucket() from the constructor of GCSFS.

1.4.0 Beta

11 Jun 12:50
191c438
Compare
Choose a tag to compare
1.4.0 Beta Pre-release
Pre-release

Beta version of retry mechanism

1.3.0

20 May 10:54
3a45a22
Compare
Choose a tag to compare

Changed

Removed the (non-required) call to get_bucket() from the constructor of GCSFS. This avoids the need for storage.buckets.get permissions on that bucket and thus now allows users to simplify access management by using tight, predefined IAM roles.
This change has two implications: a) the constructor is now a bit faster as one less RPC is performed; b) the error message in case a bucket does not exist is slightly less informative.

1.3.0 Alpha 1

20 May 10:48
3a45a22
Compare
Choose a tag to compare
1.3.0 Alpha 1 Pre-release
Pre-release

Prerelease in order to test out the newly updated PyPi deployment token.