Trivikram Kamat

Results 339 comments of Trivikram Kamat
trafficstars

AWS.Endpoint is also used in nocodb https://github.com/search?q=repo%3Anocodb%2Fnocodb%20AWS.Endpoint&type=code

The fix for this issue is not straightforward, as only the top-level inputs and any types which use AttributeValue should import from DocumentClient, while types should be imported from DynamoDB...

We don't plan to convert `client.operation()` to `client.send(new OperationCommand())` in `v2-to-v3` transformer. We may add a future transformer, say `api-to-command`, if there's a requirement which multiple users ask for. About...

> We may add a future transformer, say `api-to-command`, if there's a requirement which multiple users ask for. This will be tracked in https://github.com/awslabs/aws-sdk-js-codemod/issues/497

The [AWS.S3.ManagedUpload](https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/S3/ManagedUpload.html) is replace by [Upload](https://www.npmjs.com/package/@aws-sdk/lib-storage#upload) in v3. The `service` is renamed to `client`, and is no longer optional. We added transformations for `s3.upload` in [`v0.12.0`](https://github.com/awslabs/aws-sdk-js-codemod/blob/main/CHANGELOG.md#0120). As a workaround, you...

https://github.com/strapi/strapi/blob/d482633e774699cc8d4e05531deaeb6001e791cd/packages/providers/upload-aws-s3/src/index.ts#L90

[ASTExplorer](https://astexplorer.net/) has an option to perform tranform with jscodeshift. On selected, it shows input, output, jscodeshift source code and AST. Screenshot Source: https://github.com/fkling/astexplorer

The `SDKAppliedContentEncoding_ec2Query` fails since `'Content-Encoding'` header is populated, but `'content-encoding'` is checked in the test file.

Error ```console ● RestJsonInputAndOutputWithQuotedStringHeaders:Request expect(received).toBe(expected) // Object.is equality Expected: "\"b,c\", \"\\\"def\\\"\", a" Received: "b,c, \"def\", a" 3521 | 3522 | expect(r.headers["x-stringlist"]).toBeDefined(); > 3523 | expect(r.headers["x-stringlist"]).toBe('"b,c", "\\"def\\"", a'); | ^ 3524...