You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/docs/r2/examples/aws/aws-sdk-java.mdx
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,18 @@ import { Render } from "~/components";
10
10
11
11
This example uses version 2 of the [aws-sdk-java](https://github.com/aws/aws-sdk-java-v2/#using-the-sdk) package. You must pass in the R2 configuration credentials when instantiating your `S3` service client:
12
12
13
+
:::note[Compatibility]
14
+
Client version `2.30.0` introduced a modification to the default checksum behavior from the client that is currently incompatible with R2 APIs.
15
+
16
+
To mitigate, users can use `2.29.52` or add the following to their S3Config:
Copy file name to clipboardExpand all lines: src/content/docs/r2/examples/aws/aws-sdk-php.mdx
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,18 @@ import { Render } from "~/components";
12
12
13
13
This example uses version 3 of the [aws-sdk-php](https://packagist.org/packages/aws/aws-sdk-php) package. You must pass in the R2 configuration credentials when instantiating your `S3` service client:
14
14
15
+
:::note[Compatibility]
16
+
Client version `3.337.0` introduced a modification to the default checksum behavior from the client that is currently incompatible with R2 APIs.
17
+
18
+
To mitigate, users can use `3.336.15` or add the following to their $options:
Copy file name to clipboardExpand all lines: src/content/docs/r2/examples/aws/boto3.mdx
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,18 @@ import { Render } from "~/components";
10
10
11
11
You must configure [`boto3`](https://boto3.amazonaws.com/v1/documentation/api/latest/index.html) to use a preconstructed `endpoint_url` value. This can be done through any `boto3` usage that accepts connection arguments; for example:
12
12
13
+
:::note[Compatibility]
14
+
Client version `1.36.0` introduced a modification to the default checksum behavior from the client that is currently incompatible with R2 APIs.
15
+
16
+
To mitigate, users can use `1.35.99` or add the following to their s3 resource config:
0 commit comments