Skip to content

Commit 8df5ac8

Browse files
authored
Update links (these don't redirect) (#3218)
Fix broken links as a result of repo movement ---- _By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice._
1 parent 9af2b21 commit 8df5ac8

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ August 1st, 2023
382382
}
383383
```
384384

385-
A single `Plugin` can no longer apply a `tower::Layer` on HTTP requests/responses _and_ modelled structures at the same time (see middleware positions [C](https://awslabs.github.io/smithy-rs/design/server/middleware.html#c-operation-specific-http-middleware) and [D](https://awslabs.github.io/smithy-rs/design/server/middleware.html#d-operation-specific-model-middleware). Instead one `Plugin` must be specified for each and passed to the service builder constructor separately:
385+
A single `Plugin` can no longer apply a `tower::Layer` on HTTP requests/responses _and_ modelled structures at the same time (see middleware positions [C](https://smithy-lang.github.io/smithy-rs/design/server/middleware.html#c-operation-specific-http-middleware) and [D](https://smithy-lang.github.io/smithy-rs/design/server/middleware.html#d-operation-specific-model-middleware). Instead one `Plugin` must be specified for each and passed to the service builder constructor separately:
386386

387387
```rust
388388
let app = PokemonService::builder_with_plugins(/* HTTP plugins */, /* model plugins */)
@@ -1184,7 +1184,7 @@ September 20th, 2022
11841184
`aws_smithy_http::operation::Parts` has been renamed to `retry_classifier`.
11851185

11861186
**New this release:**
1187-
- 🎉 (client, [smithy-rs#1647](https://github.com/smithy-lang/smithy-rs/issues/1647), [smithy-rs#1112](https://github.com/smithy-lang/smithy-rs/issues/1112)) Implemented customizable operations per [RFC-0017](https://awslabs.github.io/smithy-rs/design/rfcs/rfc0017_customizable_client_operations.html).
1187+
- 🎉 (client, [smithy-rs#1647](https://github.com/smithy-lang/smithy-rs/issues/1647), [smithy-rs#1112](https://github.com/smithy-lang/smithy-rs/issues/1112)) Implemented customizable operations per [RFC-0017](https://smithy-lang.github.io/smithy-rs/design/rfcs/rfc0017_customizable_client_operations.html).
11881188

11891189
Before this change, modifying operations before sending them required using lower-level APIs:
11901190

codegen-server/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Server-side Smithy code generator
44

55
** This is a work in progress and generates serialization/de-serialization code that is probably unusable for the time being. **
66

7-
[Design documentation (WIP)](https://awslabs.github.io/smithy-rs/)
7+
[Design documentation (WIP)](https://smithy-lang.github.io/smithy-rs/)
88

99
## Project Layout
1010

design/src/rfcs/rfc0030_serialization_and_deserialization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Lastly, we emphasize that this RFC does NOT aim to serialize the entire response
3838
Users have requested `serde` traits to be implemented on data types implemented in rust SDK.
3939
We have created this RFC with the following use cases in mind.
4040
1. [[request]: Serialize/Deserialize of models for Lambda events #269](https://github.com/awslabs/aws-sdk-rust/issues/269)
41-
2. [Tests](https://awslabs.github.io/smithy-rs/design/faq.html#why-dont-the-sdk-service-crates-implement-serdeserialize-or-serdedeserialize-for-any-types) as suggested in the design FAQ.
41+
2. [Tests](https://smithy-lang.github.io/smithy-rs/design/faq.html#why-dont-the-sdk-service-crates-implement-serdeserialize-or-serdedeserialize-for-any-types) as suggested in the design FAQ.
4242
3. Building tools
4343

4444
# Feature Gate

examples/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ These servers, and their clients, are generated using smithy-rs. You're invited
1414
to benchmark the performance of these servers to see whether smithy-rs might be
1515
a suitable choice for implementing your web service.
1616

17-
[middleware]: https://awslabs.github.io/smithy-rs/design/server/middleware.html
18-
[extractors]: https://awslabs.github.io/smithy-rs/design/server/from_parts.html
17+
[middleware]: https://smithy-lang.github.io/smithy-rs/design/server/middleware.html
18+
[extractors]: https://smithy-lang.github.io/smithy-rs/design/server/from_parts.html
1919

2020

2121
## Pre-requisites

rust-runtime/aws-smithy-http-server/src/plugin/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
//! you absolutely require your middleware to run after deserialization, or to act on particular
3535
//! fields of your deserialized operation's input/output/errors.
3636
//!
37-
//! [the book]: https://awslabs.github.io/smithy-rs/design/server/anatomy.html
37+
//! [the book]: https://smithy-lang.github.io/smithy-rs/design/server/anatomy.html
3838
//!
3939
//! # Filtered application of a HTTP [`Layer`](tower::Layer)
4040
//!

0 commit comments

Comments
 (0)