These are the changes in pandas 1.1.0. See Release Notes for a full changelog including other versions of pandas.
Bug in Timestamp where constructing Timestamp from ambiguous epoch time and calling constructor again changed Timestamp.value() property (GH24329)
Timestamp
Timestamp.value()
DatetimeArray.searchsorted(), TimedeltaArray.searchsorted(), PeriodArray.searchsorted() not recognizing non-pandas scalars and incorrectly raising ValueError instead of TypeError (GH30950)
DatetimeArray.searchsorted()
TimedeltaArray.searchsorted()
PeriodArray.searchsorted()
ValueError
TypeError
Bug in Series construction from NumPy array with big-endian datetime64 dtype (GH29684)
Series
datetime64
Bug in slicing on a DatetimeIndex with a partial-timestamp dropping high-resolution indices near the end of a year, quarter, or month (GH31064)
DatetimeIndex
Bug in DataFrame.pivot_table() when only MultiIndexed columns is set (GH17038)
DataFrame.pivot_table()
Fix incorrect error message in DataFrame.pivot() when columns is set to None. (GH30924)
DataFrame.pivot()
columns
None
Bug in crosstab() when inputs are two Series and have tuple names, the output will keep dummy MultiIndex as columns. (GH18321)
crosstab()