@remotion/lambda 4.0.250 → 4.0.252

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.
@@ -102,9 +102,11 @@ const mandatoryDeploySite = async ({ bucketName, entryPoint, siteName, options,
102
102
  });
103
103
  })),
104
104
  ]);
105
- node_fs_1.default.rmSync(bundled, {
106
- recursive: true,
107
- });
105
+ if (node_fs_1.default.existsSync(bundled)) {
106
+ node_fs_1.default.rmSync(bundled, {
107
+ recursive: true,
108
+ });
109
+ }
108
110
  return {
109
111
  serveUrl: (0, make_s3_url_1.makeS3ServeUrl)({ bucketName, subFolder, region }),
110
112
  siteName,
package/dist/cli/log.d.ts CHANGED
@@ -1,13 +1,13 @@
1
1
  export declare const Log: {
2
- trace: (options: import("@remotion/renderer/dist/logger").LogOptions & {
2
+ trace: (options: import("@remotion/renderer").LogOptions & {
3
3
  tag?: string;
4
4
  }, ...args: Parameters<typeof console.log>) => boolean | void;
5
- verbose: (options: import("@remotion/renderer/dist/logger").LogOptions & {
5
+ verbose: (options: import("@remotion/renderer").LogOptions & {
6
6
  tag?: string;
7
7
  }, ...args: Parameters<typeof console.log>) => boolean | void;
8
8
  info: (options: import("@remotion/renderer").LogOptions, ...args: Parameters<typeof console.log>) => boolean | void;
9
- warn: (options: import("@remotion/renderer/dist/logger").LogOptions, ...args: Parameters<typeof console.log>) => boolean | void;
10
- error: (options: import("@remotion/renderer/dist/logger").LogOptions & {
9
+ warn: (options: import("@remotion/renderer").LogOptions, ...args: Parameters<typeof console.log>) => boolean | void;
10
+ error: (options: import("@remotion/renderer").LogOptions & {
11
11
  tag?: string;
12
12
  }, ...args: Parameters<typeof console.log>) => boolean | void;
13
13
  };
@@ -106,6 +106,8 @@ const callFunctionWithStreamingImplementation = async (options) => {
106
106
  }
107
107
  if (!err.message.includes(INVALID_JSON_MESSAGE) &&
108
108
  !err.message.includes(LAMBDA_STREAM_STALL) &&
109
+ // https://discord.com/channels/809501355504959528/1332166561242288220/1332166561242288220
110
+ !err.message.includes('Runtime.TruncatedResponse') &&
109
111
  !err.message.includes('aborted')) {
110
112
  throw err;
111
113
  }
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.250",
6
+ "version": "4.0.252",
7
7
  "description": "Render Remotion videos on AWS Lambda",
8
8
  "main": "dist/index.js",
9
9
  "sideEffects": false,
@@ -24,13 +24,13 @@
24
24
  "express": "4.21.0",
25
25
  "mime-types": "2.1.34",
26
26
  "zod": "3.22.3",
27
- "@remotion/bundler": "4.0.250",
28
- "@remotion/cli": "4.0.250",
29
- "@remotion/renderer": "4.0.250",
30
- "@remotion/streaming": "4.0.250",
31
- "@remotion/serverless": "4.0.250",
32
- "@remotion/studio-server": "4.0.250",
33
- "remotion": "4.0.250"
27
+ "@remotion/bundler": "4.0.252",
28
+ "@remotion/cli": "4.0.252",
29
+ "@remotion/serverless": "4.0.252",
30
+ "@remotion/studio-server": "4.0.252",
31
+ "@remotion/renderer": "4.0.252",
32
+ "remotion": "4.0.252",
33
+ "@remotion/streaming": "4.0.252"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@types/mime-types": "2.1.1",
@@ -40,12 +40,12 @@
40
40
  "next": "15.1.2",
41
41
  "pureimage": "0.4.13",
42
42
  "zip-lib": "^0.7.2",
43
- "@remotion/bundler": "4.0.250",
44
- "@remotion/compositor-linux-arm64-gnu": "4.0.250",
45
- "@remotion/eslint-config-internal": "4.0.250"
43
+ "@remotion/bundler": "4.0.252",
44
+ "@remotion/compositor-linux-arm64-gnu": "4.0.252",
45
+ "@remotion/eslint-config-internal": "4.0.252"
46
46
  },
47
47
  "peerDependencies": {
48
- "@remotion/bundler": "4.0.250"
48
+ "@remotion/bundler": "4.0.252"
49
49
  },
50
50
  "publishConfig": {
51
51
  "access": "public"
Binary file