joshkho, here dirty fix for shortcoder plugin
edit wp-includes/shortcodes.php
in function do_shortcode locate :
// Find all registered tag names in $content.
preg_match_all( ‘@\[([^<>&/\[\]\x00-\x20]++)@’, $content, $matches );
change to
preg_match_all( ‘@\[([^<>&/\[\]\x00-\x20:]++)@’, $content, $matches );
and all [sc:…] works again
maybe someone known better solution?