From 2d9a1696445de4a27d293d305d8aeee3926e4f77 Mon Sep 17 00:00:00 2001 From: Liudmila Kornilova Date: Mon, 14 Aug 2023 17:43:16 +0200 Subject: [PATCH] Document parameter type change in DataGrid.showCell (#1096) The method is used only by one plugin https://plugins.jetbrains.com/plugin/20941-tree-view-by-default And that plugin already was already recompiled and new version was released --- reference_guide/api_changes_list_2023.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/reference_guide/api_changes_list_2023.md b/reference_guide/api_changes_list_2023.md index 58cd9c760..debb270db 100644 --- a/reference_guide/api_changes_list_2023.md +++ b/reference_guide/api_changes_list_2023.md @@ -99,6 +99,9 @@ Specify `displayName`/`key` for `Configurable` `com.intellij.database.dataSource.DataSourceStorageCore$Listener` class renamed to `com.intellij.database.dataSource.DataSourceStorage$Listener` : `Core` class removed from hierarchy. +`com.intellij.database.datagrid.CoreGrid(ModelIndex, ModelIndex)` method parameter type changed from `ModelIndex` to `int` +: `ModelIndex` class is used to reference data in table model. Row indexes in table model start with 0 even when table is scrolled to page N > 1. Parameter type was changed to int to indicate that it is an absolute index in db table. + ### Maven Plugin 2023.2 `org.jetbrains.idea.maven.server.MavenEmbedderWrapper.customizeForResolve(MavenConsole, MavenProgressIndicator)` method removed