Skip to content
This repository was archived by the owner on Feb 18, 2026. It is now read-only.

Commit da6ff4d

Browse files
committed
Merge branch 'master' into develop
# Conflicts: # Makefile # clients/python/README.md # clients/python/graphsense/__init__.py # clients/python/graphsense/api_client.py # clients/python/graphsense/configuration.py # clients/python/pyproject.toml # openapi_server/openapi/openapi.yaml # openapi_spec/graphsense.yaml # pyproject.toml # uv.lock
2 parents fbcd02b + 2cecff4 commit da6ff4d

2 files changed

Lines changed: 10 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,27 @@ All notable changes to this project will be documented in this file.
33

44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
55

6-
## [25.11.4/1.5.4] - 2025-12-11
6+
## [25.11.5/1.15.5] - 2026-01-07
7+
### removed
8+
- removed "Content-Disposition" header from bulk endpoints
9+
10+
## [25.11.4/1.15.4] - 2025-12-11
711
### changed
812
- bumped to graphsenselib 2.8.9
913

10-
## [25.11.3/1.5.3] - 2025-12-10
14+
## [25.11.3/1.15.3] - 2025-12-10
1115
### changed
1216
- bumped to graphsenselib 2.8.7
1317

14-
## [25.11.2/1.5.2] - 2025-11-20
18+
## [25.11.2/1.15.2] - 2025-11-20
1519
### changed
1620
- added fee field to AccountTxs
1721

18-
## [25.11.1/1.5.1] - 2025-11-13
22+
## [25.11.1/1.15.1] - 2025-11-13
1923
### changed
2024
- bumped to graphsenselib 2.8.1
2125

22-
## [25.11.0/1.5.0] - 2025-11-06
26+
## [25.11.0/1.15.0] - 2025-11-06
2327
### changed
2428
- harmonize tagpack obfuscation handling (tag obfuscator now a builtin plugin)
2529
- better search features (search with postfixes), scoped search that allows to enable/disable features.

gsrest/service/bulk_service.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,7 @@ async def bulk(request, currency, operation, body, num_pages, form="csv"):
6767
response = web.StreamResponse(
6868
status=200,
6969
reason="OK",
70-
headers={
71-
"Content-Type": mimetype,
72-
"Content-Disposition": f"attachment; filename=bulk.{form}",
73-
},
70+
headers={"Content-Type": mimetype},
7471
)
7572

7673
response.enable_chunked_encoding()

0 commit comments

Comments
 (0)