v6.0.0-alpha.1
Pre-releaseThis is the first alpha release of v6.0.0 of Soto
Major release changes
- The major change in v6 is in actual an internal change, but it affects everything. We have moved from generating the AWS Service files from the json model files to the new Smithy format model files. There is a formal spec for the Smithy format unlike the original json files. AWS are moving to using Smithy for all of their SDKs.
- The Soto service code generator is now a separate project, instead of being in the same repo as Soto, and can be found here.
- In theory the above changes shouldn't affect anything but with this move some service names have changed and some APIs have changed name. Because of this I have decided to do a major release for this change. It also allows me to clean up some other APIs I was unhappy about.
- It is now required you use
AsyncHTTPClientwith Soto. Previously a protocol was available which you could conform to. This change has been implemented to reduce the API surface of Soto and to allow us more flexibility in how we integrate with the HTTP client. - There have been a number of fixes to enum and variable names. Enums are now camel cased, previously they were all lowercased. Variable names that started with an uppercase acronym now capitalise correctly. Previously the first letter of the name was lowercased, ignoring the rest of the acronym. This gave us
eC2InstanceDetailsinstead ofec2InstanceDetails. This is now fixed.
New services
AmplifyUIBuilder, BackupGateway, Evidently, Inspector2, IoTTwinMaker, MigrationHubRefactorSpaces, RUM, Rbin, WorkSpacesWeb
Services removed
SimpleDB, ImportExport, MobileAnalytics
Service name changes
AppIntegrationsService -> AppIntegrations
AppRegistry -> ServiceCatalogAppRegistry
AugmentedAIRuntime -> SageMakerA2IRuntime
CloudControlApi -> CloudControl
CodeStarconnections -> CodeStarConnections
ConnectWisdomService -> Wisdom
CostandUsageReportService -> CostAndUsageReportService
ElasticLoadBalancingv2 -> ElasticLoadBalancingV2
FinSpaceData -> FinspaceData
ForecastService -> Forecast
ForecastQueryService -> Forecastquery
GlueDataBrew -> DataBrew
KinesisVideoSignalingChannels -> KinesisVideoSignaling
LocationService -> Location
LookoutforVision -> LookoutVision
ManagedGrafana -> Grafana
MigrationHubStrategyRecommendations -> MigrationHubStrategy
NimbleStudio -> Nimble
OpenSearchService -> OpenSearch
PrometheusService -> Amp
RDSDataService -> RDSData
RedshiftDataAPIService -> RedshiftData
ResilienceHub -> Resiliencehub
SESV2 -> SESv2
SagemakerEdgeManager -> SagemakerEdge
TranscribeService -> Transcribe
TranscribeStreamingService -> TranscribeStreaming
Minor release changes
- Where operation input struct has deprecated members add an additional
initwhich doesn't include deprecated members and deprecate oldinit. - S3: MD5 checksums are no longer automatically calculated (unless required). You can re-enable the automatic calculation of MD5 checksums using the S3 service option
.calculateMD5. - S3: Added async versions of Multipart Upload/download functions
- S3: Send
Expect: 100-continueheader to cancel large uploads early if AWS know they are going to fail.