From a860e9c04e0633d1d22535fbe301e153ba0adebb Mon Sep 17 00:00:00 2001 From: sbiscigl Date: Mon, 11 May 2026 14:10:28 -0400 Subject: [PATCH] update smithy version used in codege --- .../codegen/cpp-smoke-tests/build.gradle.kts | 2 +- .../smithy/codegen/settings.gradle.kts | 2 +- .../smithy/cpp-codegen/build.gradle.kts | 22 +++++++++---------- .../smithy-cpp-codegen/build.gradle.kts | 16 +++++++------- 4 files changed, 21 insertions(+), 21 deletions(-) diff --git a/tools/code-generation/smithy/codegen/cpp-smoke-tests/build.gradle.kts b/tools/code-generation/smithy/codegen/cpp-smoke-tests/build.gradle.kts index fc8501a1e0c7..6a13f535e05e 100644 --- a/tools/code-generation/smithy/codegen/cpp-smoke-tests/build.gradle.kts +++ b/tools/code-generation/smithy/codegen/cpp-smoke-tests/build.gradle.kts @@ -9,7 +9,7 @@ val logger = Logging.getLogger("MyLogger") plugins { id("java-library") - id("software.amazon.smithy.gradle.smithy-base").version("1.3.0") + id("software.amazon.smithy.gradle.smithy-base").version("1.4.0") } repositories { diff --git a/tools/code-generation/smithy/codegen/settings.gradle.kts b/tools/code-generation/smithy/codegen/settings.gradle.kts index d53a512a5c49..42af098cbcf5 100644 --- a/tools/code-generation/smithy/codegen/settings.gradle.kts +++ b/tools/code-generation/smithy/codegen/settings.gradle.kts @@ -14,7 +14,7 @@ dependencyResolutionManagement { versionCatalogs { create("codegen") { // Smithy dependencies - version("smithy", "1.67.0") // Centralize the version for Smithy-related dependencies + version("smithy", "1.70.0") // Centralize the version for Smithy-related dependencies library("model", "software.amazon.smithy", "smithy-model").versionRef("smithy") library("aws-traits", "software.amazon.smithy", "smithy-aws-traits").versionRef("smithy") library("codegen-core", "software.amazon.smithy", "smithy-codegen-core").versionRef("smithy") diff --git a/tools/code-generation/smithy/cpp-codegen/build.gradle.kts b/tools/code-generation/smithy/cpp-codegen/build.gradle.kts index 0c6cc031310a..e22c05a0b731 100644 --- a/tools/code-generation/smithy/cpp-codegen/build.gradle.kts +++ b/tools/code-generation/smithy/cpp-codegen/build.gradle.kts @@ -9,7 +9,7 @@ val logger = Logging.getLogger("MyLogger") plugins { id("java-library") - id("software.amazon.smithy.gradle.smithy-base").version("1.3.0") + id("software.amazon.smithy.gradle.smithy-base").version("1.4.0") } repositories { @@ -19,21 +19,21 @@ repositories { buildscript { dependencies { - classpath("software.amazon.smithy:smithy-model:1.67.0") - classpath("software.amazon.smithy:smithy-aws-traits:1.67.0") - classpath("software.amazon.smithy:smithy-rules-engine:1.67.0") + classpath("software.amazon.smithy:smithy-model:1.70.0") + classpath("software.amazon.smithy:smithy-aws-traits:1.70.0") + classpath("software.amazon.smithy:smithy-rules-engine:1.70.0") } } dependencies { implementation(project(":smithy-cpp-codegen")) - implementation("software.amazon.smithy:smithy-aws-traits:1.67.0") - implementation("software.amazon.smithy:smithy-aws-cloudformation-traits:1.67.0") - implementation("software.amazon.smithy:smithy-aws-iam-traits:1.67.0") - implementation("software.amazon.smithy:smithy-aws-endpoints:1.67.0") - implementation("software.amazon.smithy:smithy-smoke-test-traits:1.67.0") - implementation("software.amazon.smithy:smithy-aws-smoke-test-model:1.67.0") - implementation("software.amazon.smithy:smithy-waiters:1.67.0") + implementation("software.amazon.smithy:smithy-aws-traits:1.70.0") + implementation("software.amazon.smithy:smithy-aws-cloudformation-traits:1.70.0") + implementation("software.amazon.smithy:smithy-aws-iam-traits:1.70.0") + implementation("software.amazon.smithy:smithy-aws-endpoints:1.70.0") + implementation("software.amazon.smithy:smithy-smoke-test-traits:1.70.0") + implementation("software.amazon.smithy:smithy-aws-smoke-test-model:1.70.0") + implementation("software.amazon.smithy:smithy-waiters:1.70.0") } tasks.register("generate-smithy-build") { diff --git a/tools/code-generation/smithy/cpp-codegen/smithy-cpp-codegen/build.gradle.kts b/tools/code-generation/smithy/cpp-codegen/smithy-cpp-codegen/build.gradle.kts index 32f1be1e877f..7ca8358c8b36 100644 --- a/tools/code-generation/smithy/cpp-codegen/smithy-cpp-codegen/build.gradle.kts +++ b/tools/code-generation/smithy/cpp-codegen/smithy-cpp-codegen/build.gradle.kts @@ -8,14 +8,14 @@ repositories { } dependencies { - implementation("software.amazon.smithy:smithy-model:1.67.0") - implementation("software.amazon.smithy:smithy-codegen-core:1.67.0") - implementation("software.amazon.smithy:smithy-aws-traits:1.67.0") - implementation("software.amazon.smithy:smithy-waiters:1.67.0") - implementation("software.amazon.smithy:smithy-jmespath:1.67.0") - implementation("software.amazon.smithy:smithy-rules-engine:1.67.0") - implementation("software.amazon.smithy:smithy-aws-endpoints:1.67.0") - implementation("software.amazon.smithy:smithy-aws-iam-traits:1.67.0") + implementation("software.amazon.smithy:smithy-model:1.70.0") + implementation("software.amazon.smithy:smithy-codegen-core:1.70.0") + implementation("software.amazon.smithy:smithy-aws-traits:1.70.0") + implementation("software.amazon.smithy:smithy-waiters:1.70.0") + implementation("software.amazon.smithy:smithy-jmespath:1.70.0") + implementation("software.amazon.smithy:smithy-rules-engine:1.70.0") + implementation("software.amazon.smithy:smithy-aws-endpoints:1.70.0") + implementation("software.amazon.smithy:smithy-aws-iam-traits:1.70.0") testImplementation("org.junit.jupiter:junit-jupiter:5.10.2") testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.10.2") }