Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ package org.jetbrains.kotlinx.dataframe.util
* After each release, all messages should be reviewed and updated.
* Level.WARNING -> Level.ERROR
* Level.ERROR -> Remove
*
* Please add info about all deprecations / removals to the Migration Guide
* (./docs/StardustDocs/topics/MigrationTo_1_0.md)
* in the same PR!
*/

// region WARNING in 0.15, ERROR in 1.0
Expand Down
3 changes: 2 additions & 1 deletion docs/StardustDocs/topics/MigrationTo_1_0.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,8 @@ The next functions and classes raise `ERROR` in 1.0 and will be removed in 1.1.
| `df.filterBy(column)` | `df.filter { column }` | Replaced with another function. |
| `FormattingDSL` | `FormattingDsl` | Renamed to the correct CamelCase. |
| `RGBColor` | `RgbColor` | Renamed to the correct CamelCase. |
| `df.insert(column).after(columnPath)` | `df.insert(column).after { columnPath }` | Replaced with another function. |
| `df.insert(column).after(columnPath)` | `df.insert(column).after { columnPath }` | Replaced with another overload. |
| `df.insert(column).under(columnPath)` | `df.insert(column).under { columnPath }` | Replaced with another overload. |
| `CompareResult.Equals` / `CompareResult.isEqual()` | `CompareResult.Matches` / `CompareResult.matches()` | Renamed to better reflect its purpose. |
| `CompareResult.isSuperOrEqual()` | `CompareResult.isSuperOrMatches()` | Renamed to better reflect its purpose. |

Expand Down
Loading