You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Breaking:** Stopped transpiling webhook integration scripts with Babel. Scripts now run as-is inside `isolated-vm` (modern V8).
6
+
7
+
Class method bodies are now in strict mode per the ES2015 spec. Scripts that relied on sloppy-mode behaviors provided by the previous Babel transpilation must be updated:
8
+
9
+
-**Implicit globals** — `msg = buildMessage(...)` inside a class method now throws `ReferenceError`. Add `let`, `const`, or `var`.
10
+
-**`this` in nested regular functions** — `function helper() { this.JSON.stringify(...) }` now has `this === undefined` instead of `globalThis`. Use arrow functions or pass the dependency explicitly.
11
+
-**`arguments.callee`** — Throws `TypeError`. Use a named function expression instead.
12
+
-**Octal literals** — `0777` is now a `SyntaxError`. Use `0o777`.
13
+
-**Duplicate parameter names** — `function(a, a) {}` is now a `SyntaxError`.
0 commit comments