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: doc/source/whatsnew/v0.24.2.rst
+5-2
Original file line number
Diff line number
Diff line change
@@ -2,8 +2,8 @@
2
2
3
3
.. _whatsnew_0242:
4
4
5
-
Whats New in 0.24.2 (February XX, 2019)
6
-
---------------------------------------
5
+
Whats New in 0.24.2 (March 12, 2019)
6
+
------------------------------------
7
7
8
8
.. warning::
9
9
@@ -33,6 +33,8 @@ Fixed Regressions
33
33
- Fixed regression in :class:`Categorical`, where constructing it from a categorical ``Series`` and an explicit ``categories=`` that differed from that in the ``Series`` created an invalid object which could trigger segfaults. (:issue:`25318`)
34
34
- Fixed regression in :func:`to_timedelta` losing precision when converting floating data to ``Timedelta`` data (:issue:`25077`).
35
35
- Fixed pip installing from source into an environment without NumPy (:issue:`25193`)
36
+
- Fixed regression in :meth:`DataFrame.replace` where large strings of numbers would be coerced into ``int64``, causing an ``OverflowError`` (:issue:`25616`)
37
+
- Fixed regression in :func:`factorize` when passing a custom ``na_sentinel`` value with ``sort=True`` (:issue:`25409`).
36
38
- Fixed regression in :meth:`DataFrame.to_csv` writing duplicate line endings with gzip compress (:issue:`25311`)
37
39
38
40
.. _whatsnew_0242.bug_fixes:
@@ -89,6 +91,7 @@ A total of 25 people contributed patches to this release. People with a "+" by t
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v0.25.0.rst
+4-2
Original file line number
Diff line number
Diff line change
@@ -87,14 +87,15 @@ Other API Changes
87
87
- :class:`DatetimeTZDtype` will now standardize pytz timezones to a common timezone instance (:issue:`24713`)
88
88
- ``Timestamp`` and ``Timedelta`` scalars now implement the :meth:`to_numpy` method as aliases to :meth:`Timestamp.to_datetime64` and :meth:`Timedelta.to_timedelta64`, respectively. (:issue:`24653`)
89
89
- :meth:`Timestamp.strptime` will now rise a ``NotImplementedError`` (:issue:`25016`)
90
-
-
90
+
- Bug in :meth:`DatetimeIndex.snap` which didn't preserving the ``name`` of the input :class:`Index` (:issue:`25575`)
91
91
92
92
.. _whatsnew_0250.deprecations:
93
93
94
94
Deprecations
95
95
~~~~~~~~~~~~
96
96
97
97
- Deprecated the `M (months)` and `Y (year)` `units` parameter of :func: `pandas.to_timedelta`, :func: `pandas.Timedelta` and :func: `pandas.TimedeltaIndex` (:issue:`16344`)
98
+
- The functions :func:`pandas.to_datetime` and :func:`pandas.to_timedelta` have deprecated the ``box`` keyword. Instead, use :meth:`to_numpy` or :meth:`Timestamp.to_datetime64`/:meth:`Timedelta.to_timedelta64`. (:issue:`24416`)
98
99
99
100
.. _whatsnew_0250.prior_deprecations:
100
101
@@ -215,10 +216,10 @@ I/O
215
216
- Bug in :func:`read_json` for ``orient='table'`` when it tries to infer dtypes by default, which is not applicable as dtypes are already defined in the JSON schema (:issue:`21345`)
216
217
- Bug in :func:`read_json` for ``orient='table'`` and float index, as it infers index dtype by default, which is not applicable because index dtype is already defined in the JSON schema (:issue:`25433`)
217
218
- Bug in :func:`read_json` for ``orient='table'`` and string of float column names, as it makes a column name type conversion to Timestamp, which is not applicable because column names are already defined in the JSON schema (:issue:`25435`)
219
+
- Bug in :func:`json_normalize` for ``errors='ignore'`` where missing values in the input data, were filled in resulting ``DataFrame`` with the string "nan" instead of ``numpy.nan`` (:issue:`25468`)
218
220
- :meth:`DataFrame.to_html` now raises ``TypeError`` when using an invalid type for the ``classes`` parameter instead of ``AsseertionError`` (:issue:`25608`)
219
221
- Bug in :meth:`DataFrame.to_string` and :meth:`DataFrame.to_latex` that would lead to incorrect output when the ``header`` keyword is used (:issue:`16718`)
220
222
-
221
-
-
222
223
223
224
224
225
Plotting
@@ -243,6 +244,7 @@ Reshaping
243
244
- Bug in :func:`pandas.merge` adds a string of ``None`` if ``None`` is assigned in suffixes instead of remain the column name as-is (:issue:`24782`).
244
245
- Bug in :func:`merge` when merging by index name would sometimes result in an incorrectly numbered index (:issue:`24212`)
245
246
- :func:`to_records` now accepts dtypes to its `column_dtypes` parameter (:issue:`24895`)
247
+
- Bug in :func:`concat` where order of ``OrderedDict`` (and ``dict`` in Python 3.6+) is not respected, when passed in as ``objs`` argument (:issue:`21510`)
0 commit comments