Skip to content

Commit

Permalink
release notes (#492)
Browse files Browse the repository at this point in the history
  • Loading branch information
martindurant authored Dec 15, 2024
1 parent a5bf70e commit adb9c53
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,20 @@
Unreleased
----------

- .


2024.12.0
---------

- Add "exclusive" more to put, pipe and open, as in upstream fsspec
- Allow concurrency in fetch_ranges
- update versions
- signed URLs from connection string; and add content type
- CI cleanups
- better error messages
- honor anon parameter better
- deterministic blob IDs on upload
- `AzureBlobFileSystem` and `AzureBlobFile` support pickling.
- Handle mixed casing for `hdi_isfolder` metadata when determining whether a blob should be treated as a folder.
- `_put_file`: `overwrite` now defaults to `True`.
Expand Down
6 changes: 5 additions & 1 deletion adlfs/spec.py
Original file line number Diff line number Diff line change
Expand Up @@ -2094,7 +2094,11 @@ async def _async_fetch_range(self, start: int, end: int = None, **kwargs):
length = None if end is None else (end - start)
async with self.container_client:
stream = await self.container_client.download_blob(
blob=self.blob, offset=start, length=length, version_id=self.version_id, max_concurrency=self.fs.max_concurrency or 1
blob=self.blob,
offset=start,
length=length,
version_id=self.version_id,
max_concurrency=self.fs.max_concurrency or 1,
)
blob = await stream.readall()
return blob
Expand Down

0 comments on commit adb9c53

Please sign in to comment.