Skip to content

Commit 81ecb70

Browse files
Update changelog
1 parent 733eab7 commit 81ecb70

File tree

3 files changed

+19
-24
lines changed

3 files changed

+19
-24
lines changed

.changelog/presigning-bugfix.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
<!-- Do not manually edit this file. Use the `changelogger` tool. -->
2+
January 17th, 2025
3+
==================
4+
25
January 14th, 2025
36
==================
47
**New this release:**

aws/SDK_CHANGELOG.next.json

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,6 @@
55
{
66
"smithy-rs": [],
77
"aws-sdk-rust": [
8-
{
9-
"message": "Add auth token generator for Amazon Aurora DSQL.\n\n```rust\nuse aws_sdk_dsql::auth_token::{AuthTokenGenerator, Config};\n\n#[tokio::main]\nasync fn main() {\n let cfg = aws_config::load_defaults(BehaviorVersion::latest()).await;\n let generator = AuthTokenGenerator::new(\n Config::builder()\n .hostname(\"peccy.dsql.us-east-1.on.aws\")\n .build()\n .expect(\"cfg is valid\"),\n );\n let token = generator.auth_token(&cfg).await.unwrap();\n println!(\"{token}\");\n}\n```\n\nThe resulting token can then be used as a password when connecting to the\ndatabase server.\n",
10-
"meta": {
11-
"bug": false,
12-
"breaking": false,
13-
"tada": true
14-
},
15-
"author": "Velfi",
16-
"references": [],
17-
"since-commit": "039177d0ee6dd288ad57de2230a1110bbe7ff7d5",
18-
"age": 5
19-
},
208
{
219
"message": "It is now possible to disable payload signing through an operation customization.\n\n```rust\nasync fn put_example_object(client: &aws_sdk_s3::Client) {\n let res = client\n .put_object()\n .bucket(\"test-bucket\")\n .key(\"test-key\")\n .body(ByteStream::from_static(b\"Hello, world!\"))\n .customize()\n // Setting this will disable payload signing.\n .disable_payload_signing()\n .send()\n .await;\n}\n```\n\nDisabling payload signing will result in a small speedup at the cost of removing a data integrity check.\nHowever, this is an advanced feature and **may not be supported by all services/operations**.\n",
2210
"meta": {
@@ -29,7 +17,7 @@
2917
"smithy-rs#3583"
3018
],
3119
"since-commit": "89881abd3df80e9b6fd59790d7c02e2b9a6dd45c",
32-
"age": 4
20+
"age": 5
3321
},
3422
{
3523
"message": "Fix token bucket not being set for standard and adaptive retry modes\n",
@@ -43,7 +31,7 @@
4331
"aws-sdk-rust#1234"
4432
],
4533
"since-commit": "f7f037d3fda2d02b6a2ad1bce40dd84c787c6c35",
46-
"age": 1
34+
"age": 2
4735
},
4836
{
4937
"message": "S3 client behavior is updated to always calculate a checksum by default for operations that support it (such as PutObject or UploadPart), or require it (such as DeleteObjects). The default checksum algorithm is CRC32. Checksum behavior can be configured using `when_supported` and `when_required` options - in shared config using request_checksum_calculation, or as env variable using AWS_REQUEST_CHECKSUM_CALCULATION.\n\nThe S3 client attempts to validate response checksums for all S3 API operations that support checksums. However, if the SDK has not implemented the specified checksum algorithm then this validation is skipped. Checksum validation behavior can be configured using `when_supported` and `when_required` options - in shared config using response_checksum_validation, or as env variable using AWS_RESPONSE_CHECKSUM_VALIDATION.\n",
@@ -57,6 +45,20 @@
5745
"smithy-rs#3845"
5846
],
5947
"since-commit": "f7f037d3fda2d02b6a2ad1bce40dd84c787c6c35",
48+
"age": 2
49+
},
50+
{
51+
"message": "Fix bug with presigned requests introduced by new flexibile checksums functionality\n",
52+
"meta": {
53+
"bug": true,
54+
"breaking": false,
55+
"tada": false
56+
},
57+
"author": "landonxjames",
58+
"references": [
59+
"aws-sdk-rust#1240"
60+
],
61+
"since-commit": "733eab7e1a3678971ffa6bf9fb99826e17e99481",
6062
"age": 1
6163
}
6264
],

0 commit comments

Comments
 (0)