Upgrading to MediaWiki 1361, and getting this error:
Use of $wgParser was deprecated in MediaWiki 1.32. [Called from MediaWiki\Extension\SemanticACL\SemanticACL::hasPermission in /var/www/mediawiki1362/extensions/SemanticACL/SemanticACL.class.php at line 303]
Per the mediawiki manual (Manual:$wgParser), it's a simple change.
I've replaced:
global $wgParser;
with:
$wgParser = new StubObject( 'wgParser', $wgParserConf['class'], array( $wgParserConf ) );
However, I don't know where to send a pull request to.
-Mitch