You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: NEWS.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -143,6 +143,8 @@ rowwiseDT(
143
143
144
144
9. `key<-`, marked as deprecated since 2012 and unusable since v1.15.0, has been fully removed.
145
145
146
+
10. Deprecation of `logicalAsInt` argument to `fwrite()` has been upgraded from a warning (since v1.15.0) to an error. It will be removed in the next release.
147
+
146
148
# data.table [v1.16.2](https://github.com/Rdatatable/data.table/milestone/35) (9 October 2024)
if (is.na(dateTimeAs)) stopf("dateTimeAs must be 'ISO','squash','epoch' or 'write.csv'")
27
-
if (!missing(logical01) &&!missing(logicalAsInt))
28
-
stopf("logicalAsInt has been renamed logical01. Use logical01 only, not both.")
29
-
if (!missing(logicalAsInt)) {
30
-
warningf("logicalAsInt has been renamed logical01 for consistency with fread. It works fine for now but please change to logical01 at your convenience so we can remove logicalAsInt in future.")
31
-
logical01=logicalAsInt
32
-
logicalAsInt=NULL
27
+
if (!is.null(logicalAsInt)) {
28
+
stopf("logicalAsInt has been renamed logical01 for consistency with fread.")
0 commit comments