Update api_changes_list_2024.md (#1344)

* Update api_changes_list_2024.md

Document the incompatible changes in WSM API

* Update api_changes_list_2024.md
This commit is contained in:
Mikhail Mazurkevich 2024-07-03 13:26:31 +04:00 committed by GitHub
parent c50da6599d
commit 4738fd14a8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -77,6 +77,12 @@ NOTE: Entries not starting with code quotes (`name`) can be added to document no
`org.apache.sanselan.util` package removed
: `org.apache.sanselan.util.IOUtils` compatibility shim is obsolete; instead, please use JRE methods or `org.apache.commons.io.IOUtils`.
`com.intellij.platform.workspace.storage.url.VirtualFileUrlManager.getOrCreateFromUri(String)` method removed
: Use `com.intellij.platform.workspace.storage.url.VirtualFileUrlManager.getOrCreateFromUrl(String)` instead.
`com.intellij.platform.workspace.jps.entities.DependenciesKt.modifyEntity(MutableEntityStorage, LibraryEntity, Function1)` method removed
: Use `com.intellij.platform.workspace.jps.entities.DependenciesKt.modifyLibraryEntity(MutableEntityStorage, LibraryEntity, Function1)` instead.
### Python Plugin 2024.2
`com.jetbrains.python.PyElementTypes.STATEMENT_LIST` field type changed from `PyElementType` to `IElementType`
: Update code usages.