George Fu

Results 216 comments of George Fu

The AWS SDK for JavaScript team is planning to change the usage of the optional CRT dependency in a future update. The change is described in this announcement: https://github.com/aws/aws-sdk-js-v3/issues/5229. The...

`fromEnv` will not be provided in the browser, since `process` is a Node.js global and to use it would mean leaving credentials readable in an easily discoverable global object, vulnerable...

@jove4015 please create a new issue with instructions on how to replicate the error.

Docs on how to customize attempts and delay (backoff) computation are here: https://github.com/awslabs/smithy-typescript/blob/main/packages/util-retry/README.md One note: I have a PR open to fix a typo on that page, it should say...

We have moved all types imports to dependencies and not devDeps.

PR #4367 adds the suggested `?.Code` checked access operator. These TypeErrors should now fall through to the default error handler and give more information. The versioning containing it is https://github.com/aws/aws-sdk-js-v3/releases/tag/v3.261.0

I'm not able to reproduce this on the latest version, setting to closing-soon.

https://github.com/awslabs/smithy-typescript/blob/main/packages/property-provider/src/chain.ts should no longer be an issue since there is no longer a promise rejection happening in the chain function.

I'm able to install and compile a specific (not latest) version of the `client-dynamodb` and `lib-dynamodb` packages by adding a single override: ```json "dependencies": { "@aws-sdk/client-dynamodb": "3.287.0", "@aws-sdk/lib-dynamodb": "3.287.0" },...