@remotion/renderer 4.0.448 → 4.0.450

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.
@@ -74,21 +74,18 @@ const checkBunVersion = () => {
74
74
  throw new Error(`Remotion requires at least Bun ${no_react_1.NoReactInternals.MIN_BUN_VERSION}. You currently have ${Bun.version}. Update your Bun version to ${no_react_1.NoReactInternals.MIN_BUN_VERSION} to use Remotion.`);
75
75
  }
76
76
  };
77
- // Darwin kernel major version 22 = macOS 13 (Ventura)
78
- const MIN_DARWIN_VERSION = 22;
79
- const MIN_MACOS_DISPLAY_VERSION = '13 (Ventura)';
77
+ // Darwin kernel major version 24 = macOS 15 (Sequoia)
78
+ const MIN_DARWIN_VERSION = 24;
79
+ const MIN_MACOS_DISPLAY_VERSION = '15 (Sequoia)';
80
80
  const checkMacOSVersion = (logLevel, indent) => {
81
81
  if (process.platform !== 'darwin') {
82
82
  return;
83
83
  }
84
- const darwinRelease = node_os_1.default.release();
85
- const majorVersion = Number(darwinRelease.split('.')[0]);
86
- if (Number.isNaN(majorVersion)) {
84
+ const majorVersion = Number(node_os_1.default.release().split('.')[0]);
85
+ if (Number.isNaN(majorVersion) || majorVersion >= MIN_DARWIN_VERSION) {
87
86
  return;
88
87
  }
89
- if (majorVersion < MIN_DARWIN_VERSION) {
90
- logger_1.Log.warn({ logLevel, indent }, `Your macOS version is older than macOS ${MIN_MACOS_DISPLAY_VERSION}. Some features such as rendering may not work.`);
91
- }
88
+ logger_1.Log.warn({ logLevel, indent }, `Your macOS version is older than macOS ${MIN_MACOS_DISPLAY_VERSION}. Some features such as rendering may not work.`);
92
89
  };
93
90
  const checkRuntimeVersion = (logLevel, indent) => {
94
91
  if (typeof Bun === 'undefined') {
@@ -324,7 +324,7 @@ var printUsefulErrorMessage = (err, logLevel, indent) => {
324
324
  Log.info({ indent, logLevel }, "\uD83D\uDCA1 Get help for this issue: https://github.com/remotion-dev/remotion/issues/2439");
325
325
  }
326
326
  if (err.message.includes("AVCaptureDeviceTypeContinuityCamera")) {
327
- Log.info({ indent, logLevel }, "\uD83D\uDCA1 Remotion requires macOS 13 (Ventura) or later.");
327
+ Log.info({ indent, logLevel }, "\uD83D\uDCA1 Remotion requires macOS 15 (Sequoia) or later.");
328
328
  Log.info({ indent, logLevel }, "\uD83D\uDCA1 Get help for this issue: https://github.com/remotion-dev/remotion/issues/7027");
329
329
  }
330
330
  if (err.message.includes("EBADF")) {
@@ -4139,20 +4139,17 @@ var checkBunVersion = () => {
4139
4139
  throw new Error(`Remotion requires at least Bun ${NoReactInternals3.MIN_BUN_VERSION}. You currently have ${Bun.version}. Update your Bun version to ${NoReactInternals3.MIN_BUN_VERSION} to use Remotion.`);
4140
4140
  }
4141
4141
  };
4142
- var MIN_DARWIN_VERSION = 22;
4143
- var MIN_MACOS_DISPLAY_VERSION = "13 (Ventura)";
4142
+ var MIN_DARWIN_VERSION = 24;
4143
+ var MIN_MACOS_DISPLAY_VERSION = "15 (Sequoia)";
4144
4144
  var checkMacOSVersion = (logLevel, indent) => {
4145
4145
  if (process.platform !== "darwin") {
4146
4146
  return;
4147
4147
  }
4148
- const darwinRelease = os2.release();
4149
- const majorVersion = Number(darwinRelease.split(".")[0]);
4150
- if (Number.isNaN(majorVersion)) {
4148
+ const majorVersion = Number(os2.release().split(".")[0]);
4149
+ if (Number.isNaN(majorVersion) || majorVersion >= MIN_DARWIN_VERSION) {
4151
4150
  return;
4152
4151
  }
4153
- if (majorVersion < MIN_DARWIN_VERSION) {
4154
- Log.warn({ logLevel, indent }, `Your macOS version is older than macOS ${MIN_MACOS_DISPLAY_VERSION}. Some features such as rendering may not work.`);
4155
- }
4152
+ Log.warn({ logLevel, indent }, `Your macOS version is older than macOS ${MIN_MACOS_DISPLAY_VERSION}. Some features such as rendering may not work.`);
4156
4153
  };
4157
4154
  var checkRuntimeVersion = (logLevel, indent) => {
4158
4155
  if (typeof Bun === "undefined") {
@@ -5358,7 +5355,7 @@ var getAvailableMemory = (logLevel) => {
5358
5355
  Log.warn({ indent: false, logLevel }, `Memory reported by /proc/meminfo: ${(_procInfo / 1024 / 1024).toFixed(2)} MB`);
5359
5356
  }
5360
5357
  Log.warn({ indent: false, logLevel }, `Memory reported by Node: ${(nodeMemory / 1024 / 1024).toFixed(2)} MB`);
5361
- Log.warn({ indent: false, logLevel }, "You might have inadvertenly set the --memory flag of `docker run` to a value that is higher than the global Docker memory limit.");
5358
+ Log.warn({ indent: false, logLevel }, "You might have inadvertently set the --memory flag of `docker run` to a value that is higher than the global Docker memory limit.");
5362
5359
  Log.warn({ indent: false, logLevel }, "Using the lower amount of memory for calculation.");
5363
5360
  }
5364
5361
  return Math.min(nodeMemory, cgroupMemory);
@@ -16934,7 +16931,7 @@ var printUsefulErrorMessage = (err, logLevel, indent) => {
16934
16931
  Log.info({ indent, logLevel }, "\uD83D\uDCA1 Get help for this issue: https://github.com/remotion-dev/remotion/issues/2439");
16935
16932
  }
16936
16933
  if (err.message.includes("AVCaptureDeviceTypeContinuityCamera")) {
16937
- Log.info({ indent, logLevel }, "\uD83D\uDCA1 Remotion requires macOS 13 (Ventura) or later.");
16934
+ Log.info({ indent, logLevel }, "\uD83D\uDCA1 Remotion requires macOS 15 (Sequoia) or later.");
16938
16935
  Log.info({ indent, logLevel }, "\uD83D\uDCA1 Get help for this issue: https://github.com/remotion-dev/remotion/issues/7027");
16939
16936
  }
16940
16937
  if (err.message.includes("EBADF")) {
@@ -30,7 +30,7 @@ const getAvailableMemory = (logLevel) => {
30
30
  logger_1.Log.warn({ indent: false, logLevel }, `Memory reported by /proc/meminfo: ${(_procInfo / 1024 / 1024).toFixed(2)} MB`);
31
31
  }
32
32
  logger_1.Log.warn({ indent: false, logLevel }, `Memory reported by Node: ${(nodeMemory / 1024 / 1024).toFixed(2)} MB`);
33
- logger_1.Log.warn({ indent: false, logLevel }, 'You might have inadvertenly set the --memory flag of `docker run` to a value that is higher than the global Docker memory limit.');
33
+ logger_1.Log.warn({ indent: false, logLevel }, 'You might have inadvertently set the --memory flag of `docker run` to a value that is higher than the global Docker memory limit.');
34
34
  logger_1.Log.warn({ indent: false, logLevel }, 'Using the lower amount of memory for calculation.');
35
35
  }
36
36
  return Math.min(nodeMemory, cgroupMemory);
@@ -87,7 +87,7 @@ const printUsefulErrorMessage = (err, logLevel, indent) => {
87
87
  logger_1.Log.info({ indent, logLevel }, '💡 Get help for this issue: https://github.com/remotion-dev/remotion/issues/2439');
88
88
  }
89
89
  if (err.message.includes('AVCaptureDeviceTypeContinuityCamera')) {
90
- logger_1.Log.info({ indent, logLevel }, '💡 Remotion requires macOS 13 (Ventura) or later.');
90
+ logger_1.Log.info({ indent, logLevel }, '💡 Remotion requires macOS 15 (Sequoia) or later.');
91
91
  logger_1.Log.info({ indent, logLevel }, '💡 Get help for this issue: https://github.com/remotion-dev/remotion/issues/7027');
92
92
  }
93
93
  if (err.message.includes('EBADF')) {
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "url": "https://github.com/remotion-dev/remotion/tree/main/packages/renderer"
4
4
  },
5
5
  "name": "@remotion/renderer",
6
- "version": "4.0.448",
6
+ "version": "4.0.450",
7
7
  "description": "Render Remotion videos using Node.js or Bun",
8
8
  "main": "dist/index.js",
9
9
  "types": "dist/index.d.ts",
@@ -24,11 +24,11 @@
24
24
  "dependencies": {
25
25
  "execa": "5.1.1",
26
26
  "extract-zip": "2.0.1",
27
- "remotion": "4.0.448",
28
- "@remotion/streaming": "4.0.448",
27
+ "remotion": "4.0.449",
28
+ "@remotion/streaming": "4.0.449",
29
29
  "source-map": "^0.8.0-beta.0",
30
30
  "ws": "8.17.1",
31
- "@remotion/licensing": "4.0.448"
31
+ "@remotion/licensing": "4.0.449"
32
32
  },
33
33
  "peerDependencies": {
34
34
  "react": ">=16.8.0",
@@ -42,19 +42,19 @@
42
42
  "react-dom": "19.2.3",
43
43
  "@typescript/native-preview": "7.0.0-dev.20260217.1",
44
44
  "@types/ws": "8.5.10",
45
- "@remotion/example-videos": "4.0.448",
46
- "@remotion/eslint-config-internal": "4.0.448",
45
+ "@remotion/example-videos": "4.0.449",
46
+ "@remotion/eslint-config-internal": "4.0.449",
47
47
  "eslint": "9.19.0",
48
48
  "@types/node": "20.12.14"
49
49
  },
50
50
  "optionalDependencies": {
51
- "@remotion/compositor-darwin-arm64": "4.0.448",
52
- "@remotion/compositor-darwin-x64": "4.0.448",
53
- "@remotion/compositor-linux-arm64-gnu": "4.0.448",
54
- "@remotion/compositor-linux-arm64-musl": "4.0.448",
55
- "@remotion/compositor-linux-x64-gnu": "4.0.448",
56
- "@remotion/compositor-linux-x64-musl": "4.0.448",
57
- "@remotion/compositor-win32-x64-msvc": "4.0.448"
51
+ "@remotion/compositor-darwin-arm64": "4.0.449",
52
+ "@remotion/compositor-darwin-x64": "4.0.449",
53
+ "@remotion/compositor-linux-arm64-gnu": "4.0.449",
54
+ "@remotion/compositor-linux-arm64-musl": "4.0.449",
55
+ "@remotion/compositor-linux-x64-gnu": "4.0.449",
56
+ "@remotion/compositor-linux-x64-musl": "4.0.449",
57
+ "@remotion/compositor-win32-x64-msvc": "4.0.449"
58
58
  },
59
59
  "keywords": [
60
60
  "remotion",