Releases: justindujardin/pathy
Releases · justindujardin/pathy
v0.6.2
0.6.2 (2022-06-30)
Bug Fixes
- smart_open: use compression flag required by 6.x versions (8c5f092)
v0.6.1
0.6.1 (2021-10-25)
Bug Fixes
- Update for Python 3.10 compatibility (#68) (450c2f2)
v0.6.0
0.6.0 (2021-06-26)
Features
BREAKING CHANGES
- This change removes support for smart_open < 5.0.0
The API for specifying s3 credentials changed in smart_open v5, so previous versions are incompatible.
v0.5.2
0.5.2 (2021-04-24)
Features
- cli: add version number to cli help string (#55) (8001907)
v0.5.1
0.5.1 (2021-04-23)
Features
- clients: add support for S3 bucket storage (#54) (5bb7e1b)
v0.5.0
0.5.0 (2021-04-22)
Bug Fixes
- auto-import: move public exports into init.py (fd09021)
- cli: ls returns code 1 from invalid sources (b2ff829)
- samefile: compare self.key to other.key not self.key (688628e)
BREAKING CHANGES
- auto-import: Previously you could import symbols directly from their files in the module, e.g.
from pathy.base import Pathy
. Now you must import them from the base package, e.g. from pathy import Pathy
.
v0.4.0
0.4.0 (2021-02-15)
Bug Fixes
- gcs: stop handling DefaultCredentialsError (d4754ff), closes #43
BREAKING CHANGES
Pathy would previously handle google's DefaultCredentialsError and raise its own, which covered some use-cases and confused others. If google's cloud SDK cannot find default credentials, you will need to handle that exception manually.
v0.3.6
0.3.6 (2021-02-10)
Features
- cli: add "-l" flag to ls command (e47fb02)
- Pathy: add "ls" method for quickly querying blobs with stats (bf452e7)
- tests: include tests in pypi package (#44) (d6ad724)
v0.3.5
0.3.5 (2021-02-02)
Bug Fixes
v0.3.4
0.3.4 (2020-11-22)
Features
- clients: add set_client_params for specifying client-specific args (#39) (84b9987)