Document API breakages in Database Tools and SQL Plugin (#777)

Both changes break only one small plugin https://plugins.jetbrains.com/plugin/13886-copy-as-sql
As already mentioned in #775 I plan to write to plugin's author
This commit is contained in:
Liudmila Kornilova 2022-05-23 11:32:34 +02:00 committed by GitHub
parent e0ee7ec010
commit 5dc025be6e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -195,3 +195,9 @@ Method `com.intellij.grazie.GrazieBundle.message(key, parameters)` marked static
`com.intellij.database.extractors.ObjectFormatter.getPlainValue(Object, DataConsumer.Column, Dbms)` method removed
: Method was removed because we refactor table editor API. It will not depend on Dbms anymore. Please use `ObjectFormatter.objectToString` instead.
`com.intellij.database.DatabaseDataKeys.DATA_SOURCE_KEY` field removed
: `DatabaseDataKeys` no longer extends `DatabaseDataKeysCore` because `DatabaseDataKeys` was moved to a separate module for table editor. `DATA_SOURCE_KEY` now has to be accessed directly via `DatabaseDataKeysCore`.
`com.intellij.database.extractors.ObjectFormatter` class now interface
: Method was removed because we refactor table editor API. New API will allow to use table editor in other products and fully customize it.