remotion_lambda 4.0.398 → 4.0.400

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0e73cca84e5ce708bb3cf31f1802ee81ce1ef1b88d716d82437fdd02ad9ac00d
4
- data.tar.gz: 9aeb8e8a3421ff230bc461de481af25144c10e13cd7f0f9f4028103e04723f68
3
+ metadata.gz: 64d658ac6745e143549ad53ebfc48bd12c58958e9fbc9712dfb0e57dc5fb42a9
4
+ data.tar.gz: 0b15c07f1914f6bd51f208e0723be06509cdc732457116bedd68bf3fc2b17257
5
5
  SHA512:
6
- metadata.gz: '08db201768a6a786540a3c9cecad1d2f82ce163b2059d841f537658bf331fac2022e6b4a87349e89a57d8baae50481e2e2b386d4896c3a8a50ff7225f8494dbe'
7
- data.tar.gz: baaa3c9773e8b15f6d791f31437eb2148d1b5ca578fb9f52e74b619812cd0b24cd9629a8bd896143536b483deca2e21d3183a98016dad6a3d07cc983cdc83562
6
+ metadata.gz: c06d4044f051cda46c76a55528a8a77b33e633e5ea27ac373666855ed2b4d0641a176204ac60020641a68649a099af4bb63677a46cb1624ce4678f07be4ed20b
7
+ data.tar.gz: 0e7ddba356a4b8c53d365f430cda7a6b46d7abb417987abed57b89bbdae379d04f9397f9d5abf01fd6b787c93c004517a987c659abbed53ac9dee83064c725bc
@@ -21,6 +21,7 @@ def get_render_media_on_lambda_payload(
21
21
  force_path_style: false,
22
22
  force_width: nil,
23
23
  api_key: nil,
24
+ license_key: nil,
24
25
  frame_range: nil,
25
26
  frames_per_lambda: nil,
26
27
  image_format: "jpeg",
@@ -50,6 +51,10 @@ def get_render_media_on_lambda_payload(
50
51
  chromium_options: {}
51
52
  )
52
53
 
54
+ if api_key != nil
55
+ warn "[DEPRECATED] The 'api_key' parameter is deprecated and will be removed in a future version. Please use 'license_key' instead."
56
+ end
57
+
53
58
  payload = {
54
59
  audioBitrate: audio_bitrate,
55
60
  audioCodec: audio_codec,
@@ -71,6 +76,7 @@ payload = {
71
76
  forcePathStyle: force_path_style,
72
77
  forceWidth: force_width,
73
78
  apiKey: api_key,
79
+ licenseKey: license_key,
74
80
  frameRange: frame_range,
75
81
  framesPerLambda: frames_per_lambda,
76
82
  imageFormat: image_format,
@@ -10,6 +10,7 @@ def get_render_still_on_lambda_payload(
10
10
  force_path_style: false,
11
11
  force_width: nil,
12
12
  api_key: nil,
13
+ license_key: nil,
13
14
  image_format: "jpeg",
14
15
  input_props: {},
15
16
  jpeg_quality: 80,
@@ -30,6 +31,10 @@ def get_render_still_on_lambda_payload(
30
31
  frame: 0
31
32
  )
32
33
 
34
+ if api_key != nil
35
+ warn "[DEPRECATED] The 'api_key' parameter is deprecated and will be removed in a future version. Please use 'license_key' instead."
36
+ end
37
+
33
38
  payload = {
34
39
  composition: composition,
35
40
  chromiumOptions: chromium_options,
@@ -40,6 +45,7 @@ payload = {
40
45
  forcePathStyle: force_path_style,
41
46
  forceWidth: force_width,
42
47
  apiKey: api_key,
48
+ licenseKey: license_key,
43
49
  imageFormat: image_format,
44
50
  inputProps: {
45
51
  type: "payload",
@@ -1 +1 @@
1
- VERSION = "4.0.398"
1
+ VERSION = "4.0.400"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: remotion_lambda
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.398
4
+ version: 4.0.400
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonny Burger
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-12-31 00:00:00.000000000 Z
11
+ date: 2026-01-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-lambda