@remotion/cloudrun 4.0.457 → 4.0.459

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.
@@ -180,6 +180,7 @@ ${downloadName ? ` Downloaded File = ${downloadName}` : ''}
180
180
  cancelSignal: null,
181
181
  updatesDontOverwrite: false,
182
182
  indent: false,
183
+ logLevel,
183
184
  });
184
185
  const renderProgress = {
185
186
  doneIn: null,
@@ -14,6 +14,7 @@ const servicesLsCommand = async (logLevel) => {
14
14
  cancelSignal: null,
15
15
  updatesDontOverwrite: false,
16
16
  indent: false,
17
+ logLevel,
17
18
  });
18
19
  fetchingOutput.update(`Getting services in ${region}...`, false);
19
20
  const services = await (0, get_services_1.getServices)({
@@ -30,6 +30,7 @@ const servicesRmCommand = async (args, logLevel) => {
30
30
  cancelSignal: null,
31
31
  updatesDontOverwrite: false,
32
32
  indent: false,
33
+ logLevel,
33
34
  });
34
35
  infoOutput.update('Getting service info...', false);
35
36
  const info = await (0, get_service_info_1.getServiceInfo)({
@@ -51,6 +52,7 @@ const servicesRmCommand = async (args, logLevel) => {
51
52
  cancelSignal: null,
52
53
  updatesDontOverwrite: false,
53
54
  indent: false,
55
+ logLevel,
54
56
  });
55
57
  output.update('Deleting...', false);
56
58
  await (0, delete_service_1.deleteService)({
@@ -16,6 +16,7 @@ const servicesRmallCommand = async (logLevel) => {
16
16
  cancelSignal: null,
17
17
  updatesDontOverwrite: false,
18
18
  indent: false,
19
+ logLevel,
19
20
  });
20
21
  fetchingOutput.update(`Getting services in ${region}...`, false);
21
22
  const services = await (0, get_services_1.getServices)({
@@ -43,6 +44,7 @@ const servicesRmallCommand = async (logLevel) => {
43
44
  cancelSignal: null,
44
45
  updatesDontOverwrite: false,
45
46
  indent: false,
47
+ logLevel,
46
48
  });
47
49
  output.update('Deleting...', false);
48
50
  await (0, delete_service_1.deleteService)({ region: serv.region, serviceName: serv.serviceName });
@@ -52,6 +52,7 @@ const sitesCreateSubcommand = async (args, remotionRoot, logLevel) => {
52
52
  cancelSignal: null,
53
53
  updatesDontOverwrite: false,
54
54
  indent: false,
55
+ logLevel,
55
56
  });
56
57
  const multiProgress = {
57
58
  bundleProgress: {
@@ -28,6 +28,7 @@ const sitesRmSubcommand = async (args, logLevel) => {
28
28
  cancelSignal: null,
29
29
  updatesDontOverwrite: false,
30
30
  indent: false,
31
+ logLevel,
31
32
  });
32
33
  infoOutput.update(`Checking ${region} for sites...`, false);
33
34
  const deployedSites = await (0, get_sites_1.getSites)(region);
@@ -161,6 +161,7 @@ ${downloadName ? ` Downloaded File = ${downloadName}` : ''}
161
161
  cancelSignal: null,
162
162
  updatesDontOverwrite: false,
163
163
  indent: false,
164
+ logLevel,
164
165
  });
165
166
  let doneIn = null;
166
167
  const updateProgress = (newline) => {
@@ -30,6 +30,7 @@ Full logs are available at https://console.cloud.google.com/run?project=${(0, is
30
30
  cancelSignal: null,
31
31
  updatesDontOverwrite: false,
32
32
  indent: false,
33
+ logLevel,
33
34
  });
34
35
  await (() => {
35
36
  return new Promise((resolve) => {
package/dist/index.d.ts CHANGED
@@ -17,13 +17,6 @@ import type { GcpRegion } from './pricing/gcp-regions';
17
17
  * @deprecated Import this from `@remotion/cloudrun/client` instead
18
18
  */
19
19
  declare const renderMediaOnCloudrun: ({ cloudRunUrl, serviceName, region, serveUrl, composition, inputProps, codec, forceBucketName, privacy, outName, updateRenderProgress, jpegQuality, audioCodec, audioBitrate, videoBitrate, encodingMaxRate, encodingBufferSize, proResProfile, x264Preset, crf, pixelFormat, imageFormat, scale, everyNthFrame, numberOfGifLoops, frameRange, envVariables, chromiumOptions, muted, forceWidth, forceHeight, forceFps, forceDurationInFrames, logLevel, delayRenderTimeoutInMilliseconds, concurrency, enforceAudioTrack, preferLossless, offthreadVideoCacheSizeInBytes, colorSpace, downloadBehavior, metadata, renderIdOverride, renderStatusWebhook, offthreadVideoThreads, mediaCacheSizeInBytes, sampleRate, }: RenderMediaOnCloudrunInput) => Promise<{
20
- type: "crash";
21
- cloudRunEndpoint: string;
22
- message: "Service crashed without sending a response. Check the logs in GCP console.";
23
- requestStartTime: string;
24
- requestCrashTime: string;
25
- requestElapsedTimeInSeconds: number;
26
- } | {
27
20
  type: "success";
28
21
  publicUrl?: string | null | undefined;
29
22
  cloudStorageUri: string;
@@ -31,6 +24,13 @@ declare const renderMediaOnCloudrun: ({ cloudRunUrl, serviceName, region, serveU
31
24
  bucketName: string;
32
25
  renderId: string;
33
26
  privacy: "project-private" | "public-read";
27
+ } | {
28
+ type: "crash";
29
+ cloudRunEndpoint: string;
30
+ message: "Service crashed without sending a response. Check the logs in GCP console.";
31
+ requestStartTime: string;
32
+ requestCrashTime: string;
33
+ requestElapsedTimeInSeconds: number;
34
34
  }>;
35
35
  /**
36
36
  * @deprecated Import this from `@remotion/cloudrun/client` instead
@@ -42,6 +42,11 @@ declare const renderStillOnCloudrun: (options: import("./client").RenderStillOnC
42
42
  requestStartTime: string;
43
43
  requestCrashTime: string;
44
44
  requestElapsedTimeInSeconds: number;
45
+ } | {
46
+ type: "error";
47
+ message: string;
48
+ name: string;
49
+ stack: string;
45
50
  } | {
46
51
  type: "success";
47
52
  publicUrl?: string | null | undefined;
@@ -50,11 +55,6 @@ declare const renderStillOnCloudrun: (options: import("./client").RenderStillOnC
50
55
  bucketName: string;
51
56
  renderId: string;
52
57
  privacy: "project-private" | "public-read";
53
- } | {
54
- type: "error";
55
- message: string;
56
- name: string;
57
- stack: string;
58
58
  }>;
59
59
  /**
60
60
  * @deprecated Import this from `@remotion/lambda/client` instead
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "url": "https://github.com/remotion-dev/remotion/tree/main/packages/cloudrun"
4
4
  },
5
5
  "name": "@remotion/cloudrun",
6
- "version": "4.0.457",
6
+ "version": "4.0.459",
7
7
  "description": "Render Remotion videos on Google Cloud Run",
8
8
  "main": "dist/index.js",
9
9
  "sideEffects": false,
@@ -21,17 +21,17 @@
21
21
  "@google-cloud/storage": "7.15.2",
22
22
  "@google-cloud/resource-manager": "5.3.1",
23
23
  "@google-cloud/logging": "11.2.0",
24
- "@remotion/bundler": "4.0.457",
25
- "@remotion/cli": "4.0.457",
26
- "@remotion/renderer": "4.0.457",
24
+ "@remotion/bundler": "4.0.459",
25
+ "@remotion/cli": "4.0.459",
26
+ "@remotion/renderer": "4.0.459",
27
27
  "google-auth-library": "8.7.0",
28
- "remotion": "4.0.457",
28
+ "remotion": "4.0.459",
29
29
  "zod": "4.3.6"
30
30
  },
31
31
  "devDependencies": {
32
- "@remotion/compositor-linux-x64-gnu": "4.0.457",
32
+ "@remotion/compositor-linux-x64-gnu": "4.0.459",
33
33
  "@types/minimist": "1.2.2",
34
- "@remotion/eslint-config-internal": "4.0.457",
34
+ "@remotion/eslint-config-internal": "4.0.459",
35
35
  "eslint": "9.19.0",
36
36
  "@types/node": "20.12.14",
37
37
  "@typescript/native-preview": "7.0.0-dev.20260217.1"