Skip to content

Commit 07fd14c

Browse files
bjornengdahlvoodoo11
authored andcommitted
Bumped boto3 to <2.0.0 (#9352)
Co-authored-by: Jakub Kowalski <[email protected]> GitOrigin-RevId: 4b65f7dfa473f713bf431d0412a6e562d7c465d4
1 parent 6e0dfcf commit 07fd14c

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
1818
- The frequency of background operator snapshot compression in data persistence is limited to the greater of the user-defined `snapshot_interval` or 30 minutes when S3 or Azure is used as the backend, in order to avoid frequent calls to potentially expensive operations.
1919
- The Google Drive input connector performance has been improved, especially when handling directories with many nested subdirectories.
2020
- The MCP server `tool` method now allows to pass the optional data `title`, `output_schema`, `annotations` and `meta` to inform the LLM client.
21+
- Relaxed boto3 dependency to <2.0.0.
2122

2223
## [0.26.1] - 2025-08-28
2324

integration_tests/s3/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@ def delete_minio_object(path):
6868
aws_secret_access_key=os.environ["MINIO_S3_SECRET_ACCESS_KEY"],
6969
endpoint_url="https://minio-api.deploys.pathway.com",
7070
)
71-
s3_client.delete_objects(
71+
s3_client.delete_object(
7272
Bucket=MINIO_BUCKET_NAME,
73-
Delete={"Objects": [{"Key": path}]},
73+
Key=path,
7474
)
7575

7676

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ dependencies = [
2929
"rich >= 12.6.0",
3030
"diskcache >= 5.2.1",
3131
"exceptiongroup >= 1.1.3; python_version < '3.11'",
32-
"boto3 >= 1.26.76, < 1.36.0",
32+
"boto3 >= 1.26.76, < 2.0.0",
3333
"google-api-python-client >= 2.108.0",
3434
"typing_extensions >= 4.8.0",
3535
"panel >= 1.3.1",

0 commit comments

Comments
 (0)