@remotion/lambda-client 4.0.278 → 4.0.280

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.
@@ -1,6 +1,6 @@
1
1
 
2
2
  
3
- > @remotion/lambda-client@4.0.278 make /Users/jonathanburger/remotion/packages/lambda-client
3
+ > @remotion/lambda-client@4.0.280 make /Users/jonathanburger/remotion/packages/lambda-client
4
4
  > tsc -d && bun --env-file=../.env.bundle bundle.ts
5
5
 
6
- [192.26ms] Generated.
6
+ [79.82ms] Generated.
@@ -16897,7 +16897,7 @@ var validateFramesPerFunction = ({
16897
16897
  throw new TypeError(`The framesPerLambda needs to be at least ${effectiveMinimum}, but is ${framesPerFunction}`);
16898
16898
  }
16899
16899
  };
16900
- var VERSION = "4.0.278";
16900
+ var VERSION = "4.0.280";
16901
16901
  var isColorSupported = () => {
16902
16902
  const env = process.env || {};
16903
16903
  const isForceDisabled = "NO_COLOR" in env;
@@ -17206,6 +17206,14 @@ var printUsefulErrorMessage = (err, logLevel, indent) => {
17206
17206
  Log.info({ indent, logLevel }, "\uD83D\uDCA1 On Lambda, one reason this could happen is that Chrome is rejecting an asset to be loaded when it is running low on disk space.");
17207
17207
  Log.info({ indent, logLevel }, "Try increasing the disk size of your Lambda function.");
17208
17208
  }
17209
+ if (err.message.includes("Invalid value specified for cpu")) {
17210
+ Log.info({ indent, logLevel });
17211
+ Log.info({ indent, logLevel }, "\uD83D\uDCA1 This error indicates that your GCP account does have a limit. Try setting `--maxInstances=5` / `maxInstances: 5` when deploying this service.");
17212
+ Log.info({
17213
+ indent,
17214
+ logLevel
17215
+ });
17216
+ }
17209
17217
  };
17210
17218
  var wrapWithErrorHandling = (fn) => {
17211
17219
  return async (...args) => {
@@ -18244,7 +18252,7 @@ var makeTimeoutMessage = ({
18244
18252
  "",
18245
18253
  `Consider increasing the timeout of your function.`,
18246
18254
  `▸ You can use the "--timeout" parameter when deploying a function via CLI, or the "timeoutInSeconds" parameter when using the deployFunction() API.`,
18247
- `${DOCS_URL}/docs/lambda/cli/functions#deploy`,
18255
+ `${DOCS_URL}/docs/lambda/cli/functions/deploy`,
18248
18256
  "",
18249
18257
  "▸ Visit the logs for the main function:",
18250
18258
  cloudWatchLaunchUrl,
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "url": "https://github.com/remotion-dev/remotion/tree/main/packages/lambda-client"
4
4
  },
5
5
  "name": "@remotion/lambda-client",
6
- "version": "4.0.278",
6
+ "version": "4.0.280",
7
7
  "main": "dist/index.js",
8
8
  "sideEffects": false,
9
9
  "author": "Jonny Burger <jonny@remotion.dev>",
@@ -24,10 +24,10 @@
24
24
  "@types/express": "^5.0.0",
25
25
  "express": "4.21.0",
26
26
  "eslint": "9.19.0",
27
- "next": "15.1.6",
27
+ "next": "15.2.3",
28
28
  "@types/mime-types": "2.1.1",
29
- "@remotion/serverless-client": "4.0.278",
30
- "@remotion/eslint-config-internal": "4.0.278"
29
+ "@remotion/serverless-client": "4.0.280",
30
+ "@remotion/eslint-config-internal": "4.0.280"
31
31
  },
32
32
  "publishConfig": {
33
33
  "access": "public"
@@ -56,10 +56,10 @@
56
56
  "typesVersions": {
57
57
  ">=1.0": {
58
58
  "constants": [
59
- "dist/constants.d.ts"
59
+ "./dist/constants.d.ts"
60
60
  ],
61
61
  "regions": [
62
- "dist/regions.d.ts"
62
+ "./dist/regions.d.ts"
63
63
  ]
64
64
  }
65
65
  },