Nikolay Chashnikov b7cb1e5926 Update api_changes_list.md
Mention that statistics classes aren't supposed to be used in regular plugins.
2017-10-13 20:35:25 +03:00

2.9 KiB

title
Incompatible Changes in IntelliJ Platform and Plugins API

Changes in IntelliJ Platform 2017.3

Change How to deal with it
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

Changes in IntelliJ Platform 2016.3

Change How to deal with it
ApplicationListener.afterWriteActionFinished abstract method added Implement this method or extend com.intellij.openapi.application.ApplicationAdapter class instead of implementing the interface

Changes in IntelliJ Platform 2016.2

Change How to deal with it
com.intellij.util.net.HttpConfigurable.PROXY_LOGIN field removed Use com.intellij.util.net.HttpConfigurable.getProxyLogin() instead
com.intellij.util.net.HttpConfigurable.PROXY_PASSWORD_CRYPT field removed Use com.intellij.util.net.HttpConfigurable.getPlainProxyPassword() instead
org.jetbrains.asm4 package removed Use classes from org.jetbrains.org.objectweb.asm package instead