Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: rename awslabs/smithy-kotlin to smithy-lang/smithy-kotlin #1472

Merged
merged 1 commit into from
Nov 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
96 changes: 48 additions & 48 deletions CHANGELOG.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ AWS service clients are generated from [Smithy](https://awslabs.github.io/smithy
As such the code in `aws-sdk-kotlin` is a layer on top of generic Smithy based code generation tooling.


2. Smithy Kotlin Codegen repo ([awslabs/smithy-kotlin](https://github.com/awslabs/smithy-kotlin))
2. Smithy Kotlin Codegen repo ([smithy-lang/smithy-kotlin](https://github.com/smithy-lang/smithy-kotlin))

The `smithy-kotlin` repository contains the generic Smithy code generation tools for Kotlin.

If you want to contribute by diving into the codegen machinery and helping develop the SDK please refer to the [contributing guide](https://github.com/awslabs/smithy-kotlin/blob/main/CONTRIBUTING.md) in that repo.
If you want to contribute by diving into the codegen machinery and helping develop the SDK please refer to the [contributing guide](https://github.com/smithy-lang/smithy-kotlin/blob/main/CONTRIBUTING.md) in that repo.


## Reporting Bugs/Feature Requests
Expand Down Expand Up @@ -78,7 +78,7 @@ following fields:
| `id` | `string` | yes | | A unique identifier for this entry. We recommend you generate a UUID for this field. |
| `type` | `string` | yes | `bugfix`, `feature`, `documentation`, `misc` | The type of change being made. |
| `description` | `string` | yes | | A description of the change being made.<ul><li>Prefix with `**Breaking**:` if the change is breaking</li><li>Use the imperative present tense (e.g., "change" not "changed" nor "changes")</li><li>Capitalize first letter</li><li>No dot (.) at the end unless there are multiple sentences</li></ul> |
| `issues` | `string[]` | no | | A list of references to any related issues in the relevant repositories. A reference can be specified in several ways:<ul><li>The issue number, if local to this repository (eg. `#12345`)</li><li>A fully-qualified issue ID (eg.`awslabs/smithy-kotlin#12345`)</li><li>A fully-qualified URL (eg. `https://issuetracker.com/12345`)</li></ul> |
| `issues` | `string[]` | no | | A list of references to any related issues in the relevant repositories. A reference can be specified in several ways:<ul><li>The issue number, if local to this repository (eg. `#12345`)</li><li>A fully-qualified issue ID (eg.`smithy-lang/smithy-kotlin#12345`)</li><li>A fully-qualified URL (eg. `https://issuetracker.com/12345`)</li></ul> |
| `module` | `string` | no | | The area of the code affected by your changes. If unsure, leave this value unset. |
| `requiresMinorVersionBump` | `boolean` | no | | Indicates the change will require a new minor version. This is usually the case after a breaking change. Defaults to false if flag is not included. |

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public class UserAgent(

// NOTE: Due to legacy issues with processing the user agent, the original content for
// x-amz-user-agent and User-Agent is swapped here. See top note in the
// sdk-user-agent-header SEP and https://github.com/awslabs/smithy-kotlin/issues/373
// sdk-user-agent-header SEP and https://github.com/smithy-lang/smithy-kotlin/issues/373
// for further details.
req.subject.headers[USER_AGENT] = requestMetadata.xAmzUserAgent
req.subject.headers[X_AMZ_USER_AGENT] = requestMetadata.userAgent
Expand Down
2 changes: 1 addition & 1 deletion docs/design/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# AWS SDK Kotlin designs

The following design documents informed the creation of the AWS SDK for Kotlin. They specific to the AWS SDK which is built using [**smithy-kotlin**](https://github.com/awslabs/smithy-kotlin). As such, they may extend or augment the [Smithy Kotlin Designs](https://github.com/awslabs/smithy-kotlin/blob/main/docs/design/README.md).
The following design documents informed the creation of the AWS SDK for Kotlin. They specific to the AWS SDK which is built using [**smithy-kotlin**](https://github.com/smithy-lang/smithy-kotlin). As such, they may extend or augment the [Smithy Kotlin Designs](https://github.com/smithy-lang/smithy-kotlin/blob/main/docs/design/README.md).

These designs are written according to the [AWS SDK for Koltin Design Tenets](tenets.md).

Expand Down
4 changes: 2 additions & 2 deletions docs/design/retries.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
# Abstract

The AWS SDK for Kotlin uses a specialization of the generalized
[**smithy-kotlin** Retry Design](https://github.com/awslabs/smithy-kotlin/blob/main/docs/design/retries.md). This
[**smithy-kotlin** Retry Design](https://github.com/smithy-lang/smithy-kotlin/blob/main/docs/design/retries.md). This
document covers those specializations (but does not re-hash the generalized design).

# SDK implementation

The SDK uses the following customizations/specializations over the generalized
[**smithy-kotlin** Retry Design](https://github.com/awslabs/smithy-kotlin/blob/main/docs/design/retries.md):
[**smithy-kotlin** Retry Design](https://github.com/smithy-lang/smithy-kotlin/blob/main/docs/design/retries.md):

## Retry policy

Expand Down
2 changes: 1 addition & 1 deletion docs/howto/configuring/http-clients.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

By default, the AWS SDK for Kotlin uses an HTTP client from OkHttp. Customers may choose to override the default HTTP
client by specifying an existing
[HttpClientEngine](https://github.com/awslabs/smithy-kotlin/blob/main/runtime/protocol/http/common/src/aws/smithy/kotlin/runtime/http/engine/HttpClientEngine.kt)
[HttpClientEngine](https://github.com/smithy-lang/smithy-kotlin/blob/main/runtime/protocol/http/common/src/aws/smithy/kotlin/runtime/http/engine/HttpClientEngine.kt)
implementation or implementing their own and referencing that implementation in the service client configuration at the
time of client construction.

Expand Down
2 changes: 1 addition & 1 deletion services/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ subprojects {
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
compilerOptions {
allWarningsAsErrors.set(false) // FIXME Tons of errors occur in generated code
jvmTarget.set(JvmTarget.JVM_1_8) // fixes outgoing variant metadata: https://github.com/awslabs/smithy-kotlin/issues/258
jvmTarget.set(JvmTarget.JVM_1_8) // fixes outgoing variant metadata: https://github.com/smithy-lang/smithy-kotlin/issues/258
}
}

Expand Down
Loading