Skip to content

Commit c4cfd5b

Browse files
chore: Updates version to 1.5.27
1 parent a19d42a commit c4cfd5b

File tree

467 files changed

+1107
-3911
lines changed

Some content is hidden

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

467 files changed

+1107
-3911
lines changed

Package.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.5.26
1+
1.5.27

Package.version.next

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.5.27
1+
1.5.28

Sources/Core/AWSSDKIdentity/InternalClients/InternalAWSSSO/Sources/InternalAWSSSO/SSOClient.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes
6262

6363
package class SSOClient: ClientRuntime.Client {
6464
public static let clientName = "SSOClient"
65-
public static let version = "1.5.26"
65+
public static let version = "1.5.27"
6666
let client: ClientRuntime.SdkHttpClient
6767
let config: SSOClient.SSOClientConfiguration
6868
let serviceName = "SSO"

Sources/Core/AWSSDKIdentity/InternalClients/InternalAWSSSOOIDC/Sources/InternalAWSSSOOIDC/SSOOIDCClient.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes
6565

6666
package class SSOOIDCClient: ClientRuntime.Client {
6767
public static let clientName = "SSOOIDCClient"
68-
public static let version = "1.5.26"
68+
public static let version = "1.5.27"
6969
let client: ClientRuntime.SdkHttpClient
7070
let config: SSOOIDCClient.SSOOIDCClientConfiguration
7171
let serviceName = "SSO OIDC"

Sources/Core/AWSSDKIdentity/InternalClients/InternalAWSSTS/Sources/InternalAWSSTS/STSClient.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes
6565

6666
package class STSClient: ClientRuntime.Client {
6767
public static let clientName = "STSClient"
68-
public static let version = "1.5.26"
68+
public static let version = "1.5.27"
6969
let client: ClientRuntime.SdkHttpClient
7070
let config: STSClient.STSClientConfiguration
7171
let serviceName = "STS"

Sources/Services/AWSACM/Sources/AWSACM/ACMClient.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes
6767

6868
public class ACMClient: ClientRuntime.Client {
6969
public static let clientName = "ACMClient"
70-
public static let version = "1.5.26"
70+
public static let version = "1.5.27"
7171
let client: ClientRuntime.SdkHttpClient
7272
let config: ACMClient.ACMClientConfiguration
7373
let serviceName = "ACM"

Sources/Services/AWSACMPCA/Sources/AWSACMPCA/ACMPCAClient.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes
6767

6868
public class ACMPCAClient: ClientRuntime.Client {
6969
public static let clientName = "ACMPCAClient"
70-
public static let version = "1.5.26"
70+
public static let version = "1.5.27"
7171
let client: ClientRuntime.SdkHttpClient
7272
let config: ACMPCAClient.ACMPCAClientConfiguration
7373
let serviceName = "ACM PCA"

Sources/Services/AWSAIOps/Sources/AWSAIOps/AIOpsClient.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes
6666

6767
public class AIOpsClient: ClientRuntime.Client {
6868
public static let clientName = "AIOpsClient"
69-
public static let version = "1.5.26"
69+
public static let version = "1.5.27"
7070
let client: ClientRuntime.SdkHttpClient
7171
let config: AIOpsClient.AIOpsClientConfiguration
7272
let serviceName = "AIOps"

Sources/Services/AWSAPIGateway/Sources/AWSAPIGateway/APIGatewayClient.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes
7171

7272
public class APIGatewayClient: ClientRuntime.Client {
7373
public static let clientName = "APIGatewayClient"
74-
public static let version = "1.5.26"
74+
public static let version = "1.5.27"
7575
let client: ClientRuntime.SdkHttpClient
7676
let config: APIGatewayClient.APIGatewayClientConfiguration
7777
let serviceName = "API Gateway"

Sources/Services/AWSAPIGateway/Tests/AWSAPIGatewayTests/EndpointResolverTest.swift

Lines changed: 8 additions & 84 deletions
Original file line numberDiff line numberDiff line change
@@ -721,27 +721,8 @@ class EndpointResolverTest: XCTestCase {
721721
XCTAssertEqual(expected, actual)
722722
}
723723

724-
/// For region us-iso-east-1 with FIPS enabled and DualStack enabled
725-
func testResolve36() throws {
726-
let endpointParams = EndpointParams(
727-
region: "us-iso-east-1",
728-
useDualStack: true,
729-
useFIPS: true
730-
)
731-
let resolver = try DefaultEndpointResolver()
732-
733-
XCTAssertThrowsError(try resolver.resolve(params: endpointParams)) { error in
734-
switch error {
735-
case ClientRuntime.EndpointError.unresolved(let message):
736-
XCTAssertEqual("FIPS and DualStack are enabled, but this partition does not support one or both", message)
737-
default:
738-
XCTFail()
739-
}
740-
}
741-
}
742-
743724
/// For region us-iso-east-1 with FIPS enabled and DualStack disabled
744-
func testResolve37() throws {
725+
func testResolve36() throws {
745726
let endpointParams = EndpointParams(
746727
region: "us-iso-east-1",
747728
useDualStack: false,
@@ -760,46 +741,8 @@ class EndpointResolverTest: XCTestCase {
760741
XCTAssertEqual(expected, actual)
761742
}
762743

763-
/// For region us-iso-east-1 with FIPS disabled and DualStack enabled
764-
func testResolve38() throws {
765-
let endpointParams = EndpointParams(
766-
region: "us-iso-east-1",
767-
useDualStack: true,
768-
useFIPS: false
769-
)
770-
let resolver = try DefaultEndpointResolver()
771-
772-
XCTAssertThrowsError(try resolver.resolve(params: endpointParams)) { error in
773-
switch error {
774-
case ClientRuntime.EndpointError.unresolved(let message):
775-
XCTAssertEqual("DualStack is enabled but this partition does not support DualStack", message)
776-
default:
777-
XCTFail()
778-
}
779-
}
780-
}
781-
782-
/// For region us-isob-east-1 with FIPS enabled and DualStack enabled
783-
func testResolve39() throws {
784-
let endpointParams = EndpointParams(
785-
region: "us-isob-east-1",
786-
useDualStack: true,
787-
useFIPS: true
788-
)
789-
let resolver = try DefaultEndpointResolver()
790-
791-
XCTAssertThrowsError(try resolver.resolve(params: endpointParams)) { error in
792-
switch error {
793-
case ClientRuntime.EndpointError.unresolved(let message):
794-
XCTAssertEqual("FIPS and DualStack are enabled, but this partition does not support one or both", message)
795-
default:
796-
XCTFail()
797-
}
798-
}
799-
}
800-
801744
/// For region us-isob-east-1 with FIPS enabled and DualStack disabled
802-
func testResolve40() throws {
745+
func testResolve37() throws {
803746
let endpointParams = EndpointParams(
804747
region: "us-isob-east-1",
805748
useDualStack: false,
@@ -818,27 +761,8 @@ class EndpointResolverTest: XCTestCase {
818761
XCTAssertEqual(expected, actual)
819762
}
820763

821-
/// For region us-isob-east-1 with FIPS disabled and DualStack enabled
822-
func testResolve41() throws {
823-
let endpointParams = EndpointParams(
824-
region: "us-isob-east-1",
825-
useDualStack: true,
826-
useFIPS: false
827-
)
828-
let resolver = try DefaultEndpointResolver()
829-
830-
XCTAssertThrowsError(try resolver.resolve(params: endpointParams)) { error in
831-
switch error {
832-
case ClientRuntime.EndpointError.unresolved(let message):
833-
XCTAssertEqual("DualStack is enabled but this partition does not support DualStack", message)
834-
default:
835-
XCTFail()
836-
}
837-
}
838-
}
839-
840764
/// For region us-isob-east-1 with FIPS disabled and DualStack disabled
841-
func testResolve42() throws {
765+
func testResolve38() throws {
842766
let endpointParams = EndpointParams(
843767
region: "us-isob-east-1",
844768
useDualStack: false,
@@ -858,7 +782,7 @@ class EndpointResolverTest: XCTestCase {
858782
}
859783

860784
/// For custom endpoint with region set and fips disabled and dualstack disabled
861-
func testResolve43() throws {
785+
func testResolve39() throws {
862786
let endpointParams = EndpointParams(
863787
endpoint: "https://example.com",
864788
region: "us-east-1",
@@ -879,7 +803,7 @@ class EndpointResolverTest: XCTestCase {
879803
}
880804

881805
/// For custom endpoint with region not set and fips disabled and dualstack disabled
882-
func testResolve44() throws {
806+
func testResolve40() throws {
883807
let endpointParams = EndpointParams(
884808
endpoint: "https://example.com",
885809
useDualStack: false,
@@ -899,7 +823,7 @@ class EndpointResolverTest: XCTestCase {
899823
}
900824

901825
/// For custom endpoint with fips enabled and dualstack disabled
902-
func testResolve45() throws {
826+
func testResolve41() throws {
903827
let endpointParams = EndpointParams(
904828
endpoint: "https://example.com",
905829
region: "us-east-1",
@@ -919,7 +843,7 @@ class EndpointResolverTest: XCTestCase {
919843
}
920844

921845
/// For custom endpoint with fips disabled and dualstack enabled
922-
func testResolve46() throws {
846+
func testResolve42() throws {
923847
let endpointParams = EndpointParams(
924848
endpoint: "https://example.com",
925849
region: "us-east-1",
@@ -939,7 +863,7 @@ class EndpointResolverTest: XCTestCase {
939863
}
940864

941865
/// Missing region
942-
func testResolve47() throws {
866+
func testResolve43() throws {
943867
let endpointParams = EndpointParams(
944868
)
945869
let resolver = try DefaultEndpointResolver()

0 commit comments

Comments
 (0)