@remotion/lambda 4.0.237 → 4.0.239

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.
@@ -32,6 +32,7 @@ const getCompositionsOnLambda = async ({ chromiumOptions, serveUrl, region, inpu
32
32
  ]),
33
33
  providerSpecifics: aws_implementation_1.awsImplementation,
34
34
  forcePathStyle: forcePathStyle !== null && forcePathStyle !== void 0 ? forcePathStyle : false,
35
+ skipPutAcl: false,
35
36
  });
36
37
  try {
37
38
  const res = await (0, call_lambda_1.callLambda)({
@@ -17,6 +17,7 @@ const getOrCreateBucket = (options) => {
17
17
  customCredentials: (_b = options.customCredentials) !== null && _b !== void 0 ? _b : null,
18
18
  providerSpecifics: aws_implementation_1.awsImplementation,
19
19
  forcePathStyle: false,
20
+ skipPutAcl: false,
20
21
  });
21
22
  };
22
23
  exports.getOrCreateBucket = getOrCreateBucket;
@@ -31,6 +31,7 @@ const makeLambdaRenderMediaPayload = async ({ rendererFunctionName, frameRange,
31
31
  propsType: 'input-props',
32
32
  providerSpecifics: aws_implementation_1.awsImplementation,
33
33
  forcePathStyle: forcePathStyle !== null && forcePathStyle !== void 0 ? forcePathStyle : false,
34
+ skipPutAcl: privacy === 'no-acl',
34
35
  });
35
36
  return {
36
37
  rendererFunctionName,
@@ -108,6 +109,7 @@ const makeLambdaRenderStillPayload = async ({ serveUrl, inputProps, imageFormat,
108
109
  propsType: 'input-props',
109
110
  providerSpecifics: aws_implementation_1.awsImplementation,
110
111
  forcePathStyle,
112
+ skipPutAcl: privacy === 'no-acl',
111
113
  });
112
114
  return {
113
115
  composition,
@@ -84,6 +84,7 @@ const sitesCreateSubcommand = async (args, remotionRoot, logLevel, implementatio
84
84
  customCredentials: null,
85
85
  providerSpecifics: implementation,
86
86
  forcePathStyle: false,
87
+ skipPutAcl: args_1.parsedLambdaCli.privacy === 'no-acl',
87
88
  })).bucketName;
88
89
  multiProgress.bucketProgress.doneIn = Date.now() - bucketStart;
89
90
  updateProgress(false);
@@ -32,6 +32,7 @@ const sitesRmSubcommand = async (args, logLevel, implementation) => {
32
32
  customCredentials: null,
33
33
  providerSpecifics: implementation,
34
34
  forcePathStyle: false,
35
+ skipPutAcl: false,
35
36
  })).bucketName;
36
37
  for (const siteName of args) {
37
38
  const site = deployedSites.sites.find((s) => s.id === siteName.trim());
@@ -22,6 +22,7 @@ const sitesRmallSubcommand = async (logLevel, implementation) => {
22
22
  customCredentials: null,
23
23
  providerSpecifics: implementation,
24
24
  forcePathStyle: false,
25
+ skipPutAcl: false,
25
26
  })).bucketName;
26
27
  for (const site of deployedSites.sites) {
27
28
  if (!(await (0, confirm_1.confirmCli)({
@@ -130,6 +130,7 @@ const innerLaunchHandler = async ({ functionName, params, options, overallProgre
130
130
  needsToUpload,
131
131
  providerSpecifics,
132
132
  forcePathStyle: params.forcePathStyle,
133
+ skipPutAcl: false,
133
134
  });
134
135
  registerCleanupTask(() => {
135
136
  return (0, cleanup_props_1.cleanupProps)({
@@ -25,6 +25,7 @@ const startHandler = async (params, options, providerSpecifics) => {
25
25
  customCredentials: null,
26
26
  providerSpecifics,
27
27
  forcePathStyle: params.forcePathStyle,
28
+ skipPutAcl: false,
28
29
  })).bucketName;
29
30
  const realServeUrl = providerSpecifics.convertToServeUrl({
30
31
  urlOrId: params.serveUrl,
@@ -53,6 +53,7 @@ const innerStillHandler = async ({ params: lambdaParams, expectedBucketOwner, re
53
53
  customCredentials: null,
54
54
  providerSpecifics,
55
55
  forcePathStyle: lambdaParams.forcePathStyle,
56
+ skipPutAcl: false,
56
57
  }).then((b) => b.bucketName);
57
58
  const outputDir = renderer_1.RenderInternals.tmpDir('remotion-render-');
58
59
  const outputPath = node_path_1.default.join(outputDir, 'output');
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.237",
6
+ "version": "4.0.239",
7
7
  "description": "Render Remotion videos on AWS Lambda",
8
8
  "main": "dist/index.js",
9
9
  "sideEffects": false,
@@ -22,13 +22,13 @@
22
22
  "@aws-sdk/s3-request-presigner": "3.645.0",
23
23
  "mime-types": "2.1.34",
24
24
  "zod": "3.22.3",
25
- "@remotion/cli": "4.0.237",
26
- "@remotion/bundler": "4.0.237",
27
- "@remotion/serverless": "4.0.237",
28
- "@remotion/studio-server": "4.0.237",
29
- "@remotion/renderer": "4.0.237",
30
- "remotion": "4.0.237",
31
- "@remotion/streaming": "4.0.237"
25
+ "@remotion/bundler": "4.0.239",
26
+ "@remotion/cli": "4.0.239",
27
+ "@remotion/renderer": "4.0.239",
28
+ "@remotion/studio-server": "4.0.239",
29
+ "@remotion/serverless": "4.0.239",
30
+ "@remotion/streaming": "4.0.239",
31
+ "remotion": "4.0.239"
32
32
  },
33
33
  "devDependencies": {
34
34
  "@types/mime-types": "2.1.1",
@@ -38,12 +38,12 @@
38
38
  "vitest": "0.31.1",
39
39
  "zip-lib": "^0.7.2",
40
40
  "eslint": "9.14.0",
41
- "@remotion/bundler": "4.0.237",
42
- "@remotion/compositor-linux-arm64-gnu": "4.0.237",
43
- "@remotion/eslint-config-internal": "4.0.237"
41
+ "@remotion/eslint-config-internal": "4.0.239",
42
+ "@remotion/bundler": "4.0.239",
43
+ "@remotion/compositor-linux-arm64-gnu": "4.0.239"
44
44
  },
45
45
  "peerDependencies": {
46
- "@remotion/bundler": "4.0.237"
46
+ "@remotion/bundler": "4.0.239"
47
47
  },
48
48
  "publishConfig": {
49
49
  "access": "public"
Binary file