mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-28 01:07:49 +08:00
3.7 KiB
3.7 KiB
Please see Incompatible API Changes on how to verify compatibility.
Changes from API marked with
@Deprecated(forRemoval=true)
or any oforg.jetbrains.annotations.ApiStatus
@Experimental
,@ScheduledForRemoval
, or@Internal
are not listed here, as incompatible changes are to be expected.
{type="note"}
2017.3
IntelliJ Platform 2017.3
com.intellij.internal.statistic.AbstractApplicationUsagesCollector
class removed- This class isn't supposed to be used in regular plugins. Override
com.intellij.internal.statistic.AbstractProjectsUsagesCollector
instead if you're developing an IDE with its own statistics services. com.intellij.internal.statistic.UsagesCollector.doPersistProjectUsages
method removed- This method isn't supposed to be used in regular plugins. There is no need to call this method anymore.
org.apache.sanselan
package removed- Use classes from
org.apache.commons.imaging
instead. com.intellij.psi.MultiplePsiFilesPerDocumentFileViewProvider.getLanguages
abstract method added- An implementation of this class is supposed to have several languages, so you need to explicitly implement the method and return them all.
org.jetbrains.kotlin.idea.configuration.KotlinProjectConfigurator.changeCoroutineConfiguration
abstract method added- You need to implement this method and add the logic for updating the configuration in your build system.
org.jetbrains.kotlin.idea.configuration.KotlinProjectConfigurator.updateLanguageVersion
abstract method added- You need to implement this method and add the logic for updating the configuration in your build system.
org.jetbrains.kotlin.idea.configuration.KotlinProjectConfigurator.addLibraryDependency
abstract method added- You need to implement this method and add the logic for updating the configuration in your build system.
DataGrip and Database Tools Plugin 2017.3
com.intellij.database.dataSource.DataSourceManager
class removed- Use
com.intellij.database.psi.DbPsiFacade
instead. com.intellij.database.dataSource.DataSourceManagerEx
class removed- Use
com.intellij.database.psi.DbPsiFacade
instead. com.intellij.database.dataSource.DataSource
class removed- Use
com.intellij.database.psi.DbDataSource
andcom.intellij.database.model.DatabaseSystem
instead. com.intellij.database.psi.DbDataSource.getModel
method return type changed fromDbElement
-based model toDasObject
-based model- Use
com.intellij.database.psi.DbPsiFacade.findElement
to get the correspondingcom.intellij.database.psi.DbElement
wrapper when needed. com.intellij.database.view.DatabaseView.getTreeBuilder
method removed- Use
LangDataKeys.PSI_ELEMENT_ARRAY.get(event)
to get Database view selection.
PhpStorm and PHP Plugin 2017.3
com.jetbrains.php.lang.psi.elements.Function.getReturnType()
method return type changed fromPsiElement
toPhpReturnType
- Before method had been returning a
com.jetbrains.php.lang.psi.elements.ClassReference
. Now method returnscom.jetbrains.php.lang.psi.elements.PhpReturnType
. MethodReturnType.getClassReference()
can be used if you need just aClassReference
. If you need to get thePhpType
, usecom.jetbrains.php.lang.psi.elements.Function.getReturnType.getType()
method instead.