Skip to content

Commit c7318a2

Browse files
authored
AWS - Download File to tmp (#15343)
* add @aws-sdk/signature-v4-crt dependency * pnpm-lock.yaml
1 parent 6aef860 commit c7318a2

File tree

3 files changed

+968
-157
lines changed

3 files changed

+968
-157
lines changed

components/aws/actions/s3-download-file-to-tmp/s3-download-file-to-tmp.mjs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,17 @@ import { pipeline } from "stream/promises";
22
import fs from "fs";
33
import common from "../../common/common-s3.mjs";
44
import { toSingleLineString } from "../../common/utils.mjs";
5+
import "@aws-sdk/signature-v4-crt";
56

67
export default {
78
...common,
89
key: "aws-s3-download-file-to-tmp",
910
name: "S3 - Download File to /tmp",
1011
description: toSingleLineString(`
1112
Downloads a file from S3 to the /tmp directory.
12-
[See the docs](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObject.html)
13+
[See the documentation](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObject.html)
1314
`),
14-
version: "0.0.1",
15+
version: "0.0.2",
1516
type: "action",
1617
props: {
1718
aws: common.props.aws,

components/aws/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/aws",
3-
"version": "0.7.0",
3+
"version": "0.7.1",
44
"description": "Pipedream Aws Components",
55
"main": "aws.app.mjs",
66
"keywords": [
@@ -26,6 +26,7 @@
2626
"@aws-sdk/client-ssm": "^3.58.0",
2727
"@aws-sdk/client-sts": "^3.58.0",
2828
"@aws-sdk/s3-request-presigner": "^3.609.0",
29+
"@aws-sdk/signature-v4-crt": "^3.731.0",
2930
"@pipedream/helper_functions": "^0.3.6",
3031
"@pipedream/platform": "^1.6.3",
3132
"adm-zip": "^0.5.10",

0 commit comments

Comments
 (0)