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/v2.1.2.rst
+7
Original file line number
Diff line number
Diff line change
@@ -22,8 +22,15 @@ Fixed regressions
22
22
23
23
Bug fixes
24
24
~~~~~~~~~
25
+
- Fixed bug in :meth:`Categorical.equals` if other has arrow backed string dtype (:issue:`55364`)
26
+
- Fixed bug in :meth:`DataFrame.__setitem__` not inferring string dtype for zero-dimensional array with ``infer_string=True`` (:issue:`55366`)
27
+
- Fixed bug in :meth:`DataFrame.idxmin` and :meth:`DataFrame.idxmax` raising for arrow dtypes (:issue:`55368`)
28
+
- Fixed bug in :meth:`DataFrame.interpolate` raising incorrect error message (:issue:`55347`)
25
29
- Fixed bug in :meth:`DataFrame.resample` not respecting ``closed`` and ``label`` arguments for :class:`~pandas.tseries.offsets.BusinessDay` (:issue:`55282`)
26
30
- Fixed bug in :meth:`DataFrame.resample` where bin edges were not correct for :class:`~pandas.tseries.offsets.BusinessDay` (:issue:`55281`)
31
+
- Fixed bug in :meth:`Index.insert` raising when inserting ``None`` into :class:`Index` with ``dtype="string[pyarrow_numpy]"`` (:issue:`55365`)
32
+
- Fixed bug in :meth:`Series.rank` for ``string[pyarrow_numpy]`` dtype (:issue:`55362`)
33
+
- Silence ``Period[B]`` warnings introduced by :issue:`53446` during normal plotting activity (:issue:`55138`)
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v2.2.0.rst
+33-3
Original file line number
Diff line number
Diff line change
@@ -76,6 +76,7 @@ Other enhancements
76
76
77
77
- :func:`read_csv` now supports ``on_bad_lines`` parameter with ``engine="pyarrow"``. (:issue:`54480`)
78
78
- :meth:`ExtensionArray._explode` interface method added to allow extension type implementations of the ``explode`` method (:issue:`54833`)
79
+
- :meth:`ExtensionArray.duplicated` added to allow extension type implementations of the ``duplicated`` method (:issue:`55255`)
79
80
- DataFrame.apply now allows the usage of numba (via ``engine="numba"``) to JIT compile the passed function, allowing for potential speedups (:issue:`54666`)
80
81
- Implement masked algorithms for :meth:`Series.value_counts` (:issue:`54984`)
- Performance improvement in :meth:`DataFrame.groupby` when aggregating pyarrow timestamp and duration dtypes (:issue:`55031`)
242
269
- Performance improvement in :meth:`DataFrame.sort_index` and :meth:`Series.sort_index` when indexed by a :class:`MultiIndex` (:issue:`54835`)
243
270
- Performance improvement in :meth:`Index.difference` (:issue:`55108`)
271
+
- Performance improvement in :meth:`Series.duplicated` for pyarrow dtypes (:issue:`55255`)
244
272
- Performance improvement when indexing with more than 4 keys (:issue:`54550`)
245
273
- Performance improvement when localizing time to UTC (:issue:`55241`)
246
274
@@ -252,6 +280,7 @@ Bug fixes
252
280
- Bug in :class:`AbstractHolidayCalendar` where timezone data was not propagated when computing holiday observances (:issue:`54580`)
253
281
- Bug in :class:`pandas.core.window.Rolling` where duplicate datetimelike indexes are treated as consecutive rather than equal with ``closed='left'`` and ``closed='neither'`` (:issue:`20712`)
254
282
- Bug in :meth:`DataFrame.apply` where passing ``raw=True`` ignored ``args`` passed to the applied function (:issue:`55009`)
283
+
- Bug in :meth:`pandas.DataFrame.melt` where it would not preserve the datetime (:issue:`55254`)
255
284
- Bug in :meth:`pandas.read_excel` with a ODS file without cached formatted cell for float values (:issue:`55219`)
256
285
257
286
Categorical
@@ -339,6 +368,7 @@ Reshaping
339
368
^^^^^^^^^
340
369
- Bug in :func:`concat` ignoring ``sort`` parameter when passed :class:`DatetimeIndex` indexes (:issue:`54769`)
341
370
- Bug in :func:`merge` returning columns in incorrect order when left and/or right is empty (:issue:`51929`)
0 commit comments