- breaking change - remove `megfile.utils.cachedproperty` - modify the parameter order of `s3_download` and `s3_upload` - change param `cookie` to `offset` in some `seek` functions - perf - optimize the type annotations - `FileLike` is subclass of `io.IOBase` and `typing.IO` - chore - use `pyproject.toml` instead of `setup.py`
3.0.6.post1
- fix - add cli extras require, run `pip install 'megfile[cli]'` to install cli requirements
3.0.6
- feat - support more parameters of `requests` like `headers` in `HttpPath`. - support `overwrite` parameter in `copy`, `sync` and `move` functions, default is `True`. - cli command `mv`, `cp`, `sync` support `--skip` option, can skip existed files. - perf - http request will check body size and retry when body is incomplete.
3.0.5
- feat - auto decode http content when response with `Content-Encoding` header - perf - add s3 retry code, retry request when catch response code `499` - add environments for setup retry times: `MEGFILE_MAX_RETRY_TIMES`, `MEGFILE_S3_MAX_RETRY_TIMES`, `MEGFILE_HTTP_MAX_RETRY_TIMES`, `MEGFILE_HDFS_MAX_RETRY_TIMES`, `MEGFILE_SFTP_MAX_RETRY_TIMES`. default is `10`
3.0.4
- feat - Support more official S3 configurations. New env: `AWS_ENDPOINT_URL_S3`, `AWS_ENDPOINT_URL`.
3.0.3
- perf - optimize read and write performance for s3, http and hdfs