diff --git a/docs/tutorial/code-signing.md b/docs/tutorial/code-signing.md index f8e34468dea..d591fe617c8 100644 --- a/docs/tutorial/code-signing.md +++ b/docs/tutorial/code-signing.md @@ -88,14 +88,15 @@ without meaning any harm: com.apple.security.cs.allow-jit - com.apple.security.cs.allow-unsigned-executable-memory - com.apple.security.cs.debugger ``` +Note that up until Electron 12, the `com.apple.security.cs.allow-unsigned-executable-memory` entitlement was required +as well. However, it should not be used anymore if it can be avoided. + To see all of this in action, check out Electron Fiddle's source code, [especially its `electron-forge` configuration file](https://github.com/electron/fiddle/blob/master/forge.config.js). @@ -165,14 +166,15 @@ without meaning any harm: com.apple.security.cs.allow-jit - com.apple.security.cs.allow-unsigned-executable-memory - com.apple.security.cs.debugger ``` +Up until Electron 12, the `com.apple.security.cs.allow-unsigned-executable-memory` entitlement was required +as well. However, it should not be used anymore if it can be avoided. + ## Mac App Store See the [Mac App Store Guide].