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
- Fixed regression in :class:`DataFrame` setting values with a slice (e.g. ``df[-4:] = 1``) indexing by label instead of position (:issue:`31469`)
19
+
- Fixed regression when indexing a ``Series`` or ``DataFrame`` indexed by ``DatetimeIndex`` with a slice containg a :class:`datetime.date` (:issue:`31501`)
20
+
- Fixed regression in :class:`Series` multiplication when multiplying a numeric :class:`Series` with >10000 elements with a timedelta-like scalar (:issue:`31457`)
21
+
- Fixed regression in :meth:`GroupBy.apply` if called with a function which returned a non-pandas non-scalar object (e.g. a list or numpy array) (:issue:`31441`)
22
+
- Fixed regression in :meth:`to_datetime` when parsing non-nanosecond resolution datetimes (:issue:`31491`)
23
+
- Fixed regression in :meth:`~DataFrame.to_csv` where specifying an ``na_rep`` might truncate the values written (:issue:`31447`)
24
+
- Fixed regression where setting :attr:`pd.options.display.max_colwidth` was not accepting negative integer. In addition, this behavior has been deprecated in favor of using ``None`` (:issue:`31532`)
25
+
- Fixed regression in objTOJSON.c fix return-type warning (:issue:`31463`)
26
+
- Fixed regression in :meth:`qcut` when passed a nullable integer. (:issue:`31389`)
27
+
- Fixed regression in assigning to a :class:`Series` using a nullable integer dtype (:issue:`31446`)
- Bug in :meth:`GroupBy.apply` was raising ``TypeError`` if called with function which returned a non-pandas non-scalar object (e.g. a list) (:issue:`31441`)
27
-
28
-
Categorical
29
-
^^^^^^^^^^^
30
44
31
-
-
32
-
-
45
+
**Datetimelike**
33
46
34
-
Datetimelike
35
-
^^^^^^^^^^^^
36
-
- Fixed regression in :meth:`to_datetime` when parsing non-nanosecond resolution datetimes (:issue:`31491`)
37
47
- Fixed bug in :meth:`to_datetime` raising when ``cache=True`` and out-of-bound values are present (:issue:`31491`)
38
48
39
-
Timedelta
40
-
^^^^^^^^^
41
-
42
-
-
43
-
-
49
+
**Numeric**
44
50
45
-
Timezones
46
-
^^^^^^^^^
47
-
48
-
-
49
-
-
50
-
51
-
52
-
Numeric
53
-
^^^^^^^
54
51
- Bug in dtypes being lost in ``DataFrame.__invert__`` (``~`` operator) with mixed dtypes (:issue:`31183`)
55
-
- Bug in :class:`Series` multiplication when multiplying a numeric :class:`Series` with >10000 elements with a timedelta-like scalar (:issue:`31467`)
56
-
-
57
-
58
-
Conversion
59
-
^^^^^^^^^^
60
-
61
-
-
62
-
-
63
-
64
-
Strings
65
-
^^^^^^^
66
-
67
-
-
68
-
-
69
-
70
-
71
-
Interval
72
-
^^^^^^^^
73
-
74
-
-
75
-
-
52
+
and for extension-array backed ``Series`` and ``DataFrame`` (:issue:`23087`)
76
53
77
-
Indexing
78
-
^^^^^^^^
79
-
80
-
-
81
-
-
82
-
- Bug where assigning to a :class:`Series` using a IntegerArray / BooleanArray as a mask would raise ``TypeError`` (:issue:`31446`)
83
-
84
-
Missing
85
-
^^^^^^^
86
-
87
-
-
88
-
-
89
-
90
-
MultiIndex
91
-
^^^^^^^^^^
92
-
93
-
-
94
-
-
95
-
96
-
I/O
97
-
^^^
98
-
99
-
- Fixed regression in :meth:`~DataFrame.to_csv` where specifying an ``na_rep`` might truncate the values written (:issue:`31447`)
100
-
-
101
-
-
102
-
103
-
Plotting
104
-
^^^^^^^^
54
+
**Plotting**
105
55
106
56
- Plotting tz-aware timeseries no longer gives UserWarning (:issue:`31205`)
107
-
-
108
-
109
-
Groupby/resample/rolling
110
-
^^^^^^^^^^^^^^^^^^^^^^^^
111
-
112
-
-
113
-
-
114
-
115
-
116
-
Reshaping
117
-
^^^^^^^^^
118
-
119
-
-
120
-
-
121
-
122
-
Sparse
123
-
^^^^^^
124
-
125
-
-
126
-
-
127
-
128
-
ExtensionArray
129
-
^^^^^^^^^^^^^^
130
-
131
-
- Bug in dtype being lost in ``__invert__`` (``~`` operator) for extension-array backed ``Series`` and ``DataFrame`` (:issue:`23087`)
132
-
- Bug where :meth:`qcut` would raise when passed a nullable integer. (:issue:`31389`)
133
-
-
134
-
135
57
136
-
Other
137
-
^^^^^
138
-
- Regression fixed in objTOJSON.c fix return-type warning (:issue:`31463`)
139
-
- Fixed a regression where setting :attr:`pd.options.display.max_colwidth` was not accepting negative integer. In addition, this behavior has been deprecated in favor of using ``None`` (:issue:`31532`)
0 commit comments