From 98d74245c48bc5cf0153112d1dbaa1fcde4139df Mon Sep 17 00:00:00 2001 From: George Fu Date: Wed, 16 Oct 2024 12:49:15 -0400 Subject: [PATCH] chore: upgrade smithyVersion=1.51.0 (#1433) --- gradle.properties | 2 +- .../model/weather/main.smithy | 12 +++++++++--- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/gradle.properties b/gradle.properties index 8578dc5541f..8059bbd7eca 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1,2 @@ -smithyVersion=1.50.0 +smithyVersion=1.51.0 smithyGradleVersion=0.10.1 diff --git a/smithy-typescript-codegen-test/model/weather/main.smithy b/smithy-typescript-codegen-test/model/weather/main.smithy index 6446b1c9eb5..4462903d1a4 100644 --- a/smithy-typescript-codegen-test/model/weather/main.smithy +++ b/smithy-typescript-codegen-test/model/weather/main.smithy @@ -108,7 +108,9 @@ operation OnlyFakeAuthOptional {} operation SameAsService {} resource City { - identifiers: { cityId: CityId } + identifiers: { + cityId: CityId + } create: CreateCity read: GetCity list: ListCities @@ -122,12 +124,16 @@ resource City { } resource Forecast { - identifiers: { cityId: CityId } + identifiers: { + cityId: CityId + } read: GetForecast } resource CityImage { - identifiers: { cityId: CityId } + identifiers: { + cityId: CityId + } read: GetCityImage }