Release 1.3.0 & TCP port numbering #1924
jbelkins
announced in
Announcements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Today, we released AWS SDK for Swift v1.3.0. https://github.com/awslabs/aws-sdk-swift/releases/tag/1.3.0
This release contains a breaking API change that may require code changes in your consuming code. Specifically, the type for the
port
property (i.e. for TCP port number) has been changed fromInt16
toUInt16
on theURI
,Endpoint
, andHTTPRequest
types, plus their associated builder types, due to the fact thatInt16
cannot represent port numbers above 32767. If you set your own TCP port numbers on these types, you may have to adjust your code to assign aUInt16
value.We expect that very few customers will be affected, but nevertheless we apologize for the breaking change. Feel free to reply below if you need assistance updating your code to accommodate this release.
Beta Was this translation helpful? Give feedback.
All reactions