@remotion/lambda 3.3.75 → 3.3.77
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api/deploy-site.js +3 -1
- package/dist/functions/chunk-optimization/plan-frame-ranges.d.ts +4 -1
- package/dist/shared/invoke-webhook.d.ts +0 -2
- package/dist/shared/validate-outname.js +3 -2
- package/package.json +10 -10
- package/remotionlambda-arm64.zip +0 -0
- package/remotionlambda-x64.zip +0 -0
package/dist/api/deploy-site.js
CHANGED
|
@@ -88,7 +88,9 @@ const deploySite = async ({ bucketName, entryPoint, siteName, options, region, }
|
|
|
88
88
|
]);
|
|
89
89
|
if (!process.env.VITEST) {
|
|
90
90
|
if (fs_1.default.rmSync) {
|
|
91
|
-
fs_1.default.rmSync(bundled
|
|
91
|
+
fs_1.default.rmSync(bundled, {
|
|
92
|
+
recursive: true,
|
|
93
|
+
});
|
|
92
94
|
}
|
|
93
95
|
else {
|
|
94
96
|
fs_1.default.rmdirSync(bundled, { recursive: true });
|
|
@@ -7,8 +7,9 @@ const validateS3Key = (s3Key) => {
|
|
|
7
7
|
if (typeof s3Key !== 'string') {
|
|
8
8
|
throw new TypeError('The S3 key must be a string. Passed an object of type ' + typeof s3Key);
|
|
9
9
|
}
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
// https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-keys.html
|
|
11
|
+
if (!s3Key.match(/^([0-9a-zA-Z-!_.*'()/:&$@=;+,?]+)/g)) {
|
|
12
|
+
throw new Error("The S3 Key must match the RegExp `/^([0-9a-zA-Z-!_.*'()/:&$@=;+,?]+)/g`. You passed: " +
|
|
12
13
|
s3Key +
|
|
13
14
|
'. Check for invalid characters.');
|
|
14
15
|
}
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/lambda",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.77",
|
|
4
4
|
"description": "Distributed renderer for Remotion based on AWS Lambda",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"bin": {
|
|
8
8
|
"remotion-lambda": "remotion-lambda-cli.js"
|
|
9
9
|
},
|
|
10
|
-
"author": "",
|
|
10
|
+
"author": "Jonny Burger <jonny@remotion.dev>",
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"repository": {
|
|
13
13
|
"url": "https://github.com/JonnyBurger/remotion"
|
|
@@ -23,18 +23,18 @@
|
|
|
23
23
|
"@aws-sdk/credential-providers": "3.272.0",
|
|
24
24
|
"@aws-sdk/lib-storage": "3.272.0",
|
|
25
25
|
"@aws-sdk/s3-request-presigner": "3.272.0",
|
|
26
|
-
"@remotion/bundler": "3.3.
|
|
27
|
-
"@remotion/cli": "3.3.
|
|
28
|
-
"@remotion/renderer": "3.3.
|
|
26
|
+
"@remotion/bundler": "3.3.77",
|
|
27
|
+
"@remotion/cli": "3.3.77",
|
|
28
|
+
"@remotion/renderer": "3.3.77",
|
|
29
29
|
"aws-policies": "^1.0.1",
|
|
30
30
|
"mime-types": "2.1.34",
|
|
31
|
-
"remotion": "3.3.
|
|
31
|
+
"remotion": "3.3.77"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@jonny/eslint-config": "3.0.266",
|
|
35
|
-
"@remotion/bundler": "3.3.
|
|
36
|
-
"@remotion/compositor-linux-arm64-musl": "3.3.
|
|
37
|
-
"@remotion/compositor-linux-x64-musl": "3.3.
|
|
35
|
+
"@remotion/bundler": "3.3.77",
|
|
36
|
+
"@remotion/compositor-linux-arm64-musl": "3.3.77",
|
|
37
|
+
"@remotion/compositor-linux-x64-musl": "3.3.77",
|
|
38
38
|
"@types/mime-types": "2.1.1",
|
|
39
39
|
"@types/minimist": "1.2.2",
|
|
40
40
|
"@types/node": "^14.14.14",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"zip-lib": "^0.7.2"
|
|
49
49
|
},
|
|
50
50
|
"peerDependencies": {
|
|
51
|
-
"@remotion/bundler": "3.3.
|
|
51
|
+
"@remotion/bundler": "3.3.77"
|
|
52
52
|
},
|
|
53
53
|
"publishConfig": {
|
|
54
54
|
"access": "public"
|
package/remotionlambda-arm64.zip
CHANGED
|
Binary file
|
package/remotionlambda-x64.zip
CHANGED
|
Binary file
|