@remotion/lambda-client 4.0.331 → 4.0.333
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/.turbo/turbo-make.log +2 -2
- package/dist/esm/index.mjs +9 -3
- package/package.json +3 -3
- package/tsconfig.tsbuildinfo +1 -1
package/.turbo/turbo-make.log
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
> @remotion/lambda-client@4.0.
|
|
3
|
+
> @remotion/lambda-client@4.0.333 make /Users/jonathanburger/remotion/packages/lambda-client
|
|
4
4
|
> tsc -d && bun --env-file=../.env.bundle bundle.ts
|
|
5
5
|
|
|
6
|
-
[0m[2m[[
|
|
6
|
+
[0m[2m[[1m340.58ms[0m[2m][0m Generated.
|
package/dist/esm/index.mjs
CHANGED
|
@@ -16679,7 +16679,7 @@ var validateDownloadBehavior = (downloadBehavior) => {
|
|
|
16679
16679
|
}
|
|
16680
16680
|
}
|
|
16681
16681
|
};
|
|
16682
|
-
var VERSION = "4.0.
|
|
16682
|
+
var VERSION = "4.0.333";
|
|
16683
16683
|
var isColorSupported = () => {
|
|
16684
16684
|
const env = process.env || {};
|
|
16685
16685
|
const isForceDisabled = "NO_COLOR" in env;
|
|
@@ -16938,8 +16938,14 @@ var printUsefulErrorMessage = (err, logLevel, indent) => {
|
|
|
16938
16938
|
Log.info({ indent, logLevel }, "\uD83D\uDCA1 Get help for this issue at https://remotion.dev/docs/enametoolong");
|
|
16939
16939
|
}
|
|
16940
16940
|
if (err.message.includes("Member must have value less than or equal to 3008")) {
|
|
16941
|
-
Log.
|
|
16942
|
-
Log.
|
|
16941
|
+
Log.warn({ indent, logLevel });
|
|
16942
|
+
Log.warn({ indent, logLevel }, "\uD83D\uDCA1 This error indicates that you have a AWS account on the free or basic tier or have been limited by your organization.");
|
|
16943
|
+
Log.warn({ indent, logLevel }, "Often times this can be solved by adding a credit card, or if already done, by contacting AWS support.");
|
|
16944
|
+
Log.warn({
|
|
16945
|
+
indent,
|
|
16946
|
+
logLevel
|
|
16947
|
+
}, "Alternatively, you can decrease the memory size of your Lambda function to a value below 3008 MB. See: https://www.remotion.dev/docs/lambda/runtime#core-count--vcpus");
|
|
16948
|
+
Log.warn({ indent, logLevel }, "See also: https://repost.aws/questions/QUKruWYNDYTSmP17jCnIz6IQ/questions/QUKruWYNDYTSmP17jCnIz6IQ/unable-to-set-lambda-memory-over-3008mb");
|
|
16943
16949
|
}
|
|
16944
16950
|
if (err.stack?.includes("TooManyRequestsException: Rate Exceeded.")) {
|
|
16945
16951
|
Log.info({ indent, logLevel });
|
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.
|
|
6
|
+
"version": "4.0.333",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"sideEffects": false,
|
|
9
9
|
"author": "Jonny Burger <jonny@remotion.dev>",
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
"eslint": "9.19.0",
|
|
27
27
|
"next": "15.2.4",
|
|
28
28
|
"@types/mime-types": "2.1.1",
|
|
29
|
-
"@remotion/
|
|
30
|
-
"@remotion/
|
|
29
|
+
"@remotion/eslint-config-internal": "4.0.333",
|
|
30
|
+
"@remotion/serverless-client": "4.0.333"
|
|
31
31
|
},
|
|
32
32
|
"publishConfig": {
|
|
33
33
|
"access": "public"
|