@remotion/lambda 4.0.273 → 4.0.275

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.
@@ -49,11 +49,11 @@ const makeLayerPublic = async () => {
49
49
  const { Version, LayerArn } = await lambda_client_1.LambdaClientInternals.getLambdaClient(region).send(new client_lambda_1.PublishLayerVersionCommand({
50
50
  Content: {
51
51
  S3Bucket: getBucketName(region),
52
- S3Key: `remotion-layer-${layer}-v12-arm64.zip`,
52
+ S3Key: `remotion-layer-${layer}-v13-arm64.zip`,
53
53
  },
54
54
  LayerName: layerName,
55
55
  LicenseInfo: layer === 'chromium'
56
- ? 'Chromium 123.0.6312.86, compiled from source. Read Chromium License: https://chromium.googlesource.com/chromium/src/+/refs/heads/main/LICENSE'
56
+ ? 'Chromium 133.0.6943.141, compiled from source. Read Chromium License: https://chromium.googlesource.com/chromium/src/+/refs/heads/main/LICENSE'
57
57
  : layer === 'emoji-apple'
58
58
  ? 'Apple Emojis (https://github.com/samuelngs/apple-emoji-linux). For educational purposes only - Apple is a trademark of Apple Inc., registered in the U.S. and other countries.'
59
59
  : layer === 'emoji-google'
package/dist/cli/log.d.ts CHANGED
@@ -1,13 +1,13 @@
1
1
  export declare const Log: {
2
- trace: (options: import("@remotion/renderer").LogOptions & {
2
+ trace: (options: import("@remotion/renderer/dist/logger").LogOptions & {
3
3
  tag?: string;
4
4
  }, ...args: Parameters<typeof console.log>) => boolean | void;
5
- verbose: (options: import("@remotion/renderer").LogOptions & {
5
+ verbose: (options: import("@remotion/renderer/dist/logger").LogOptions & {
6
6
  tag?: string;
7
7
  }, ...args: Parameters<typeof console.log>) => boolean | void;
8
8
  info: (options: import("@remotion/renderer").LogOptions, ...args: Parameters<typeof console.log>) => boolean | void;
9
- warn: (options: import("@remotion/renderer").LogOptions, ...args: Parameters<typeof console.log>) => boolean | void;
10
- error: (options: import("@remotion/renderer").LogOptions & {
9
+ warn: (options: import("@remotion/renderer/dist/logger").LogOptions, ...args: Parameters<typeof console.log>) => boolean | void;
10
+ error: (options: import("@remotion/renderer/dist/logger").LogOptions & {
11
11
  tag?: string;
12
12
  }, ...args: Parameters<typeof console.log>) => boolean | void;
13
13
  };