Skip to content

Commit 519f66c

Browse files
feat: ready for release candidate (#1578)
* chore: bump up packages version to RC * docs: update README for RC * fix: address feedbacks Co-authored-by: Trivikram Kamat <[email protected]>
1 parent 3430e34 commit 519f66c

File tree

318 files changed

+7237
-7237
lines changed

Some content is hidden

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

318 files changed

+7237
-7237
lines changed

Diff for: README.md

+17-17
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
# AWS SDK for JavaScript v3 gamma
1+
# AWS SDK for JavaScript v3 RC
22

33
![Build Status](https://codebuild.us-west-2.amazonaws.com/badges?uuid=eyJlbmNyeXB0ZWREYXRhIjoiMmtFajZWQmNUbEhidnBKN1VncjRrNVI3d0JUcFpGWUd3STh4T3N3Rnljc1BMaEIrYm9HU2t4YTV1RlE1YmlnUG9XM3luY0Ftc2tBc0xTeVFJMkVOa24wPSIsIml2UGFyYW1ldGVyU3BlYyI6IlBDMDl6UEROK1dlU1h1OWciLCJtYXRlcmlhbFNldFNlcmlhbCI6MX0%3D&branch=master)
44
[![codecov](https://codecov.io/gh/aws/aws-sdk-js-v3/branch/master/graph/badge.svg)](https://codecov.io/gh/aws/aws-sdk-js-v3)
55
[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg)](https://github.com/prettier/prettier)
66
[![Dependabot Status](https://api.dependabot.com/badges/status?host=github&repo=aws/aws-sdk-js-v3)](https://dependabot.com)
77

8-
The **AWS SDK for JavaScript v3 gamma** is a rewrite of V2 with some great new features. As with version 2, it enables you to easily work with [Amazon Web Services](https://aws.amazon.com/), but has been written in TypeScript and adds several frequently requested features, like modularized packages.
8+
The **AWS SDK for JavaScript v3 RC** is a rewrite of V2 with some great new features. As with version 2, it enables you to easily work with [Amazon Web Services](https://aws.amazon.com/), but has been written in TypeScript and adds several frequently requested features, like modularized packages.
99

10-
Many aspects of the SDK have been refactored and cleaned up, in addition to generating service client packages instead of hydrating services at SDK runtime. The v3 gamma is your chance to influence the direction of the new AWS SDK for JavaScript. Tell us what you like, tell us what you don’t like by [opening an issue](https://github.com/aws/aws-sdk-js-v3/issues/new/choose). Your feedback matters to us.
10+
Many aspects of the SDK have been refactored and cleaned up, in addition to generating service client packages instead of hydrating services at SDK runtime. The v3 RC is your chance to influence the direction of the new AWS SDK for JavaScript. Tell us what you like, tell us what you don’t like by [opening an issue](https://github.com/aws/aws-sdk-js-v3/issues/new/choose). Your feedback matters to us.
1111

1212
## Production Readiness
1313

14-
This project is in gamma. We want feedback from you, and may make breaking changes in future releases while the SDK is still in gamma.
14+
This project is a Release Candidate (RC). We want feedback from you. We will avoid breaking changes unless absolutely necessary.
1515

1616
The new AWS SDK for JavaScript will also be able to run alongside the version 2.x SDK in the same package to allow partial migration to the new product. As we get close to general availability for version 3, we’ll share a more detailed plan on how we’ll support the 2.x line.
1717

@@ -20,7 +20,7 @@ The new AWS SDK for JavaScript will also be able to run alongside the version 2.
2020
Let’s walk through setting up a project that depends on DynamoDB from the SDK and makes a simple service call. The following steps use yarn as an example. These steps assume you have Node.js and yarn already installed.
2121

2222
1. Create a new Node.js project.
23-
2. Inside of the project, run: `yarn add @aws-sdk/client-dynamodb@gamma`. Adding packages results in update in [lock file](https://docs.npmjs.com/configuring-npm/package-locks.html), `yarn.lock` or `package-lock.json`. You **should** commit your lock file along with your code to avoid potential breaking changes.
23+
2. Inside of the project, run: `yarn add @aws-sdk/client-dynamodb`. Adding packages results in update in [lock file](https://docs.npmjs.com/configuring-npm/package-locks.html), `yarn.lock` or `package-lock.json`. You **should** commit your lock file along with your code to avoid potential breaking changes.
2424

2525
3. Create a new file called index.js, create a DynamoDB service client and send a request.
2626

@@ -66,21 +66,21 @@ In our workshop code, a lambda with DynamoDBClient and a command takes ~18kB whi
6666

6767
The SDK is now split up across multiple packages. The 2.x version of the SDK contained support for every service. This made it very easy to use multiple services in a project. Due to the limitations around reducing the size of the SDK when only using a handful of services or operations, many customers requested having separate packages for each service client. We have also split up the core parts of the SDK so that service clients only pull in what they need. For example, a service sends responses in JSON will no longer need to also have an XML parser as a dependency.
6868

69-
For those that were already importing services as sub-modules from the version 2.x SDK, the import statement doesn’t look too different. Here’s an example of importing the AWS Lambda service in version 2.0 of the SDK, and the gamma:
69+
For those that were already importing services as sub-modules from the v2 SDK, the import statement doesn’t look too different. Here’s an example of importing the AWS Lambda service in v2 of the SDK, and the v3 SDK:
7070

7171
```javascript
72-
// import the Lambda client constructor in version 2.0 of the SDK
72+
// import the Lambda client constructor in v2 of the SDK
7373
const Lambda = require("aws-sdk/clients/lambda");
7474

75-
// import the Lambda client constructor in version 3.0 gamma
75+
// import the Lambda client constructor in v3 SDK
7676
const { Lambda } = require("@aws-sdk/client-lambda");
7777
```
7878

7979
It is also possible to import both versions of the Lambda client by changing the variable name the Lambda constructor is stored in.
8080

8181
### API changes
8282

83-
We’ve made several public API changes to improve consistency, make the SDK easier to use, and remove deprecated or confusing APIs. The following are some of the big changes included in the new AWS SDK for JavaScript v3 gamma.
83+
We’ve made several public API changes to improve consistency, make the SDK easier to use, and remove deprecated or confusing APIs. The following are some of the big changes included in the new AWS SDK for JavaScript v3 rc.
8484

8585
#### Configuration
8686

@@ -90,7 +90,7 @@ However, these configurations would first be merged automatically into a copy of
9090
Also, calling `AWS.config.update({/* params *})` only updated configuration for service clients instantiated after the update call was made, not any existing clients.
9191

9292
This behavior was a frequent source of confusion, and made it difficult to add configuration to the global object that only affects a subset of service clients in a forward-compatible way.
93-
In v3 gamma, there is no longer a global configuration managed by the SDK.
93+
In v3 rc, there is no longer a global configuration managed by the SDK.
9494
Configuration must be passed to each service client that is instantiated.
9595
It is still possible to share the same configuration across multiple clients but that configuration will not be automatically merged with a global state.
9696

@@ -152,26 +152,26 @@ All clients have been published to NPM and can be installed as described above.
152152
yarn pack .
153153
```
154154

155-
`yarn pack` will create an archive file in the client package folder, e.g. `aws-sdk-client-dynamodb-v1.0.0-gamma.1.tgz`.
155+
`yarn pack` will create an archive file in the client package folder, e.g. `aws-sdk-client-dynamodb-v1.0.0-rc.1.tgz`.
156156

157157
1. Change directory to the project you are working on and move the archive to the location to store the vendor packages:
158158

159159
```
160-
mv path/to/aws-sdk-js-v3/clients/client-dynamodb/aws-sdk-client-dynamodb-v1.0.0-gamma.1.tgz ./path/to/vendors/folder
160+
mv path/to/aws-sdk-js-v3/clients/client-dynamodb/aws-sdk-client-dynamodb-v1.0.0-rc.1.tgz ./path/to/vendors/folder
161161
```
162162

163163
1. Install the package to your project:
164164

165165
```
166-
yarn add ./path/to/vendors/folder/aws-sdk-client-dynamodb-v1.0.0-gamma.1.tgz
166+
yarn add ./path/to/vendors/folder/aws-sdk-client-dynamodb-v1.0.0-rc.1.tgz
167167
```
168168

169169
### Giving feedback and contributing
170170

171171
You can provide feedback to us in several ways. Both positive and negative feedback is appreciated.
172-
While the SDK is in gamma, you may encounter bugs while using it.
172+
While the SDK is in RC, you may encounter bugs while using it.
173173
If you do, please feel free to [open an issue](https://github.com/aws/aws-sdk-js-v3/issues/new/choose) on our GitHub repository.
174-
Our GitHub issues page also includes work we know still needs to be done before exiting the gamma state.
174+
Our GitHub issues page also includes work we know still needs to be done before exiting the RC state.
175175

176176
#### Feedback
177177

@@ -180,11 +180,11 @@ This is the preferred mechanism to give feedback so that other customers can eng
180180
Issues you open will be evaluated, and included in our roadmap for the GA launch.
181181

182182
**Gitter channel**. For informal discussion or general feedback, you may join the [Gitter chat](https://gitter.im/aws/aws-sdk-js-v3).
183-
The Gitter channel is also a great place to get help with v3 gamma from other developers. JS SDK team doesn't
183+
The Gitter channel is also a great place to get help with v3 RC from other developers. JS SDK team doesn't
184184
track the discussion daily, so feel free to open a GitHub issue if your question is not answered there.
185185

186186
#### Contributing
187187

188-
You can open pull requests for fixes or additions to the new AWS SDK for JavaScript v3 gamma.
188+
You can open pull requests for fixes or additions to the new AWS SDK for JavaScript v3 RC.
189189
All pull requests must be submitted under the Apache 2.0 license and will be reviewed by an SDK team member prior to merging.
190190
Accompanying unit tests are appreciated. See [Contributing](CONTRIBUTING.md) for more information.

Diff for: clients/client-accessanalyzer/package.json

+30-30
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@aws-sdk/client-accessanalyzer",
33
"description": "@aws-sdk/client-accessanalyzer client",
4-
"version": "1.0.0-gamma.11",
4+
"version": "1.0.0-rc.0",
55
"scripts": {
66
"clean": "npm run remove-definitions && npm run remove-dist",
77
"build-documentation": "npm run clean && typedoc ./",
@@ -28,39 +28,39 @@
2828
"dependencies": {
2929
"@aws-crypto/sha256-browser": "^1.0.0-alpha.0",
3030
"@aws-crypto/sha256-js": "^1.0.0-alpha.0",
31-
"@aws-sdk/config-resolver": "1.0.0-gamma.9",
32-
"@aws-sdk/credential-provider-node": "1.0.0-gamma.9",
33-
"@aws-sdk/fetch-http-handler": "1.0.0-gamma.10",
34-
"@aws-sdk/hash-node": "1.0.0-gamma.8",
35-
"@aws-sdk/invalid-dependency": "1.0.0-gamma.6",
36-
"@aws-sdk/middleware-content-length": "1.0.0-gamma.8",
37-
"@aws-sdk/middleware-host-header": "1.0.0-gamma.9",
38-
"@aws-sdk/middleware-logger": "1.0.0-gamma.3",
39-
"@aws-sdk/middleware-retry": "1.0.0-gamma.9",
40-
"@aws-sdk/middleware-serde": "1.0.0-gamma.8",
41-
"@aws-sdk/middleware-signing": "1.0.0-gamma.8",
42-
"@aws-sdk/middleware-stack": "1.0.0-gamma.8",
43-
"@aws-sdk/middleware-user-agent": "1.0.0-gamma.8",
44-
"@aws-sdk/node-config-provider": "1.0.0-gamma.4",
45-
"@aws-sdk/node-http-handler": "1.0.0-gamma.9",
46-
"@aws-sdk/protocol-http": "1.0.0-gamma.8",
47-
"@aws-sdk/smithy-client": "1.0.0-gamma.9",
48-
"@aws-sdk/types": "1.0.0-gamma.7",
49-
"@aws-sdk/url-parser-browser": "1.0.0-gamma.8",
50-
"@aws-sdk/url-parser-node": "1.0.0-gamma.8",
51-
"@aws-sdk/util-base64-browser": "1.0.0-gamma.7",
52-
"@aws-sdk/util-base64-node": "1.0.0-gamma.7",
53-
"@aws-sdk/util-body-length-browser": "1.0.0-gamma.7",
54-
"@aws-sdk/util-body-length-node": "1.0.0-gamma.7",
55-
"@aws-sdk/util-user-agent-browser": "1.0.0-gamma.8",
56-
"@aws-sdk/util-user-agent-node": "1.0.0-gamma.9",
57-
"@aws-sdk/util-utf8-browser": "1.0.0-gamma.7",
58-
"@aws-sdk/util-utf8-node": "1.0.0-gamma.7",
31+
"@aws-sdk/config-resolver": "1.0.0-rc.0",
32+
"@aws-sdk/credential-provider-node": "1.0.0-rc.0",
33+
"@aws-sdk/fetch-http-handler": "1.0.0-rc.0",
34+
"@aws-sdk/hash-node": "1.0.0-rc.0",
35+
"@aws-sdk/invalid-dependency": "1.0.0-rc.0",
36+
"@aws-sdk/middleware-content-length": "1.0.0-rc.0",
37+
"@aws-sdk/middleware-host-header": "1.0.0-rc.0",
38+
"@aws-sdk/middleware-logger": "1.0.0-rc.0",
39+
"@aws-sdk/middleware-retry": "1.0.0-rc.0",
40+
"@aws-sdk/middleware-serde": "1.0.0-rc.0",
41+
"@aws-sdk/middleware-signing": "1.0.0-rc.0",
42+
"@aws-sdk/middleware-stack": "1.0.0-rc.0",
43+
"@aws-sdk/middleware-user-agent": "1.0.0-rc.0",
44+
"@aws-sdk/node-config-provider": "1.0.0-rc.0",
45+
"@aws-sdk/node-http-handler": "1.0.0-rc.0",
46+
"@aws-sdk/protocol-http": "1.0.0-rc.0",
47+
"@aws-sdk/smithy-client": "1.0.0-rc.0",
48+
"@aws-sdk/types": "1.0.0-rc.0",
49+
"@aws-sdk/url-parser-browser": "1.0.0-rc.0",
50+
"@aws-sdk/url-parser-node": "1.0.0-rc.0",
51+
"@aws-sdk/util-base64-browser": "1.0.0-rc.0",
52+
"@aws-sdk/util-base64-node": "1.0.0-rc.0",
53+
"@aws-sdk/util-body-length-browser": "1.0.0-rc.0",
54+
"@aws-sdk/util-body-length-node": "1.0.0-rc.0",
55+
"@aws-sdk/util-user-agent-browser": "1.0.0-rc.0",
56+
"@aws-sdk/util-user-agent-node": "1.0.0-rc.0",
57+
"@aws-sdk/util-utf8-browser": "1.0.0-rc.0",
58+
"@aws-sdk/util-utf8-node": "1.0.0-rc.0",
5959
"tslib": "^2.0.0",
6060
"uuid": "^3.0.0"
6161
},
6262
"devDependencies": {
63-
"@aws-sdk/client-documentation-generator": "1.0.0-gamma.7",
63+
"@aws-sdk/client-documentation-generator": "1.0.0-rc.0",
6464
"@types/node": "^12.7.5",
6565
"@types/uuid": "^3.0.0",
6666
"jest": "^26.1.0",

Diff for: clients/client-acm-pca/package.json

+30-30
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@aws-sdk/client-acm-pca",
33
"description": "@aws-sdk/client-acm-pca client",
4-
"version": "1.0.0-gamma.11",
4+
"version": "1.0.0-rc.0",
55
"scripts": {
66
"clean": "npm run remove-definitions && npm run remove-dist",
77
"build-documentation": "npm run clean && typedoc ./",
@@ -28,38 +28,38 @@
2828
"dependencies": {
2929
"@aws-crypto/sha256-browser": "^1.0.0-alpha.0",
3030
"@aws-crypto/sha256-js": "^1.0.0-alpha.0",
31-
"@aws-sdk/config-resolver": "1.0.0-gamma.9",
32-
"@aws-sdk/credential-provider-node": "1.0.0-gamma.9",
33-
"@aws-sdk/fetch-http-handler": "1.0.0-gamma.10",
34-
"@aws-sdk/hash-node": "1.0.0-gamma.8",
35-
"@aws-sdk/invalid-dependency": "1.0.0-gamma.6",
36-
"@aws-sdk/middleware-content-length": "1.0.0-gamma.8",
37-
"@aws-sdk/middleware-host-header": "1.0.0-gamma.9",
38-
"@aws-sdk/middleware-logger": "1.0.0-gamma.3",
39-
"@aws-sdk/middleware-retry": "1.0.0-gamma.9",
40-
"@aws-sdk/middleware-serde": "1.0.0-gamma.8",
41-
"@aws-sdk/middleware-signing": "1.0.0-gamma.8",
42-
"@aws-sdk/middleware-stack": "1.0.0-gamma.8",
43-
"@aws-sdk/middleware-user-agent": "1.0.0-gamma.8",
44-
"@aws-sdk/node-config-provider": "1.0.0-gamma.4",
45-
"@aws-sdk/node-http-handler": "1.0.0-gamma.9",
46-
"@aws-sdk/protocol-http": "1.0.0-gamma.8",
47-
"@aws-sdk/smithy-client": "1.0.0-gamma.9",
48-
"@aws-sdk/types": "1.0.0-gamma.7",
49-
"@aws-sdk/url-parser-browser": "1.0.0-gamma.8",
50-
"@aws-sdk/url-parser-node": "1.0.0-gamma.8",
51-
"@aws-sdk/util-base64-browser": "1.0.0-gamma.7",
52-
"@aws-sdk/util-base64-node": "1.0.0-gamma.7",
53-
"@aws-sdk/util-body-length-browser": "1.0.0-gamma.7",
54-
"@aws-sdk/util-body-length-node": "1.0.0-gamma.7",
55-
"@aws-sdk/util-user-agent-browser": "1.0.0-gamma.8",
56-
"@aws-sdk/util-user-agent-node": "1.0.0-gamma.9",
57-
"@aws-sdk/util-utf8-browser": "1.0.0-gamma.7",
58-
"@aws-sdk/util-utf8-node": "1.0.0-gamma.7",
31+
"@aws-sdk/config-resolver": "1.0.0-rc.0",
32+
"@aws-sdk/credential-provider-node": "1.0.0-rc.0",
33+
"@aws-sdk/fetch-http-handler": "1.0.0-rc.0",
34+
"@aws-sdk/hash-node": "1.0.0-rc.0",
35+
"@aws-sdk/invalid-dependency": "1.0.0-rc.0",
36+
"@aws-sdk/middleware-content-length": "1.0.0-rc.0",
37+
"@aws-sdk/middleware-host-header": "1.0.0-rc.0",
38+
"@aws-sdk/middleware-logger": "1.0.0-rc.0",
39+
"@aws-sdk/middleware-retry": "1.0.0-rc.0",
40+
"@aws-sdk/middleware-serde": "1.0.0-rc.0",
41+
"@aws-sdk/middleware-signing": "1.0.0-rc.0",
42+
"@aws-sdk/middleware-stack": "1.0.0-rc.0",
43+
"@aws-sdk/middleware-user-agent": "1.0.0-rc.0",
44+
"@aws-sdk/node-config-provider": "1.0.0-rc.0",
45+
"@aws-sdk/node-http-handler": "1.0.0-rc.0",
46+
"@aws-sdk/protocol-http": "1.0.0-rc.0",
47+
"@aws-sdk/smithy-client": "1.0.0-rc.0",
48+
"@aws-sdk/types": "1.0.0-rc.0",
49+
"@aws-sdk/url-parser-browser": "1.0.0-rc.0",
50+
"@aws-sdk/url-parser-node": "1.0.0-rc.0",
51+
"@aws-sdk/util-base64-browser": "1.0.0-rc.0",
52+
"@aws-sdk/util-base64-node": "1.0.0-rc.0",
53+
"@aws-sdk/util-body-length-browser": "1.0.0-rc.0",
54+
"@aws-sdk/util-body-length-node": "1.0.0-rc.0",
55+
"@aws-sdk/util-user-agent-browser": "1.0.0-rc.0",
56+
"@aws-sdk/util-user-agent-node": "1.0.0-rc.0",
57+
"@aws-sdk/util-utf8-browser": "1.0.0-rc.0",
58+
"@aws-sdk/util-utf8-node": "1.0.0-rc.0",
5959
"tslib": "^2.0.0"
6060
},
6161
"devDependencies": {
62-
"@aws-sdk/client-documentation-generator": "1.0.0-gamma.7",
62+
"@aws-sdk/client-documentation-generator": "1.0.0-rc.0",
6363
"@types/node": "^12.7.5",
6464
"jest": "^26.1.0",
6565
"rimraf": "^3.0.0",

Diff for: clients/client-acm/package.json

+30-30
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@aws-sdk/client-acm",
33
"description": "@aws-sdk/client-acm client",
4-
"version": "1.0.0-gamma.11",
4+
"version": "1.0.0-rc.0",
55
"scripts": {
66
"clean": "npm run remove-definitions && npm run remove-dist",
77
"build-documentation": "npm run clean && typedoc ./",
@@ -28,38 +28,38 @@
2828
"dependencies": {
2929
"@aws-crypto/sha256-browser": "^1.0.0-alpha.0",
3030
"@aws-crypto/sha256-js": "^1.0.0-alpha.0",
31-
"@aws-sdk/config-resolver": "1.0.0-gamma.9",
32-
"@aws-sdk/credential-provider-node": "1.0.0-gamma.9",
33-
"@aws-sdk/fetch-http-handler": "1.0.0-gamma.10",
34-
"@aws-sdk/hash-node": "1.0.0-gamma.8",
35-
"@aws-sdk/invalid-dependency": "1.0.0-gamma.6",
36-
"@aws-sdk/middleware-content-length": "1.0.0-gamma.8",
37-
"@aws-sdk/middleware-host-header": "1.0.0-gamma.9",
38-
"@aws-sdk/middleware-logger": "1.0.0-gamma.3",
39-
"@aws-sdk/middleware-retry": "1.0.0-gamma.9",
40-
"@aws-sdk/middleware-serde": "1.0.0-gamma.8",
41-
"@aws-sdk/middleware-signing": "1.0.0-gamma.8",
42-
"@aws-sdk/middleware-stack": "1.0.0-gamma.8",
43-
"@aws-sdk/middleware-user-agent": "1.0.0-gamma.8",
44-
"@aws-sdk/node-config-provider": "1.0.0-gamma.4",
45-
"@aws-sdk/node-http-handler": "1.0.0-gamma.9",
46-
"@aws-sdk/protocol-http": "1.0.0-gamma.8",
47-
"@aws-sdk/smithy-client": "1.0.0-gamma.9",
48-
"@aws-sdk/types": "1.0.0-gamma.7",
49-
"@aws-sdk/url-parser-browser": "1.0.0-gamma.8",
50-
"@aws-sdk/url-parser-node": "1.0.0-gamma.8",
51-
"@aws-sdk/util-base64-browser": "1.0.0-gamma.7",
52-
"@aws-sdk/util-base64-node": "1.0.0-gamma.7",
53-
"@aws-sdk/util-body-length-browser": "1.0.0-gamma.7",
54-
"@aws-sdk/util-body-length-node": "1.0.0-gamma.7",
55-
"@aws-sdk/util-user-agent-browser": "1.0.0-gamma.8",
56-
"@aws-sdk/util-user-agent-node": "1.0.0-gamma.9",
57-
"@aws-sdk/util-utf8-browser": "1.0.0-gamma.7",
58-
"@aws-sdk/util-utf8-node": "1.0.0-gamma.7",
31+
"@aws-sdk/config-resolver": "1.0.0-rc.0",
32+
"@aws-sdk/credential-provider-node": "1.0.0-rc.0",
33+
"@aws-sdk/fetch-http-handler": "1.0.0-rc.0",
34+
"@aws-sdk/hash-node": "1.0.0-rc.0",
35+
"@aws-sdk/invalid-dependency": "1.0.0-rc.0",
36+
"@aws-sdk/middleware-content-length": "1.0.0-rc.0",
37+
"@aws-sdk/middleware-host-header": "1.0.0-rc.0",
38+
"@aws-sdk/middleware-logger": "1.0.0-rc.0",
39+
"@aws-sdk/middleware-retry": "1.0.0-rc.0",
40+
"@aws-sdk/middleware-serde": "1.0.0-rc.0",
41+
"@aws-sdk/middleware-signing": "1.0.0-rc.0",
42+
"@aws-sdk/middleware-stack": "1.0.0-rc.0",
43+
"@aws-sdk/middleware-user-agent": "1.0.0-rc.0",
44+
"@aws-sdk/node-config-provider": "1.0.0-rc.0",
45+
"@aws-sdk/node-http-handler": "1.0.0-rc.0",
46+
"@aws-sdk/protocol-http": "1.0.0-rc.0",
47+
"@aws-sdk/smithy-client": "1.0.0-rc.0",
48+
"@aws-sdk/types": "1.0.0-rc.0",
49+
"@aws-sdk/url-parser-browser": "1.0.0-rc.0",
50+
"@aws-sdk/url-parser-node": "1.0.0-rc.0",
51+
"@aws-sdk/util-base64-browser": "1.0.0-rc.0",
52+
"@aws-sdk/util-base64-node": "1.0.0-rc.0",
53+
"@aws-sdk/util-body-length-browser": "1.0.0-rc.0",
54+
"@aws-sdk/util-body-length-node": "1.0.0-rc.0",
55+
"@aws-sdk/util-user-agent-browser": "1.0.0-rc.0",
56+
"@aws-sdk/util-user-agent-node": "1.0.0-rc.0",
57+
"@aws-sdk/util-utf8-browser": "1.0.0-rc.0",
58+
"@aws-sdk/util-utf8-node": "1.0.0-rc.0",
5959
"tslib": "^2.0.0"
6060
},
6161
"devDependencies": {
62-
"@aws-sdk/client-documentation-generator": "1.0.0-gamma.7",
62+
"@aws-sdk/client-documentation-generator": "1.0.0-rc.0",
6363
"@types/node": "^12.7.5",
6464
"jest": "^26.1.0",
6565
"rimraf": "^3.0.0",

0 commit comments

Comments
 (0)