Skip to content

Commit 26dbaf8

Browse files
authored
Merge branch 'smithy-rs-release-1.x.y' into landonxjames/dsqlfix
2 parents 95d695e + 2922940 commit 26dbaf8

File tree

5 files changed

+60
-81
lines changed

5 files changed

+60
-81
lines changed

.changelog/1733238900.md

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

.changelog/4329788.md

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

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,19 @@
11
<!-- Do not manually edit this file. Use the `changelogger` tool. -->
2+
December 3rd, 2024
3+
==================
4+
**Breaking Changes:**
5+
- :bug::warning: (server, [smithy-rs#3880](https://github.com/smithy-lang/smithy-rs/issues/3880)) Unnamed enums now validate assigned values and will raise a `ConstraintViolation` if an unknown variant is set.
6+
7+
The following is an example of an unnamed enum:
8+
```smithy
9+
@enum([
10+
{ value: "MONDAY" },
11+
{ value: "TUESDAY" }
12+
])
13+
string UnnamedDayOfWeek
14+
```
15+
16+
217
November 5th, 2024
318
==================
419

aws/SDK_CHANGELOG.next.json

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"aws-sdk-rust#1202"
1919
],
2020
"since-commit": "1e803494dc1c9f1d8290cf9317ed39b026a603a2",
21-
"age": 4
21+
"age": 5
2222
},
2323
{
2424
"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",
@@ -32,7 +32,7 @@
3232
"smithy-rs#3883"
3333
],
3434
"since-commit": "c606065c0e2e97d3cecb6a675ffc226dc488d674",
35-
"age": 3
35+
"age": 4
3636
},
3737
{
3838
"message": "Fix default credential provider chain not respecting endpoint URL overrides from environment\n",
@@ -46,7 +46,19 @@
4646
"aws-sdk-rust#1193"
4747
],
4848
"since-commit": "c606065c0e2e97d3cecb6a675ffc226dc488d674",
49-
"age": 3
49+
"age": 4
50+
},
51+
{
52+
"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",
53+
"meta": {
54+
"bug": false,
55+
"breaking": false,
56+
"tada": true
57+
},
58+
"author": "Velfi",
59+
"references": [],
60+
"since-commit": "039177d0ee6dd288ad57de2230a1110bbe7ff7d5",
61+
"age": 1
5062
}
5163
],
5264
"aws-sdk-model": []

aws/sdk/Cargo.lock

Lines changed: 30 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)