Skip to content

Commit 6438a09

Browse files
authored
Fix repo org move issues (#3166)
This PR fixes issues introduced by moving the repository from awslabs/smithy-rs to smithy-lang/smithy-rs. ---- _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 7f8fef2 commit 6438a09

File tree

245 files changed

+791
-787
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

245 files changed

+791
-787
lines changed

.github/workflows/ci-merge-queue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
needs:
8585
- save-docker-login-token
8686
- acquire-base-image
87-
if: ${{ github.event.pull_request.head.repo.full_name == 'awslabs/smithy-rs' || toJSON(github.event.merge_group) != '{}' }}
87+
if: ${{ github.event.pull_request.head.repo.full_name == 'smithy-lang/smithy-rs' || toJSON(github.event.merge_group) != '{}' }}
8888
uses: ./.github/workflows/ci.yml
8989
with:
9090
run_sdk_examples: true

.github/workflows/ci-pr-forks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
# it uploads the image as a build artifact for other jobs to download and use.
1919
acquire-base-image:
2020
name: Acquire Base Image
21-
if: ${{ github.event.pull_request.head.repo.full_name != 'awslabs/smithy-rs' }}
21+
if: ${{ github.event.pull_request.head.repo.full_name != 'smithy-lang/smithy-rs' }}
2222
runs-on: ubuntu-latest
2323
steps:
2424
- uses: actions/checkout@v3
@@ -39,7 +39,7 @@ jobs:
3939
# Run shared CI after the Docker build image has either been rebuilt or found in ECR
4040
ci:
4141
needs: acquire-base-image
42-
if: ${{ github.event.pull_request.head.repo.full_name != 'awslabs/smithy-rs' }}
42+
if: ${{ github.event.pull_request.head.repo.full_name != 'smithy-lang/smithy-rs' }}
4343
uses: ./.github/workflows/ci.yml
4444
with:
4545
run_sdk_examples: true

.github/workflows/ci-pr.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
# The login password is encrypted with the repo secret DOCKER_LOGIN_TOKEN_PASSPHRASE
2222
save-docker-login-token:
2323
name: Save a docker login token
24-
if: ${{ github.event.pull_request.head.repo.full_name == 'awslabs/smithy-rs' }}
24+
if: ${{ github.event.pull_request.head.repo.full_name == 'smithy-lang/smithy-rs' }}
2525
outputs:
2626
docker-login-password: ${{ steps.set-token.outputs.docker-login-password }}
2727
permissions:
@@ -51,7 +51,7 @@ jobs:
5151
acquire-base-image:
5252
name: Acquire Base Image
5353
needs: save-docker-login-token
54-
if: ${{ github.event.pull_request.head.repo.full_name == 'awslabs/smithy-rs' }}
54+
if: ${{ github.event.pull_request.head.repo.full_name == 'smithy-lang/smithy-rs' }}
5555
runs-on: smithy_ubuntu-latest_8-core
5656
env:
5757
ENCRYPTED_DOCKER_PASSWORD: ${{ needs.save-docker-login-token.outputs.docker-login-password }}
@@ -86,7 +86,7 @@ jobs:
8686
needs:
8787
- save-docker-login-token
8888
- acquire-base-image
89-
if: ${{ github.event.pull_request.head.repo.full_name == 'awslabs/smithy-rs' }}
89+
if: ${{ github.event.pull_request.head.repo.full_name == 'smithy-lang/smithy-rs' }}
9090
uses: ./.github/workflows/ci.yml
9191
with:
9292
run_sdk_examples: true
@@ -97,7 +97,7 @@ jobs:
9797
# The PR bot requires a Docker build image, so make it depend on the `acquire-base-image` job.
9898
pr_bot:
9999
name: PR Bot
100-
if: ${{ github.event.pull_request.head.repo.full_name == 'awslabs/smithy-rs' }}
100+
if: ${{ github.event.pull_request.head.repo.full_name == 'smithy-lang/smithy-rs' }}
101101
needs: acquire-base-image
102102
uses: ./.github/workflows/pull-request-bot.yml
103103
with:

.github/workflows/update-sdk-next.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Check out `smithy-rs`
2626
uses: actions/checkout@v3
2727
with:
28-
repository: awslabs/smithy-rs
28+
repository: smithy-lang/smithy-rs
2929
ref: ${{ inputs.generate_ref }}
3030
path: smithy-rs
3131
- name: Check out `aws-sdk-rust`

CHANGELOG.md

Lines changed: 295 additions & 295 deletions
Large diffs are not rendered by default.

CODEOWNERS

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,40 @@
1-
* @awslabs/rust-sdk-owners
1+
* @smithy-lang/aws-sdk-rust
22

33
# Server
4-
/codegen-server-test/ @awslabs/smithy-rs-server
5-
/codegen-server/ @awslabs/smithy-rs-server
6-
/rust-runtime/aws-smithy-http-server/ @awslabs/smithy-rs-server
4+
/codegen-server-test/ @smithy-lang/smithy-rs-server
5+
/codegen-server/ @smithy-lang/smithy-rs-server
6+
/rust-runtime/aws-smithy-http-server/ @smithy-lang/smithy-rs-server
77

88
# Python Server
9-
/codegen-server-test/python/ @awslabs/smithy-rs-python-server @awslabs/smithy-rs-server
10-
/codegen-server/python/ @awslabs/smithy-rs-python-server @awslabs/smithy-rs-server
11-
/rust-runtime/aws-smithy-http-server-python/ @awslabs/smithy-rs-python-server @awslabs/smithy-rs-server
9+
/codegen-server-test/python/ @smithy-lang/smithy-rs-server
10+
/codegen-server/python/ @smithy-lang/smithy-rs-server
11+
/rust-runtime/aws-smithy-http-server-python/ @smithy-lang/smithy-rs-server
1212

1313
# Typescript Server
14-
/codegen-server-test/typescript/ @awslabs/smithy-rs-typescript-server @awslabs/smithy-rs-server
15-
/codegen-server/typescript/ @awslabs/smithy-rs-typescript-server @awslabs/smithy-rs-server
16-
/rust-runtime/aws-smithy-http-server-typescript/ @awslabs/smithy-rs-typescript-server @awslabs/smithy-rs-server
14+
/codegen-server-test/typescript/ @smithy-lang/smithy-rs-server
15+
/codegen-server/typescript/ @smithy-lang/smithy-rs-server
16+
/rust-runtime/aws-smithy-http-server-typescript/ @smithy-lang/smithy-rs-server
1717

1818
# Shared ownership
19-
/.github/ @awslabs/rust-sdk-owners @awslabs/smithy-rs-server
20-
/CHANGELOG.md @awslabs/rust-sdk-owners @awslabs/smithy-rs-server
21-
/CHANGELOG.next.toml @awslabs/rust-sdk-owners @awslabs/smithy-rs-server
22-
/README.md @awslabs/rust-sdk-owners @awslabs/smithy-rs-server
23-
/build.gradle.kts @awslabs/rust-sdk-owners @awslabs/smithy-rs-server
24-
/buildSrc/ @awslabs/rust-sdk-owners @awslabs/smithy-rs-server
25-
/codegen-core/ @awslabs/rust-sdk-owners @awslabs/smithy-rs-server
26-
/design/ @awslabs/rust-sdk-owners @awslabs/smithy-rs-server
27-
/examples/ @awslabs/rust-sdk-owners @awslabs/smithy-rs-server
28-
/gradle.properties @awslabs/rust-sdk-owners @awslabs/smithy-rs-server
29-
/tools/ @awslabs/rust-sdk-owners @awslabs/smithy-rs-server
30-
/rust-runtime/aws-smithy-async/ @awslabs/rust-sdk-owners @awslabs/smithy-rs-server
31-
/rust-runtime/aws-smithy-eventstream/ @awslabs/rust-sdk-owners @awslabs/smithy-rs-server
32-
/rust-runtime/aws-smithy-http/ @awslabs/rust-sdk-owners @awslabs/smithy-rs-server
33-
/rust-runtime/aws-smithy-json/ @awslabs/rust-sdk-owners @awslabs/smithy-rs-server
34-
/rust-runtime/aws-smithy-protocol-test/ @awslabs/rust-sdk-owners @awslabs/smithy-rs-server
35-
/rust-runtime/aws-smithy-types/ @awslabs/rust-sdk-owners @awslabs/smithy-rs-server
36-
/rust-runtime/aws-smithy-types-convert/ @awslabs/rust-sdk-owners @awslabs/smithy-rs-server
37-
/rust-runtime/aws-smithy-xml/ @awslabs/rust-sdk-owners @awslabs/smithy-rs-server
38-
/rust-runtime/inlineable/ @awslabs/rust-sdk-owners @awslabs/smithy-rs-server
39-
/rust-runtime/build.gradle.kts @awslabs/rust-sdk-owners @awslabs/smithy-rs-server
40-
/rust-runtime/Cargo.toml @awslabs/rust-sdk-owners @awslabs/smithy-rs-server
19+
/.github/ @smithy-lang/aws-sdk-rust @smithy-lang/smithy-rs-server
20+
/CHANGELOG.md @smithy-lang/aws-sdk-rust @smithy-lang/smithy-rs-server
21+
/CHANGELOG.next.toml @smithy-lang/aws-sdk-rust @smithy-lang/smithy-rs-server
22+
/README.md @smithy-lang/aws-sdk-rust @smithy-lang/smithy-rs-server
23+
/build.gradle.kts @smithy-lang/aws-sdk-rust @smithy-lang/smithy-rs-server
24+
/buildSrc/ @smithy-lang/aws-sdk-rust @smithy-lang/smithy-rs-server
25+
/codegen-core/ @smithy-lang/aws-sdk-rust @smithy-lang/smithy-rs-server
26+
/design/ @smithy-lang/aws-sdk-rust @smithy-lang/smithy-rs-server
27+
/examples/ @smithy-lang/aws-sdk-rust @smithy-lang/smithy-rs-server
28+
/gradle.properties @smithy-lang/aws-sdk-rust @smithy-lang/smithy-rs-server
29+
/tools/ @smithy-lang/aws-sdk-rust @smithy-lang/smithy-rs-server
30+
/rust-runtime/aws-smithy-async/ @smithy-lang/aws-sdk-rust @smithy-lang/smithy-rs-server
31+
/rust-runtime/aws-smithy-eventstream/ @smithy-lang/aws-sdk-rust @smithy-lang/smithy-rs-server
32+
/rust-runtime/aws-smithy-http/ @smithy-lang/aws-sdk-rust @smithy-lang/smithy-rs-server
33+
/rust-runtime/aws-smithy-json/ @smithy-lang/aws-sdk-rust @smithy-lang/smithy-rs-server
34+
/rust-runtime/aws-smithy-protocol-test/ @smithy-lang/aws-sdk-rust @smithy-lang/smithy-rs-server
35+
/rust-runtime/aws-smithy-types/ @smithy-lang/aws-sdk-rust @smithy-lang/smithy-rs-server
36+
/rust-runtime/aws-smithy-types-convert/ @smithy-lang/aws-sdk-rust @smithy-lang/smithy-rs-server
37+
/rust-runtime/aws-smithy-xml/ @smithy-lang/aws-sdk-rust @smithy-lang/smithy-rs-server
38+
/rust-runtime/inlineable/ @smithy-lang/aws-sdk-rust @smithy-lang/smithy-rs-server
39+
/rust-runtime/build.gradle.kts @smithy-lang/aws-sdk-rust @smithy-lang/smithy-rs-server
40+
/rust-runtime/Cargo.toml @smithy-lang/aws-sdk-rust @smithy-lang/smithy-rs-server

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Smithy Rust [![CI on Branch `main`](https://github.com/awslabs/smithy-rs/actions/workflows/ci-main.yml/badge.svg)](https://github.com/awslabs/smithy-rs/actions/workflows/ci-main.yml)
1+
Smithy Rust [![CI on Branch `main`](https://github.com/smithy-lang/smithy-rs/actions/workflows/ci-main.yml/badge.svg)](https://github.com/smithy-lang/smithy-rs/actions/workflows/ci-main.yml)
22
==================================================================================
33

44
Smithy code generators for Rust that generate clients, servers, and the entire AWS SDK.

aws/SDK_CHANGELOG.next.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@
412412
"age": 2
413413
},
414414
{
415-
"message": "HTTP connector configuration has changed significantly. See the [upgrade guidance](https://github.com/awslabs/smithy-rs/discussions/3022) for details.",
415+
"message": "HTTP connector configuration has changed significantly. See the [upgrade guidance](https://github.com/smithy-lang/smithy-rs/discussions/3022) for details.",
416416
"meta": {
417417
"bug": false,
418418
"breaking": true,
@@ -454,7 +454,7 @@
454454
"age": 2
455455
},
456456
{
457-
"message": "Struct members modeled as required are no longer wrapped in `Option`s [when possible](https://smithy.io/2.0/spec/aggregate-types.html#structure-member-optionality). For upgrade guidance and more info, see [here](https://github.com/awslabs/smithy-rs/discussions/2929).",
457+
"message": "Struct members modeled as required are no longer wrapped in `Option`s [when possible](https://smithy.io/2.0/spec/aggregate-types.html#structure-member-optionality). For upgrade guidance and more info, see [here](https://github.com/smithy-lang/smithy-rs/discussions/2929).",
458458
"meta": {
459459
"bug": false,
460460
"breaking": true,
@@ -686,7 +686,7 @@
686686
"age": 2
687687
},
688688
{
689-
"message": "Retry classifiers are now configurable at the service and operation levels. Users may also define their own custom retry classifiers.\n\nFor more information, see the [guide](https://github.com/awslabs/smithy-rs/discussions/3050).\n",
689+
"message": "Retry classifiers are now configurable at the service and operation levels. Users may also define their own custom retry classifiers.\n\nFor more information, see the [guide](https://github.com/smithy-lang/smithy-rs/discussions/3050).\n",
690690
"meta": {
691691
"bug": false,
692692
"breaking": true,
@@ -800,4 +800,4 @@
800800
}
801801
],
802802
"aws-sdk-model": []
803-
}
803+
}

aws/SDK_README.md.hb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Available template arguments:
88
--}}
99
<!--
1010
IMPORTANT:
11-
This README file is auto-generated by the build system in awslabs/smithy-rs.
11+
This README file is auto-generated by the build system in smithy-lang/smithy-rs.
1212
To update it, edit the `aws/SDK_README.md.hb` Handlebars template in that repository.
1313
-->
1414

@@ -18,7 +18,7 @@ This repo contains the new AWS SDK for Rust (the SDK) and its [public roadmap](h
1818

1919
**Please Note**: The SDK is currently released as a developer preview, without support or assistance for use on production workloads. Any use in production is at your own risk.
2020

21-
The SDK is code generated from [Smithy models](https://awslabs.github.io/smithy/) that represent each AWS service. The code used to generate the SDK can be found in [smithy-rs](https://github.com/awslabs/smithy-rs).
21+
The SDK is code generated from [Smithy models](https://awslabs.github.io/smithy/) that represent each AWS service. The code used to generate the SDK can be found in [smithy-rs](https://github.com/smithy-lang/smithy-rs).
2222

2323
## Getting Started with the SDK
2424

@@ -94,8 +94,8 @@ The SDK currently requires a minimum of Rust {{msrv}}, and is not guaranteed to
9494

9595
## Additional Resources
9696

97-
- Design docs - Design documentation for the SDK lives in the [design folder of smithy-rs](https://github.com/awslabs/smithy-rs/tree/main/design).
98-
- Runtime / Handwritten code: The Rust Runtime code that underpins the SDK can be accessed [here](https://github.com/awslabs/smithy-rs/tree/main/rust-runtime) and [here](https://github.com/awslabs/smithy-rs/tree/main/aws/rust-runtime). This code is copied into this repo as part of code generation.
97+
- Design docs - Design documentation for the SDK lives in the [design folder of smithy-rs](https://github.com/smithy-lang/smithy-rs/tree/main/design).
98+
- Runtime / Handwritten code: The Rust Runtime code that underpins the SDK can be accessed [here](https://github.com/smithy-lang/smithy-rs/tree/main/rust-runtime) and [here](https://github.com/smithy-lang/smithy-rs/tree/main/aws/rust-runtime). This code is copied into this repo as part of code generation.
9999
- [Code Examples](./examples)
100100
- [API reference documentation (rustdoc)](https://awslabs.github.io/aws-sdk-rust/)
101101

aws/rust-runtime/aws-config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description = "AWS SDK config and credential provider implementations."
66
edition = "2021"
77
exclude = ["test-data/*", "integration-tests/*"]
88
license = "Apache-2.0"
9-
repository = "https://github.com/awslabs/smithy-rs"
9+
repository = "https://github.com/smithy-lang/smithy-rs"
1010

1111
[features]
1212
client-hyper = ["aws-smithy-runtime/connector-hyper-0-14-x"]

0 commit comments

Comments
 (0)