Plugin.xml 'stacktrace.fold' is flagged with 'ApiStatus.Internal`

For a plugin supporting the TestBalloon Kotlin test framework, I’m using lines like the following to fold stack traces in the console output:

<stacktrace.fold substring="at de.infix.testBalloon.framework."/>

This triggers the inspection

Usage of API marked with @org.jetbrains.annotations.ApiStatus.Internal. Such API should not be used outside of IntelliJ IDEA project.

Could that API be opened?

If not, what would be the recommended way to achieve the goal of output folding without using this internal API?

It has been fixed in https://youtrack.jetbrains.com/issue/IJPL-172788 please use fresher IDE version to compile your extension, you seems use rather old platform dependency

Indeed, if I build with platformVersion=2025.3.3 the inspection is no longer triggered. Actual compilation will still use platformVersion=2024.3 to provide the largest possible range of supported IDE versions.

Thanks for clarifying!