@remotion/lambda-client 4.0.271 → 4.0.272
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
> @remotion/lambda-client@4.0.
|
|
3
|
+
> @remotion/lambda-client@4.0.272 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[[1m14.39ms[0m[2m][0m Generated.
|
package/dist/esm/index.mjs
CHANGED
|
@@ -917,7 +917,7 @@ var validateFramesPerFunction = ({
|
|
|
917
917
|
throw new TypeError(`The framesPerLambda needs to be at least ${effectiveMinimum}, but is ${framesPerFunction}`);
|
|
918
918
|
}
|
|
919
919
|
};
|
|
920
|
-
var VERSION = "4.0.
|
|
920
|
+
var VERSION = "4.0.272";
|
|
921
921
|
var isColorSupported = () => {
|
|
922
922
|
const env = process.env || {};
|
|
923
923
|
const isForceDisabled = "NO_COLOR" in env;
|
|
@@ -2690,7 +2690,7 @@ var checkCredentials = () => {
|
|
|
2690
2690
|
};
|
|
2691
2691
|
|
|
2692
2692
|
// src/get-credentials.ts
|
|
2693
|
-
import { fromIni } from "@aws-sdk/credential-
|
|
2693
|
+
import { fromIni } from "@aws-sdk/credential-provider-ini";
|
|
2694
2694
|
|
|
2695
2695
|
// src/is-in-lambda.ts
|
|
2696
2696
|
var isInsideLambda = () => Boolean(typeof process !== "undefined" && process?.env?.__RESERVED_IS_INSIDE_REMOTION_LAMBDA);
|
package/dist/get-credentials.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getCredentials = void 0;
|
|
4
|
-
const
|
|
4
|
+
const credential_provider_ini_1 = require("@aws-sdk/credential-provider-ini");
|
|
5
5
|
const get_env_variable_1 = require("./get-env-variable");
|
|
6
6
|
const is_in_lambda_1 = require("./is-in-lambda");
|
|
7
7
|
const getCredentials = () => {
|
|
@@ -9,7 +9,7 @@ const getCredentials = () => {
|
|
|
9
9
|
return undefined;
|
|
10
10
|
}
|
|
11
11
|
if ((0, get_env_variable_1.getEnvVariable)('REMOTION_AWS_PROFILE')) {
|
|
12
|
-
return (0,
|
|
12
|
+
return (0, credential_provider_ini_1.fromIni)({
|
|
13
13
|
profile: (0, get_env_variable_1.getEnvVariable)('REMOTION_AWS_PROFILE'),
|
|
14
14
|
});
|
|
15
15
|
}
|
|
@@ -30,7 +30,7 @@ const getCredentials = () => {
|
|
|
30
30
|
};
|
|
31
31
|
}
|
|
32
32
|
if ((0, get_env_variable_1.getEnvVariable)('AWS_PROFILE')) {
|
|
33
|
-
return (0,
|
|
33
|
+
return (0, credential_provider_ini_1.fromIni)({
|
|
34
34
|
profile: (0, get_env_variable_1.getEnvVariable)('AWS_PROFILE'),
|
|
35
35
|
});
|
|
36
36
|
}
|
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.272",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"sideEffects": false,
|
|
9
9
|
"author": "Jonny Burger <jonny@remotion.dev>",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"@aws-sdk/client-s3": "3.738.0",
|
|
17
17
|
"@aws-sdk/client-service-quotas": "3.738.0",
|
|
18
18
|
"@aws-sdk/client-sts": "3.738.0",
|
|
19
|
-
"@aws-sdk/credential-
|
|
19
|
+
"@aws-sdk/credential-provider-ini": "3.734.0",
|
|
20
20
|
"mime-types": "2.1.34"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"eslint": "9.19.0",
|
|
26
26
|
"next": "15.1.6",
|
|
27
27
|
"@types/mime-types": "2.1.1",
|
|
28
|
-
"@remotion/serverless-client": "4.0.
|
|
29
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
28
|
+
"@remotion/serverless-client": "4.0.272",
|
|
29
|
+
"@remotion/eslint-config-internal": "4.0.272"
|
|
30
30
|
},
|
|
31
31
|
"publishConfig": {
|
|
32
32
|
"access": "public"
|
package/src/get-credentials.ts
CHANGED