From 1a90c238081c5bec33a4918becf91222d833bffc Mon Sep 17 00:00:00 2001 From: Ilya Kirillov Date: Mon, 13 Nov 2023 11:00:22 +0100 Subject: [PATCH] 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 --- reference_guide/api_changes_list_2023.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/reference_guide/api_changes_list_2023.md b/reference_guide/api_changes_list_2023.md index c279dad89..c2e67223e 100644 --- a/reference_guide/api_changes_list_2023.md +++ b/reference_guide/api_changes_list_2023.md @@ -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` : 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 `org.intellij.plugins.markdown.editor.images` package removed