@remotion/lambda 4.0.258 → 4.0.259

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/log.d.ts CHANGED
@@ -1,13 +1,13 @@
1
1
  export declare const Log: {
2
2
  trace: (options: import("@remotion/renderer").LogOptions & {
3
3
  tag?: string;
4
- }, ...args: Parameters<typeof console.log>) => boolean | void;
4
+ }, message?: any, ...optionalParams: any[]) => boolean | void;
5
5
  verbose: (options: import("@remotion/renderer").LogOptions & {
6
6
  tag?: string;
7
- }, ...args: Parameters<typeof console.log>) => boolean | void;
8
- info: (options: import("@remotion/renderer").LogOptions, ...args: Parameters<typeof console.log>) => boolean | void;
9
- warn: (options: import("@remotion/renderer").LogOptions, ...args: Parameters<typeof console.log>) => boolean | void;
7
+ }, message?: any, ...optionalParams: any[]) => boolean | void;
8
+ info: (options: import("@remotion/renderer").LogOptions, message?: any, ...optionalParams: any[]) => boolean | void;
9
+ warn: (options: import("@remotion/renderer").LogOptions, message?: any, ...optionalParams: any[]) => boolean | void;
10
10
  error: (options: import("@remotion/renderer").LogOptions & {
11
11
  tag?: string;
12
- }, ...args: Parameters<typeof console.log>) => boolean | void;
12
+ }, message?: any, ...optionalParams: any[]) => boolean | void;
13
13
  };
@@ -43,7 +43,7 @@ const lambdaWriteFileImplementation = async (params) => {
43
43
  await new Promise((resolve) => {
44
44
  setTimeout(resolve, backoff);
45
45
  });
46
- console.warn('Failed to write file to Lambda:');
46
+ console.warn('Failed to write file to storage:');
47
47
  console.warn(err);
48
48
  console.warn(`Retrying (${remainingRetries} retries remaining)...`);
49
49
  return (0, exports.lambdaWriteFileImplementation)({
@@ -99,6 +99,7 @@ const getServiceClient = ({ region, service, customCredentials, forcePathStyle,
99
99
  : undefined,
100
100
  endpoint: customCredentials.endpoint,
101
101
  requestHandler: lambdaOptions,
102
+ forcePathStyle: customCredentials.forcePathStyle,
102
103
  })
103
104
  : (0, get_env_variable_1.getEnvVariable)('REMOTION_SKIP_AWS_CREDENTIALS_CHECK')
104
105
  ? new Client({
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.258",
6
+ "version": "4.0.259",
7
7
  "description": "Render Remotion videos on AWS Lambda",
8
8
  "main": "dist/index.js",
9
9
  "sideEffects": false,
@@ -22,13 +22,12 @@
22
22
  "@smithy/abort-controller": "3.1.1",
23
23
  "mime-types": "2.1.34",
24
24
  "zod": "3.22.3",
25
- "@remotion/cli": "4.0.258",
26
- "@remotion/bundler": "4.0.258",
27
- "@remotion/renderer": "4.0.258",
28
- "@remotion/serverless": "4.0.258",
29
- "@remotion/streaming": "4.0.258",
30
- "@remotion/studio-server": "4.0.258",
31
- "remotion": "4.0.258"
25
+ "@remotion/bundler": "4.0.259",
26
+ "@remotion/cli": "4.0.259",
27
+ "@remotion/streaming": "4.0.259",
28
+ "remotion": "4.0.259",
29
+ "@remotion/serverless": "4.0.259",
30
+ "@remotion/renderer": "4.0.259"
32
31
  },
33
32
  "devDependencies": {
34
33
  "@types/express": "^5.0.0",
@@ -40,12 +39,12 @@
40
39
  "next": "15.1.2",
41
40
  "pureimage": "0.4.13",
42
41
  "zip-lib": "^0.7.2",
43
- "@remotion/compositor-linux-arm64-gnu": "4.0.258",
44
- "@remotion/eslint-config-internal": "4.0.258",
45
- "@remotion/bundler": "4.0.258"
42
+ "@remotion/bundler": "4.0.259",
43
+ "@remotion/compositor-linux-arm64-gnu": "4.0.259",
44
+ "@remotion/eslint-config-internal": "4.0.259"
46
45
  },
47
46
  "peerDependencies": {
48
- "@remotion/bundler": "4.0.258"
47
+ "@remotion/bundler": "4.0.259"
49
48
  },
50
49
  "publishConfig": {
51
50
  "access": "public"
Binary file