-
Notifications
You must be signed in to change notification settings - Fork 77
Migration guide #1631
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Migration guide #1631
Conversation
| one for the new stdlib `kotlin.time.Instant` and one for the old deprecated `kotlinx.datetime.Instant`. | ||
| The behavior of old operations remains unchanged: they work with `kotlinx.datetime.Instant` and raise `ERROR` in 1.0. | ||
| In version 1.1, they will be returned and will operate on the new stdlib `kotlin.time.Instant`. | ||
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
important to mention ParserOptions.parseExperimentalInstant
|
|
||
| | 0.15 | 1.0 | Reason | | ||
| |----------------------------------------------------------------|------------------------------------------------------------------------------|----------------------------------------| | ||
| | `DataColumn.createFrameColumn(name, df, startIndices)` | `df.chunked(name, startIndices)` | Replaced with an other function. | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
*another
| | `df.select { colSet.single { predicate } }` | `df.select { colSet.filter { predicate }.single() }` | | ||
|
|
||
|
|
||
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we also want to mention new functions/arguments? Like move {}.toStart(insideGroup=true)?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe this should be in "New Features" section.
Closes #1296.