@remotion/lambda 4.0.456 → 4.0.458
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/cli/commands/functions/deploy.js +1 -0
- package/dist/cli/commands/functions/ls.js +1 -0
- package/dist/cli/commands/functions/rm.js +2 -0
- package/dist/cli/commands/functions/rmall.js +2 -0
- package/dist/cli/commands/render/render.js +1 -0
- package/dist/cli/commands/sites/create.js +1 -0
- package/dist/esm/index.mjs +17 -9
- package/package.json +12 -12
- package/remotionlambda-arm64.zip +0 -0
|
@@ -62,6 +62,7 @@ VPC Security Group IDs = ${vpcSecurityGroupIds}
|
|
|
62
62
|
// No browser logs
|
|
63
63
|
updatesDontOverwrite: false,
|
|
64
64
|
indent: false,
|
|
65
|
+
logLevel,
|
|
65
66
|
});
|
|
66
67
|
output.update('Deploying Lambda...', false);
|
|
67
68
|
const { functionName, alreadyExisted } = await (0, deploy_function_1.internalDeployFunction)({
|
|
@@ -19,6 +19,7 @@ const functionsLsCommand = async ({ logLevel, providerSpecifics, }) => {
|
|
|
19
19
|
logLevel,
|
|
20
20
|
}),
|
|
21
21
|
indent: false,
|
|
22
|
+
logLevel,
|
|
22
23
|
});
|
|
23
24
|
fetchingOutput.update('Getting functions...', false);
|
|
24
25
|
const compatibleOnly = args_1.parsedLambdaCli['compatible-only'] || false;
|
|
@@ -32,6 +32,7 @@ const functionsRmCommand = async (args, logLevel) => {
|
|
|
32
32
|
// No browser logs
|
|
33
33
|
updatesDontOverwrite: false,
|
|
34
34
|
indent: false,
|
|
35
|
+
logLevel,
|
|
35
36
|
});
|
|
36
37
|
infoOutput.update('Getting function info...', false);
|
|
37
38
|
const info = await (0, get_function_info_1.getFunctionInfo)({
|
|
@@ -54,6 +55,7 @@ const functionsRmCommand = async (args, logLevel) => {
|
|
|
54
55
|
logLevel,
|
|
55
56
|
}),
|
|
56
57
|
indent: false,
|
|
58
|
+
logLevel,
|
|
57
59
|
});
|
|
58
60
|
output.update('Deleting...', false);
|
|
59
61
|
await (0, lambda_client_1.deleteFunction)({ region, functionName });
|
|
@@ -21,6 +21,7 @@ const functionsRmallCommand = async ({ logLevel, providerSpecifics, }) => {
|
|
|
21
21
|
// No browser logs
|
|
22
22
|
updatesDontOverwrite: false,
|
|
23
23
|
indent: false,
|
|
24
|
+
logLevel,
|
|
24
25
|
});
|
|
25
26
|
infoOutput.update('Getting function info...', false);
|
|
26
27
|
const info = await (0, get_function_info_1.getFunctionInfo)({
|
|
@@ -43,6 +44,7 @@ const functionsRmallCommand = async ({ logLevel, providerSpecifics, }) => {
|
|
|
43
44
|
logLevel,
|
|
44
45
|
}),
|
|
45
46
|
indent: false,
|
|
47
|
+
logLevel,
|
|
46
48
|
});
|
|
47
49
|
output.update('Deleting...', false);
|
|
48
50
|
await (0, lambda_client_1.deleteFunction)({ region, functionName: fun.functionName });
|
|
@@ -310,6 +310,7 @@ const renderCommand = async ({ args, remotionRoot, logLevel, providerSpecifics,
|
|
|
310
310
|
// No browser logs in Lambda
|
|
311
311
|
updatesDontOverwrite: false,
|
|
312
312
|
indent: false,
|
|
313
|
+
logLevel,
|
|
313
314
|
});
|
|
314
315
|
log_1.Log.info({ indent: false, logLevel }, cli_1.CliInternals.chalk.gray(`Bucket: ${cli_1.CliInternals.makeHyperlink({ text: res.bucketName, fallback: res.bucketName, url: `https://${(0, get_aws_region_1.getAwsRegion)()}.console.aws.amazon.com/s3/buckets/${res.bucketName}/?region=${(0, get_aws_region_1.getAwsRegion)()}` })}`));
|
|
315
316
|
log_1.Log.info({ indent: false, logLevel }, cli_1.CliInternals.chalk.gray(`Function: ${cli_1.CliInternals.makeHyperlink({ text: functionName, fallback: functionName, url: `https://${(0, get_aws_region_1.getAwsRegion)()}.console.aws.amazon.com/lambda/home#/functions/${functionName}?tab=code` })}`));
|
package/dist/esm/index.mjs
CHANGED
|
@@ -8604,7 +8604,7 @@ var require_package = __commonJS((exports, module) => {
|
|
|
8604
8604
|
url: "https://github.com/remotion-dev/remotion/tree/main/packages/lambda"
|
|
8605
8605
|
},
|
|
8606
8606
|
name: "@remotion/lambda",
|
|
8607
|
-
version: "4.0.
|
|
8607
|
+
version: "4.0.458",
|
|
8608
8608
|
description: "Render Remotion videos on AWS Lambda",
|
|
8609
8609
|
main: "dist/index.js",
|
|
8610
8610
|
sideEffects: false,
|
|
@@ -10692,7 +10692,8 @@ VPC Security Group IDs = ${vpcSecurityGroupIds}
|
|
|
10692
10692
|
quiet: CliInternals3.quietFlagProvided(),
|
|
10693
10693
|
cancelSignal: null,
|
|
10694
10694
|
updatesDontOverwrite: false,
|
|
10695
|
-
indent: false
|
|
10695
|
+
indent: false,
|
|
10696
|
+
logLevel
|
|
10696
10697
|
});
|
|
10697
10698
|
output.update("Deploying Lambda...", false);
|
|
10698
10699
|
const { functionName, alreadyExisted } = await internalDeployFunction({
|
|
@@ -10742,7 +10743,8 @@ var functionsLsCommand = async ({
|
|
|
10742
10743
|
updatesDontOverwrite: CliInternals4.shouldUseNonOverlayingLogger({
|
|
10743
10744
|
logLevel
|
|
10744
10745
|
}),
|
|
10745
|
-
indent: false
|
|
10746
|
+
indent: false,
|
|
10747
|
+
logLevel
|
|
10746
10748
|
});
|
|
10747
10749
|
fetchingOutput.update("Getting functions...", false);
|
|
10748
10750
|
const compatibleOnly = parsedLambdaCli["compatible-only"] || false;
|
|
@@ -10867,7 +10869,8 @@ var functionsRmCommand = async (args, logLevel) => {
|
|
|
10867
10869
|
quiet: CliInternals5.quietFlagProvided(),
|
|
10868
10870
|
cancelSignal: null,
|
|
10869
10871
|
updatesDontOverwrite: false,
|
|
10870
|
-
indent: false
|
|
10872
|
+
indent: false,
|
|
10873
|
+
logLevel
|
|
10871
10874
|
});
|
|
10872
10875
|
infoOutput.update("Getting function info...", false);
|
|
10873
10876
|
const info = await getFunctionInfo({
|
|
@@ -10890,7 +10893,8 @@ var functionsRmCommand = async (args, logLevel) => {
|
|
|
10890
10893
|
updatesDontOverwrite: CliInternals5.shouldUseNonOverlayingLogger({
|
|
10891
10894
|
logLevel
|
|
10892
10895
|
}),
|
|
10893
|
-
indent: false
|
|
10896
|
+
indent: false,
|
|
10897
|
+
logLevel
|
|
10894
10898
|
});
|
|
10895
10899
|
output.update("Deleting...", false);
|
|
10896
10900
|
await deleteFunction({ region, functionName });
|
|
@@ -10917,7 +10921,8 @@ var functionsRmallCommand = async ({
|
|
|
10917
10921
|
quiet: CliInternals6.quietFlagProvided(),
|
|
10918
10922
|
cancelSignal: null,
|
|
10919
10923
|
updatesDontOverwrite: false,
|
|
10920
|
-
indent: false
|
|
10924
|
+
indent: false,
|
|
10925
|
+
logLevel
|
|
10921
10926
|
});
|
|
10922
10927
|
infoOutput.update("Getting function info...", false);
|
|
10923
10928
|
const info = await getFunctionInfo({
|
|
@@ -10940,7 +10945,8 @@ var functionsRmallCommand = async ({
|
|
|
10940
10945
|
updatesDontOverwrite: CliInternals6.shouldUseNonOverlayingLogger({
|
|
10941
10946
|
logLevel
|
|
10942
10947
|
}),
|
|
10943
|
-
indent: false
|
|
10948
|
+
indent: false,
|
|
10949
|
+
logLevel
|
|
10944
10950
|
});
|
|
10945
10951
|
output.update("Deleting...", false);
|
|
10946
10952
|
await deleteFunction2({ region, functionName: fun.functionName });
|
|
@@ -11922,7 +11928,8 @@ var renderCommand = async ({
|
|
|
11922
11928
|
quiet: CliInternals14.quietFlagProvided(),
|
|
11923
11929
|
cancelSignal: null,
|
|
11924
11930
|
updatesDontOverwrite: false,
|
|
11925
|
-
indent: false
|
|
11931
|
+
indent: false,
|
|
11932
|
+
logLevel
|
|
11926
11933
|
});
|
|
11927
11934
|
Log.info({ indent: false, logLevel }, CliInternals14.chalk.gray(`Bucket: ${CliInternals14.makeHyperlink({ text: res.bucketName, fallback: res.bucketName, url: `https://${getAwsRegion()}.console.aws.amazon.com/s3/buckets/${res.bucketName}/?region=${getAwsRegion()}` })}`));
|
|
11928
11935
|
Log.info({ indent: false, logLevel }, CliInternals14.chalk.gray(`Function: ${CliInternals14.makeHyperlink({ text: functionName, fallback: functionName, url: `https://${getAwsRegion()}.console.aws.amazon.com/lambda/home#/functions/${functionName}?tab=code` })}`));
|
|
@@ -12193,7 +12200,8 @@ var sitesCreateSubcommand = async (args, remotionRoot, logLevel, implementation)
|
|
|
12193
12200
|
quiet: CliInternals16.quietFlagProvided(),
|
|
12194
12201
|
cancelSignal: null,
|
|
12195
12202
|
updatesDontOverwrite: false,
|
|
12196
|
-
indent: false
|
|
12203
|
+
indent: false,
|
|
12204
|
+
logLevel
|
|
12197
12205
|
});
|
|
12198
12206
|
const multiProgress = {
|
|
12199
12207
|
bundleProgress: {
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/lambda"
|
|
4
4
|
},
|
|
5
5
|
"name": "@remotion/lambda",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.458",
|
|
7
7
|
"description": "Render Remotion videos on AWS Lambda",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"sideEffects": false,
|
|
@@ -29,22 +29,22 @@
|
|
|
29
29
|
"@aws-sdk/client-cloudwatch-logs": "3.986.0",
|
|
30
30
|
"@aws-sdk/client-service-quotas": "3.986.0",
|
|
31
31
|
"@aws-sdk/lib-storage": "3.986.0",
|
|
32
|
-
"@remotion/bundler": "4.0.
|
|
33
|
-
"@remotion/cli": "4.0.
|
|
34
|
-
"@remotion/lambda-client": "4.0.
|
|
35
|
-
"@remotion/renderer": "4.0.
|
|
36
|
-
"@remotion/serverless": "4.0.
|
|
37
|
-
"@remotion/streaming": "4.0.
|
|
32
|
+
"@remotion/bundler": "4.0.458",
|
|
33
|
+
"@remotion/cli": "4.0.458",
|
|
34
|
+
"@remotion/lambda-client": "4.0.458",
|
|
35
|
+
"@remotion/renderer": "4.0.458",
|
|
36
|
+
"@remotion/serverless": "4.0.458",
|
|
37
|
+
"@remotion/streaming": "4.0.458",
|
|
38
38
|
"@smithy/abort-controller": "4.0.1",
|
|
39
|
-
"remotion": "4.0.
|
|
39
|
+
"remotion": "4.0.458",
|
|
40
40
|
"zod": "4.3.6"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@remotion/bundler": "4.0.
|
|
43
|
+
"@remotion/bundler": "4.0.458",
|
|
44
44
|
"@types/express": "^5.0.0",
|
|
45
45
|
"express": "4.21.0",
|
|
46
|
-
"@remotion/compositor-linux-arm64-gnu": "4.0.
|
|
47
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
46
|
+
"@remotion/compositor-linux-arm64-gnu": "4.0.458",
|
|
47
|
+
"@remotion/eslint-config-internal": "4.0.458",
|
|
48
48
|
"mime-types": "2.1.34",
|
|
49
49
|
"@types/mime-types": "2.1.1",
|
|
50
50
|
"@types/minimist": "1.2.2",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"@typescript/native-preview": "7.0.0-dev.20260217.1"
|
|
56
56
|
},
|
|
57
57
|
"peerDependencies": {
|
|
58
|
-
"@remotion/bundler": "4.0.
|
|
58
|
+
"@remotion/bundler": "4.0.458"
|
|
59
59
|
},
|
|
60
60
|
"publishConfig": {
|
|
61
61
|
"access": "public"
|
package/remotionlambda-arm64.zip
CHANGED
|
Binary file
|