@remotion/lambda 3.2.12-crf.5 → 3.2.12-crf.6

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.
@@ -6,6 +6,7 @@ const get_functions_1 = require("../api/get-functions");
6
6
  const constants_1 = require("../shared/constants");
7
7
  const function_zip_path_1 = require("../shared/function-zip-path");
8
8
  const get_account_id_1 = require("../shared/get-account-id");
9
+ const lambda_version_string_1 = require("../shared/lambda-version-string");
9
10
  const validate_architecture_1 = require("../shared/validate-architecture");
10
11
  const validate_aws_region_1 = require("../shared/validate-aws-region");
11
12
  const validate_custom_role_arn_1 = require("../shared/validate-custom-role-arn");
@@ -37,7 +38,7 @@ const deployFunction = async (options) => {
37
38
  (0, validate_disk_size_in_mb_1.validateDiskSizeInMb)(diskSizeInMb);
38
39
  (0, validate_custom_role_arn_1.validateCustomRoleArn)(options.customRoleArn);
39
40
  const fnNameRender = [
40
- `${constants_1.RENDER_FN_PREFIX}${version_1.VERSION.replace(/\./g, '-')}`,
41
+ `${constants_1.RENDER_FN_PREFIX}${lambda_version_string_1.LAMBDA_VERSION_STRING}`,
41
42
  `mem${options.memorySizeInMb}mb`,
42
43
  `disk${diskSizeInMb}mb`,
43
44
  `${options.timeoutInSeconds}sec`,
@@ -6,9 +6,6 @@ export declare const planFrameRanges: ({ framesPerLambda, optimization, shouldUs
6
6
  frameRange: [number, number];
7
7
  everyNthFrame: number;
8
8
  }) => {
9
- chunks: [
10
- number,
11
- number
12
- ][];
9
+ chunks: [number, number][];
13
10
  didUseOptimization: boolean;
14
11
  };
@@ -0,0 +1 @@
1
+ export declare const LAMBDA_VERSION_STRING: string;
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.LAMBDA_VERSION_STRING = void 0;
4
+ const version_1 = require("remotion/version");
5
+ exports.LAMBDA_VERSION_STRING = version_1.VERSION.replace(/\./g, '-').replace(/\+/g, '-');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remotion/lambda",
3
- "version": "3.2.12-crf.5+14dc380ad",
3
+ "version": "3.2.12-crf.6+134d2182f",
4
4
  "description": "Distributed renderer for Remotion based on AWS Lambda",
5
5
  "main": "dist/index.js",
6
6
  "sideEffects": false,
@@ -32,12 +32,12 @@
32
32
  "@aws-sdk/client-service-quotas": "3.58.0",
33
33
  "@aws-sdk/lib-storage": "3.58.0",
34
34
  "@aws-sdk/s3-request-presigner": "3.58.0",
35
- "@remotion/bundler": "3.2.12-crf.5+14dc380ad",
36
- "@remotion/cli": "3.2.12-crf.5+14dc380ad",
37
- "@remotion/renderer": "3.2.12-crf.5+14dc380ad",
35
+ "@remotion/bundler": "3.2.12-crf.6+134d2182f",
36
+ "@remotion/cli": "3.2.12-crf.6+134d2182f",
37
+ "@remotion/renderer": "3.2.12-crf.6+134d2182f",
38
38
  "aws-policies": "^1.0.1",
39
39
  "mime-types": "2.1.34",
40
- "remotion": "3.2.12-crf.5+14dc380ad"
40
+ "remotion": "3.2.12-crf.6+134d2182f"
41
41
  },
42
42
  "peerDependencies": {
43
43
  "react": ">=16.8.0",
@@ -62,5 +62,5 @@
62
62
  "publishConfig": {
63
63
  "access": "public"
64
64
  },
65
- "gitHead": "14dc380ad148868c35c5612f48eaf8e78ab42d9c"
65
+ "gitHead": "134d2182f5a94143835795bfcb2fb42476358c42"
66
66
  }
Binary file