Skip to content

Commit 484c130

Browse files
Update changelog
1 parent 5f22e87 commit 484c130

File tree

3 files changed

+8
-39
lines changed

3 files changed

+8
-39
lines changed

.changelog/1729878769.md

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

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
<!-- Do not manually edit this file. Use the `changelogger` tool. -->
2+
December 26th, 2024
3+
===================
4+
**New this release:**
5+
- :bug: (server, [smithy-rs#3890](https://github.com/smithy-lang/smithy-rs/issues/3890)) Fix bug in `serde` decorator that generated non-compiling code on some models
6+
7+
28
December 16th, 2024
39
===================
410

aws/SDK_CHANGELOG.next.json

Lines changed: 2 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -5,34 +5,6 @@
55
{
66
"smithy-rs": [],
77
"aws-sdk-rust": [
8-
{
9-
"message": "Client SDKs built with the `awsQueryCompatible` trait now include the `x-amzn-query-mode` header. This header signals the service that the clients are operating in compatible mode.\n",
10-
"meta": {
11-
"bug": false,
12-
"breaking": false,
13-
"tada": false
14-
},
15-
"author": "ysaito1001",
16-
"references": [
17-
"smithy-rs#3883"
18-
],
19-
"since-commit": "c606065c0e2e97d3cecb6a675ffc226dc488d674",
20-
"age": 5
21-
},
22-
{
23-
"message": "Fix default credential provider chain not respecting endpoint URL overrides from environment\n",
24-
"meta": {
25-
"bug": true,
26-
"breaking": false,
27-
"tada": false
28-
},
29-
"author": "aajtodd",
30-
"references": [
31-
"aws-sdk-rust#1193"
32-
],
33-
"since-commit": "c606065c0e2e97d3cecb6a675ffc226dc488d674",
34-
"age": 5
35-
},
368
{
379
"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",
3810
"meta": {
@@ -43,7 +15,7 @@
4315
"author": "Velfi",
4416
"references": [],
4517
"since-commit": "039177d0ee6dd288ad57de2230a1110bbe7ff7d5",
46-
"age": 2
18+
"age": 3
4719
},
4820
{
4921
"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",
@@ -57,7 +29,7 @@
5729
"smithy-rs#3583"
5830
],
5931
"since-commit": "89881abd3df80e9b6fd59790d7c02e2b9a6dd45c",
60-
"age": 1
32+
"age": 2
6133
}
6234
],
6335
"aws-sdk-model": []

0 commit comments

Comments
 (0)