- Planetary computer credential provider by @kylebarron in #379
No breaking changes.
-
In the
AzureStore
constructor, thecontainer
positional argument was renamed tocontainer_name
to match thecontainer_name
key inAzureConfig
. by @kylebarron in #380This is a breaking change if you had been calling
AzureStore(container="my container name")
.This is not breaking if you had been using it as a positional argument
AzureStore("my container name")
or if you had already been usingAzureStore(container_name="my container name")
.The idea here is that we want one and only one argument name for each underlying config parameter. Most of these breaking changes took place in 0.5.0, but this was overlooked.
- Fix import errors on Python 3.9:
- Define
__all__
to fix type checking import paths #389
- Fix chunk_size typo by @kylebarron in #377
- Docs: Make integrations dropdown by @kylebarron in #382
- Docs: Use source order in credential provider docs by @kylebarron in #383
- Add typing extensions as runtime dependency by @kylebarron in #384
Full Changelog: https://github.com/developmentseed/obstore/compare/py-v0.5.1...py-v0.6.0
- Fix import errors for Python 3.9 and 3.10. Update CI. by @kylebarron in #372
Full Changelog: https://github.com/developmentseed/obstore/compare/py-v0.5.0...py-v0.5.1
- Class methods wrapper. Instead of calling
obstore.get(store)
, you can now callstore.get()
directly. by @kylebarron in #331 - User-supplied credential callback by @kylebarron in #234
- Add Azure credential providers by @daviewales in #343
- Fsspec updates:
- Enable pickling Bytes by @kylebarron in #295
- Add AWS literal type hints by @kylebarron in #301
- pyo3-bytes slicing by @jessekrubin in #249
No breaking changes.
- Removed
S3Store.from_session
andS3Store._from_native
. Use credential providers instead. - Reduce the config variations supported for input. I.e. we previously allowed
region
,aws_region
,REGION
orAWS_REGION
as a config parameter toS3Store
, which could make it confusing. We now only support a single config input value for each underlying concept. #323
- Rename
AsyncFsspecStore
toFsspecStore
by @kylebarron in #297
- Validate input for range request by @kylebarron in #255
- Update performance numbers by @kylebarron in #307
- Document type-only constructs by @kylebarron in #309, #311
- Add import warning admonition on ObjectStore type by @kylebarron in
- Update etag conditional put docs by @kylebarron in #310
Full Changelog: https://github.com/developmentseed/obstore/compare/py-v0.4.0...py-v0.5.0
-
Support for pickling & always manage store prefix by @kylebarron in #185, #239, #223
-
Add top-level
obstore.store.from_url
function, which delegates to each store'sfrom_url
constructor by @kylebarron in #179, #201 -
Add option to return Arrow from
list_with_delimiter
by @kylebarron in #238, #244 -
(Provisional) Enhanced loading of s3 credentials using
aws-config
crate by @kylebarron in #203 -
Access config values out from stores by @kylebarron in #210
-
LocalStore updates:
-
File-like object updates:
-
Merge
config
andkwargs
and validate that no configuration parameters have been passed multiple times. (#180, #182, #218) -
Add
__repr__
toBytes
class by @jessekrubin in #173
get_range
,get_range_async
,get_ranges
, andget_ranges_async
now require named parameters forstart
,end
, andlength
to make the semantics of the range request fully explicit. by @kylebarron in #156- Previously, individual stores did not manage a prefix path within the remote resource and
PrefixStore
was used to enable this. As of 0.4.0,PrefixStore
was removed and all stores manage an optional mount prefix natively. obstore.open
has been renamed toobstore.open_reader
.- The
from_env
constructor has been removed fromS3Store
,GCSStore
, andAzureStore
. Now all constructors will read from environment variables. Use__init__
orfrom_url
instead. #189 obstore.exceptions.ObstoreError
renamed toobstore.exceptions.BaseError
#200
- Fix pylance finding exceptions module by @kylebarron in #183
- Allow passing in partial retry/backoff config by @kylebarron in #205
- Fix returning None from async functions by @kylebarron in #245
- Fix LocalStore range request past end of file, by @kylebarron in #230
- Update wording for fsspec docstring by @kylebarron in #195
- Add documentation about AWS region by @kylebarron in #213
- Add developer documentation for functional API choice by @kylebarron in #215
- Add
tqdm
progress bar example by @kylebarron in #237 - Add contributor, performance, integrations docs by @kylebarron in #227
- Add minio example by @kylebarron in #241
- Use manylinux 2_24 for aarch64 linux wheels by @kylebarron in #225
- @vincentsarago made their first contribution in #168
- @jessekrubin made their first contribution in #173
Full Changelog: https://github.com/developmentseed/obstore/compare/py-v0.3.0...py-v0.4.0
- Streaming uploads.
obstore.put
now supports iterable input, andobstore.put_async
now supports async iterable input. This means you can pass the output ofobstore.get_async
directly intoobstore.put_async
. by @kylebarron in #54 - Allow passing config options directly as keyword arguments. Previously, you had to pass all options as a
dict
into theconfig
parameter. Now you can pass the elements directly to the store constructor. by @kylebarron in #144 - Readable file-like objects. Open a readable file-like object with
obstore.open
andobstore.open_async
. by @kylebarron in #33 - Fsspec integration by @martindurant in #63
- Prefix store by @kylebarron in #117
- Python 3.13 wheels by @kylebarron in #95
- Support python timedelta objects as duration config values by @kylebarron in #146
- Add class constructors for store builders. Each store now has an
__init__
method, for easier construction. by @kylebarron in #141
get_range
,get_range_async
,get_ranges
, andget_ranges_async
now use start/end instead of offset/length. This is for consistency with therange
option ofobstore.get
. by @kylebarron in #71
- Return
Bytes
fromGetResult.bytes()
by @kylebarron in #134
- FastAPI/Starlette example by @kylebarron in #145
- Add conda installation doc to README by @kylebarron in #78
- Document suggested lifecycle rules for aborted multipart uploads by @kylebarron in #139
- Add type hint and documentation for requester pays by @kylebarron in #131
- Add note that S3Store can be constructed without boto3 by @kylebarron in #108
- HTTP Store usage example by @kylebarron in #142
- Improved docs for from_url by @kylebarron in #138
- Implement read_all for async iterable by @kylebarron in #140
- @willemarcel made their first contribution in #64
- @martindurant made their first contribution in #63
- @norlandrhagen made their first contribution in #107
- @gruebel made their first contribution in #115
Full Changelog: https://github.com/developmentseed/obstore/compare/py-v0.2.0...py-v0.3.0
- Streaming list results.
list
now returns an async or sync generator. by @kylebarron in #35 - Optionally return list result as arrow. The
return_arrow
keyword argument returns chunks fromlist
as Arrow RecordBatches, which is faster than materializing Python dicts/lists. by @kylebarron in #38 - Return buffer protocol object from
get_range
andget_ranges
. Enables zero-copy data exchange from Rust into Python. by @kylebarron in #39 - Add put options. Enables custom tags and attributes, as well as "put if not exists". by @kylebarron in #50
- Rename to obstore by @kylebarron in #45
- Add custom exceptions. by @kylebarron in #48
Full Changelog: https://github.com/developmentseed/obstore/compare/py-v0.1.0...py-v0.2.0
- Initial release.