Document some incompatible Kotlin plugin changes for 2023.3 (#1147)

* Document some incompatible Kotlin plugin changes for 2023.3

`org.jetbrains.kotlin.idea.compiler.configuration.KotlinIdePluginVersion` and `org.jetbrains.kotlin.idea.compiler.configuration.KotlinIdePluginVersion.Companion` internal API is removed.

* Remove the wording about "Internal API" as this related to a specific concept in IJ Platform
This commit is contained in:
Ilya Kirillov 2023-11-13 11:00:22 +01:00 committed by GitHub
parent 16f553571b
commit 1a90c23808
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -189,6 +189,13 @@ Fragment builder functions from `ExternalSystemRunConfigurationUtil` file moved
`org.jetbrains.kotlin.idea.actions.JavaToKotlinAction.Companion` class renamed to `org.jetbrains.kotlin.idea.actions.JavaToKotlinAction.Handler` `org.jetbrains.kotlin.idea.actions.JavaToKotlinAction.Companion` class renamed to `org.jetbrains.kotlin.idea.actions.JavaToKotlinAction.Handler`
: In order to not load additional code eagerly on action instantiation. : In order to not load additional code eagerly on action instantiation.
`org.jetbrains.kotlin.idea.compiler.configuration.KotlinIdePluginVersion.Companion` class removed
: Now, the Kotlin plugin version does not include a compiler version, so the class is unnecessary. Use `com.intellij.openapi.application.ApplicationInfo` to get the IntelliJ version.
`org.jetbrains.kotlin.idea.compiler.configuration.KotlinIdePluginVersion` class removed
: Now, the Kotlin plugin version does not include a compiler version, so the class is unnecessary. Use `com.intellij.openapi.application.ApplicationInfo` to get the IntelliJ version.
### Markdown Plugin 2023.3 ### Markdown Plugin 2023.3
`org.intellij.plugins.markdown.editor.images` package removed `org.intellij.plugins.markdown.editor.images` package removed