@remotion/renderer 4.0.463 → 4.0.465

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.
@@ -292,6 +292,10 @@ var printUsefulErrorMessage = (err, logLevel, indent) => {
292
292
  Log.info({ indent, logLevel });
293
293
  Log.info({ indent, logLevel }, "\uD83D\uDCA1 This error indicates that your Lambda concurrency limit is too low. See: https://www.remotion.dev/docs/lambda/troubleshooting/rate-limit");
294
294
  }
295
+ if (err.message.includes("Failed to acquire WebGL2 context") || err.message.includes("Failed to acquire WebGL context")) {
296
+ Log.info({ indent, logLevel });
297
+ Log.info({ indent, logLevel }, "\uD83D\uDCA1 Get help for this issue at https://remotion.dev/docs/troubleshooting/webgl2-context");
298
+ }
295
299
  if (err.message.includes("Error creating WebGL context")) {
296
300
  Log.info({ indent, logLevel });
297
301
  Log.warn({
@@ -302,6 +306,7 @@ var printUsefulErrorMessage = (err, logLevel, indent) => {
302
306
  indent,
303
307
  logLevel
304
308
  }, "\uD83D\uDCA1 Check how it's done at https://www.remotion.dev/docs/chromium-flags#--gl");
309
+ Log.info({ indent, logLevel }, "\uD83D\uDCA1 Get help for this issue at https://remotion.dev/docs/troubleshooting/webgl2-context");
305
310
  }
306
311
  if (err.message.includes("The bucket does not allow ACLs")) {
307
312
  Log.info({ indent, logLevel });
@@ -1,17 +1,13 @@
1
1
  import { createRequire } from "node:module";
2
2
  var __defProp = Object.defineProperty;
3
3
  var __commonJS = (cb, mod) => () => (mod || cb((mod = { exports: {} }).exports, mod), mod.exports);
4
- var __returnValue = (v) => v;
5
- function __exportSetter(name, newValue) {
6
- this[name] = __returnValue.bind(null, newValue);
7
- }
8
4
  var __export = (target, all) => {
9
5
  for (var name in all)
10
6
  __defProp(target, name, {
11
7
  get: all[name],
12
8
  enumerable: true,
13
9
  configurable: true,
14
- set: __exportSetter.bind(all, name)
10
+ set: (newValue) => all[name] = () => newValue
15
11
  });
16
12
  };
17
13
  var __require = /* @__PURE__ */ createRequire(import.meta.url);
@@ -18501,6 +18497,10 @@ var printUsefulErrorMessage = (err, logLevel, indent) => {
18501
18497
  Log.info({ indent, logLevel });
18502
18498
  Log.info({ indent, logLevel }, "\uD83D\uDCA1 This error indicates that your Lambda concurrency limit is too low. See: https://www.remotion.dev/docs/lambda/troubleshooting/rate-limit");
18503
18499
  }
18500
+ if (err.message.includes("Failed to acquire WebGL2 context") || err.message.includes("Failed to acquire WebGL context")) {
18501
+ Log.info({ indent, logLevel });
18502
+ Log.info({ indent, logLevel }, "\uD83D\uDCA1 Get help for this issue at https://remotion.dev/docs/troubleshooting/webgl2-context");
18503
+ }
18504
18504
  if (err.message.includes("Error creating WebGL context")) {
18505
18505
  Log.info({ indent, logLevel });
18506
18506
  Log.warn({
@@ -18511,6 +18511,7 @@ var printUsefulErrorMessage = (err, logLevel, indent) => {
18511
18511
  indent,
18512
18512
  logLevel
18513
18513
  }, "\uD83D\uDCA1 Check how it's done at https://www.remotion.dev/docs/chromium-flags#--gl");
18514
+ Log.info({ indent, logLevel }, "\uD83D\uDCA1 Get help for this issue at https://remotion.dev/docs/troubleshooting/webgl2-context");
18514
18515
  }
18515
18516
  if (err.message.includes("The bucket does not allow ACLs")) {
18516
18517
  Log.info({ indent, logLevel });
@@ -53,6 +53,11 @@ const printUsefulErrorMessage = (err, logLevel, indent) => {
53
53
  logger_1.Log.info({ indent, logLevel });
54
54
  logger_1.Log.info({ indent, logLevel }, '💡 This error indicates that your Lambda concurrency limit is too low. See: https://www.remotion.dev/docs/lambda/troubleshooting/rate-limit');
55
55
  }
56
+ if (err.message.includes('Failed to acquire WebGL2 context') ||
57
+ err.message.includes('Failed to acquire WebGL context')) {
58
+ logger_1.Log.info({ indent, logLevel });
59
+ logger_1.Log.info({ indent, logLevel }, '💡 Get help for this issue at https://remotion.dev/docs/troubleshooting/webgl2-context');
60
+ }
56
61
  if (err.message.includes('Error creating WebGL context')) {
57
62
  logger_1.Log.info({ indent, logLevel });
58
63
  logger_1.Log.warn({
@@ -63,6 +68,7 @@ const printUsefulErrorMessage = (err, logLevel, indent) => {
63
68
  indent,
64
69
  logLevel,
65
70
  }, "💡 Check how it's done at https://www.remotion.dev/docs/chromium-flags#--gl");
71
+ logger_1.Log.info({ indent, logLevel }, '💡 Get help for this issue at https://remotion.dev/docs/troubleshooting/webgl2-context');
66
72
  }
67
73
  if (err.message.includes('The bucket does not allow ACLs')) {
68
74
  logger_1.Log.info({ indent, logLevel });
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.463",
6
+ "version": "4.0.465",
7
7
  "description": "Render Remotion videos using Node.js or Bun",
8
8
  "main": "dist/index.js",
9
9
  "types": "dist/index.d.ts",
@@ -22,11 +22,11 @@
22
22
  },
23
23
  "dependencies": {
24
24
  "execa": "5.1.1",
25
- "remotion": "4.0.463",
26
- "@remotion/streaming": "4.0.463",
25
+ "remotion": "4.0.465",
26
+ "@remotion/streaming": "4.0.465",
27
27
  "source-map": "0.8.0-beta.0",
28
- "ws": "8.17.1",
29
- "@remotion/licensing": "4.0.463"
28
+ "ws": "8.20.1",
29
+ "@remotion/licensing": "4.0.465"
30
30
  },
31
31
  "peerDependencies": {
32
32
  "react": ">=16.8.0",
@@ -40,19 +40,19 @@
40
40
  "react-dom": "19.2.3",
41
41
  "@typescript/native-preview": "7.0.0-dev.20260217.1",
42
42
  "@types/ws": "8.5.10",
43
- "@remotion/example-videos": "4.0.463",
44
- "@remotion/eslint-config-internal": "4.0.463",
43
+ "@remotion/example-videos": "4.0.465",
44
+ "@remotion/eslint-config-internal": "4.0.465",
45
45
  "eslint": "9.19.0",
46
46
  "@types/node": "20.12.14"
47
47
  },
48
48
  "optionalDependencies": {
49
- "@remotion/compositor-darwin-arm64": "4.0.463",
50
- "@remotion/compositor-darwin-x64": "4.0.463",
51
- "@remotion/compositor-linux-arm64-gnu": "4.0.463",
52
- "@remotion/compositor-linux-arm64-musl": "4.0.463",
53
- "@remotion/compositor-linux-x64-gnu": "4.0.463",
54
- "@remotion/compositor-linux-x64-musl": "4.0.463",
55
- "@remotion/compositor-win32-x64-msvc": "4.0.463"
49
+ "@remotion/compositor-darwin-arm64": "4.0.465",
50
+ "@remotion/compositor-darwin-x64": "4.0.465",
51
+ "@remotion/compositor-linux-arm64-gnu": "4.0.465",
52
+ "@remotion/compositor-linux-arm64-musl": "4.0.465",
53
+ "@remotion/compositor-linux-x64-gnu": "4.0.465",
54
+ "@remotion/compositor-linux-x64-musl": "4.0.465",
55
+ "@remotion/compositor-win32-x64-msvc": "4.0.465"
56
56
  },
57
57
  "keywords": [
58
58
  "remotion",