api_changes_list_2020.md: restore

This commit is contained in:
Yann Cébron 2020-09-23 10:31:40 +02:00
parent 15af021f30
commit 1754296b45

View File

@ -66,14 +66,9 @@ Please see [Incompatible API Changes](/reference_guide/api_changes_list.md) on h
### Changes in IntelliJ Platform 2020.3
The PSI structure of multi-dimensional arrays in Java source files changed (see `com.intellij.psi.PsiTypeElement`)
: Now the children are flattened: brackets for all the dimensions are direct children of the `PsiTypeElement` that represent the multi-dimensional array. This change doesn't break source or binary compatibility but may produce behavioral changes in the code that traverses the tree of Java source files.
The `com.intellij.psi.PsiAnnotation.getOwner` method now returns `PsiType` instead of `PsiTypeElement` for type annotations in Java source files
: This change supports identifying whether a type annotation is attached to an inner class or a particular dimension of a multi-dimensional array.
This change doesn't break source or binary compatibility but may produce behavioral changes for callers.
`com.intellij.openapi.application.NonBlockingReadAction.finishOnUiThread` method parameter type changed from ``Consumer<T>`` to ``Consumer<? super T>``
: This may break source-compatibility with inheritors written in Kotlin.
### Changes in Java Plugin 2019.3
The PSI structure of multi-dimensional arrays in Java source files changed (see `com.intellij.psi.PsiTypeElement`)
@ -82,6 +77,7 @@ The PSI structure of multi-dimensional arrays in Java source files changed (see
The `com.intellij.psi.PsiAnnotation.getOwner` method now returns `PsiType` instead of `PsiTypeElement` for type annotations in Java source files
: This change supports identifying whether a type annotation is attached to an inner class or a particular dimension of a multi-dimensional array.
This change doesn't break source or binary compatibility but may produce behavioral changes for callers.
### Changes in Python Plugin 2020.3
All parameters in `com.jetbrains.python.psi.PyElementVisitor` marked `@NotNull`