Skip to content

Commit adb9c53

Browse files
authored
release notes (#492)
1 parent a5bf70e commit adb9c53

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,20 @@
33
Unreleased
44
----------
55

6+
- .
7+
8+
9+
2024.12.0
10+
---------
11+
12+
- Add "exclusive" more to put, pipe and open, as in upstream fsspec
13+
- Allow concurrency in fetch_ranges
14+
- update versions
15+
- signed URLs from connection string; and add content type
16+
- CI cleanups
17+
- better error messages
18+
- honor anon parameter better
19+
- deterministic blob IDs on upload
620
- `AzureBlobFileSystem` and `AzureBlobFile` support pickling.
721
- Handle mixed casing for `hdi_isfolder` metadata when determining whether a blob should be treated as a folder.
822
- `_put_file`: `overwrite` now defaults to `True`.

adlfs/spec.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2094,7 +2094,11 @@ async def _async_fetch_range(self, start: int, end: int = None, **kwargs):
20942094
length = None if end is None else (end - start)
20952095
async with self.container_client:
20962096
stream = await self.container_client.download_blob(
2097-
blob=self.blob, offset=start, length=length, version_id=self.version_id, max_concurrency=self.fs.max_concurrency or 1
2097+
blob=self.blob,
2098+
offset=start,
2099+
length=length,
2100+
version_id=self.version_id,
2101+
max_concurrency=self.fs.max_concurrency or 1,
20982102
)
20992103
blob = await stream.readall()
21002104
return blob

0 commit comments

Comments
 (0)